From 9449711842d472cab91811e33e35b8f58256106a Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Fri, 15 Mar 2024 18:37:39 +0100 Subject: [PATCH 01/42] =?UTF-8?q?[debug]=20[cron]=C2=A0Added=20Site=20URL,?= =?UTF-8?q?=20Added=20Cron=20Table,=20Separated=20tables=20in=20files,=20F?= =?UTF-8?q?ixed=20Log=20Download?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-fs-logger.php | 46 +- includes/debug/class-fs-debug-bar-panel.php | 4 - templates/debug.php | 858 +------------------- templates/debug/debug-action-buttons.php | 120 +++ templates/debug/debug-addons.php | 35 + templates/debug/debug-defined-variables.php | 52 ++ templates/debug/debug-licenses.php | 47 ++ templates/debug/debug-logger-switch.php | 31 + templates/debug/debug-logger.php | 177 ++++ templates/debug/debug-module-installs.php | 77 ++ templates/debug/debug-modules.php | 108 +++ templates/debug/debug-scheduled-crons.php | 89 ++ templates/debug/debug-sdk-versions.php | 44 + templates/debug/debug-users.php | 47 ++ templates/debug/logger.php | 66 -- templates/debug/scheduled-crons.php | 136 ---- templates/generic-table.php | 217 +++++ 17 files changed, 1131 insertions(+), 1023 deletions(-) create mode 100644 templates/debug/debug-action-buttons.php create mode 100644 templates/debug/debug-addons.php create mode 100644 templates/debug/debug-defined-variables.php create mode 100644 templates/debug/debug-licenses.php create mode 100644 templates/debug/debug-logger-switch.php create mode 100644 templates/debug/debug-logger.php create mode 100644 templates/debug/debug-module-installs.php create mode 100644 templates/debug/debug-modules.php create mode 100644 templates/debug/debug-scheduled-crons.php create mode 100644 templates/debug/debug-sdk-versions.php create mode 100644 templates/debug/debug-users.php delete mode 100644 templates/debug/logger.php delete mode 100644 templates/debug/scheduled-crons.php create mode 100644 templates/generic-table.php diff --git a/includes/class-fs-logger.php b/includes/class-fs-logger.php index 6dde8aa30..e4226a18f 100644 --- a/includes/class-fs-logger.php +++ b/includes/class-fs-logger.php @@ -649,8 +649,6 @@ public static function download_db_logs( } $filepath = rtrim( $upload_dir['path'], '/' ) . "/{$filename}"; - $query .= " INTO OUTFILE '{$filepath}' FIELDS TERMINATED BY '\t' ESCAPED BY '\\\\' OPTIONALLY ENCLOSED BY '\"' LINES TERMINATED BY '\\n'"; - $columns = ''; for ( $i = 0, $len = count( self::$_log_columns ); $i < $len; $i ++ ) { if ( $i > 0 ) { @@ -662,22 +660,29 @@ public static function download_db_logs( $query = "SELECT {$columns} UNION ALL " . $query; - $result = $wpdb->query( $query ); + $result = $wpdb->get_results( $query ); if ( false === $result ) { return false; } + $write_file = self::write_csv_to_filesystem( $filepath, $result ); + + if ( false === $write_file ) { + return false; + } + return rtrim( $upload_dir['url'], '/' ) . '/' . $filename; } /** * @author Vova Feldman (@svovaf) - * @since 1.2.1.6 * * @param string $filename * * @return string + * @since 1.2.1.6 + * */ public static function get_logs_download_url( $filename = '' ) { $upload_dir = wp_upload_dir(); @@ -689,4 +694,37 @@ public static function get_logs_download_url( $filename = '' ) { } #endregion + + /** + * @param $file_path + * @param $query_results + * + * @return bool + */ + public static function write_csv_to_filesystem( $file_path, $query_results ) { + require_once( ABSPATH . 'wp-admin/includes/file.php' ); + WP_Filesystem(); + global $wp_filesystem; + + if ( ! empty( $query_results ) ) { + $headers = array_keys( (array) $query_results[0] ); + } else { + return false; + } + + $content = implode( "\t", $headers ) . "\n"; + + foreach ( $query_results as $row ) { + $row_data = array_map( function ( $value ) { + return str_replace( "\n", ' ', $value ); + }, (array) $row ); + $content .= implode( "\t", $row_data ) . "\n"; + } + + if ( ! $wp_filesystem->put_contents( $file_path, $content, FS_CHMOD_FILE ) ) { + return false; + } + + return true; + } } diff --git a/includes/debug/class-fs-debug-bar-panel.php b/includes/debug/class-fs-debug-bar-panel.php index c3255612a..6bc0636c7 100644 --- a/includes/debug/class-fs-debug-bar-panel.php +++ b/includes/debug/class-fs-debug-bar-panel.php @@ -56,11 +56,7 @@ public function render() {

- -
-
-
-

newest->version ?>

-
- - - - -
-
-
- -
-

- - - - - - - - - - - get_option( 'ms_migration_complete', false, true ) ) : ?> - - - - - - - -
- -
- - - -
-
- -
- - -
-
- -
- - - -
-
- -
- - - -
-
- -
- - -
-
- -
- - - -
-
- - - - - - Resolve Clone(s) -
- - 'WP_FS__REMOTE_ADDR', - 'val' => WP_FS__REMOTE_ADDR, - ), - array( - 'key' => 'WP_FS__ADDRESS_PRODUCTION', - 'val' => WP_FS__ADDRESS_PRODUCTION, - ), - array( - 'key' => 'FS_API__ADDRESS', - 'val' => FS_API__ADDRESS, - ), - array( - 'key' => 'FS_API__SANDBOX_ADDRESS', - 'val' => FS_API__SANDBOX_ADDRESS, - ), - array( - 'key' => 'WP_FS__DIR', - 'val' => WP_FS__DIR, - ), - array( - 'key' => 'wp_using_ext_object_cache()', - 'val' => wp_using_ext_object_cache() ? 'true' : 'false', - ), - ) + /** + * @package Freemius + * @copyright Copyright (c) 2015, Freemius, Inc. + * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3 + * @since 1.1.1 + */ + + if ( ! defined( 'ABSPATH' ) ) { + exit; + } + + global $fs_active_plugins; + + require_once 'generic-table.php'; + + $off_text = fs_text_x_inline( 'Off', 'as turned off' ); + $on_text = fs_text_x_inline( 'On', 'as turned on' ); + $page_title = fs_text_inline( 'Freemius Debug' ); + $sdk_text = fs_text_inline( 'SDK' ); + $version_text = 'v.' . $fs_active_plugins->newest->version; + + $has_any_active_clone = false; + + $common_params = array_merge( + $VARS, + array( + 'module_types' => array( + WP_FS__MODULE_TYPE_PLUGIN, + WP_FS__MODULE_TYPE_THEME, + ), + 'is_multisite' => is_multisite(), + 'fs_options' => FS_Options::instance( WP_FS__ACCOUNTS_OPTION_NAME, true ), + ) ); ?> -
- - - - - - - - - - > - - - - - - -
-

- - - - - - - - - - - plugins as $sdk_path => $data ) : ?> - version ) ?> - > - - - - - - - -
version ?>plugin_path ?>
- +

- - - get_option( $module_type . 's' ), FS_Plugin::get_class_name() ) ?> - 0 ) : ?> -

- - - - - - - - - - - - - - - - - - - - $data ) : ?> - file ); - } else { - $current_theme = wp_get_theme(); - $is_active = ( $current_theme->stylesheet === $data->file ); - - if ( ! $is_active && is_child_theme() ) { - $parent_theme = $current_theme->parent(); - - $is_active = ( ( $parent_theme instanceof WP_Theme ) && $parent_theme->stylesheet === $data->file ); - } - } - ?> - id ); - - $active_modules_by_id[ $data->id ] = true; - } - ?> - has_api_connectivity(); - - if ( true === $has_api_connectivity && $fs->is_on() ) { - echo ' style="background: #E6FFE6; font-weight: bold"'; - } else { - echo ' style="background: #ffd0d0; font-weight: bold"'; - } - } ?>> - - - - - > - is_on() ) { - echo ' style="color: red; text-transform: uppercase;"'; - } ?>>is_on() ? - $on_text : - $off_text - ); - } ?> - - - - get_network_install_blog_id(); - $network_user = $fs->get_network_user(); - } - ?> - - - - - - - -
id ?>version ?>title ?>file ?>public_key ?>email; - } ?> - - has_trial_plan() ) : ?> -
- - - - - -
- - is_registered() ) : ?> - - - is_network_upgrade_mode() ) : ?> -
- - - - - -
- - -
- - - - - 0 ) : ?> -

/

- - - - - - - - - - - - - - - - - - - - $sites ) : ?> - - blog_id : - null; - - if ( is_null( $site_url ) || $is_multisite ) { - $site_url = Freemius::get_unfiltered_site_url( - $blog_id, - true, - true - ); - } + fs_require_template( 'debug/debug-logger-switch.php' ); - $is_active_clone = ( $site->is_clone( $site_url ) && isset( $active_modules_by_id[ $site->plugin_id ] ) ); + fs_require_template( 'debug/debug-action-buttons.php' ); - if ( $is_active_clone ) { - $has_any_active_clone = true; - } - ?> - - - - - - - - - - - - - - - - - -
- id ?> - - - - url ) ?>user_id ?>license_id) ? $site->license_id : '' ?>plan_id ) ) { - if ( false === $all_plans ) { - $option_name = 'plans'; - if ( WP_FS__MODULE_TYPE_PLUGIN !== $module_type ) { - $option_name = $module_type . '_' . $option_name; - } + fs_require_template( 'debug/debug-defined-variables.php' ); - $all_plans = fs_get_entities( $fs_options->get_option( $option_name, array() ), FS_Plugin_Plan::get_class_name() ); - } + fs_require_template( 'debug/debug-sdk-versions.php' ); - foreach ( $all_plans[ $slug ] as $plan ) { - $plan_id = Freemius::_decrypt( $plan->id ); + fs_require_template( 'debug/debug-modules.php', $common_params ); - if ( $site->plan_id == $plan_id ) { - $plan_name = Freemius::_decrypt( $plan->name ); - break; - } - } - } + fs_require_template( 'debug/debug-module-installs.php', $common_params ); - echo $plan_name; - ?>public_key ?>is_whitelabeled ? - FS_Plugin_License::mask_secret_key_for_html( $site->secret_key ) : - esc_html( $site->secret_key ); - ?> -
- - - - - - - - - -
-
- - - - $plugin_addons ) : ?> -

- - - - - - - - - - - - - - - - - - - - - - - -
id ?>title ?>slug ?>version ?>public_key ?>secret_key ) ?>
- -id ] = true; - } - } + fs_require_template( 'debug/debug-licenses.php', $common_params ); - foreach ( $module_types as $module_type ) { - /** - * @var FS_Plugin_License[] $licenses - */ - $licenses = $VARS[ $module_type . '_licenses' ]; + fs_require_template( 'debug/debug-scheduled-crons.php', $common_params ); - foreach ( $licenses as $license ) { - if ( $license->is_whitelabeled ) { - $users_with_developer_license_by_id[ $license->user_id ] = true; - } - } - } + fs_require_template( 'debug/debug-logger.php', $common_params ); ?> - -

- - - - - - - - - - - - - - $user ) : ?> - - - - - - - - - - - - -
id ?>get_name() ?> - - email ?> - - is_verified ) ?>public_key ?>secret_key) : esc_html( $user->secret_key ) ?> - -
- - - - -
- -
- - - - 0 ) : ?> -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
id ?>plugin_id ?>user_id ?>plan_id ?>is_unlimited() ? 'Unlimited' : ( $license->is_single_site() ? 'Single Site' : $license->quota ) ?>activated ?>is_block_features ? 'Blocking' : 'Flexible' ?>is_whitelabeled ? 'Whitelabeled' : 'Normal' ?>is_whitelabeled || ! isset( $user_ids_map[ $license->user_id ] ) ) ? - $license->get_html_escaped_masked_secret_key() : - esc_html( $license->secret_key ); - ?>expiration ?>
- - - - -

- -
- - - - - - - -
- - -
- - -
- -
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - -
#
{$log.log_order}.{$log.type}{$log.logger}{$log.function} - - {$log.message_short} - -
{$log.message}
-
{$log.file}:{$log.line}{$log.created}
-
- - diff --git a/templates/debug/debug-action-buttons.php b/templates/debug/debug-action-buttons.php new file mode 100644 index 000000000..1a8113ce2 --- /dev/null +++ b/templates/debug/debug-action-buttons.php @@ -0,0 +1,120 @@ +

+ + + + + + + + + + + get_option( 'ms_migration_complete', + false, + true ) ) : ?> + + + + + + + +
+ +
+ + + +
+
+ +
+ + +
+
+ +
+ + + +
+
+ +
+ + + +
+
+ +
+ + +
+
+ +
+ + + +
+
+ + + + + + Resolve Clone(s) +
+ diff --git a/templates/debug/debug-addons.php b/templates/debug/debug-addons.php new file mode 100644 index 000000000..bd29c7efd --- /dev/null +++ b/templates/debug/debug-addons.php @@ -0,0 +1,35 @@ + $plugin_addons ) { + $headers = [ + [ 'key' => 'id', 'val' => fs_esc_html_inline( 'ID', 'id' ) ], + [ 'key' => 'title', 'val' => fs_esc_html_inline( 'Title' ) ], + [ 'key' => 'slug', 'val' => fs_esc_html_inline( 'Slug' ) ], + [ 'key' => 'version', 'val' => fs_esc_html_x_inline( 'Version', 'product version' ) ], + [ 'key' => 'public_key', 'val' => fs_esc_html_inline( 'Public Key' ) ], + [ 'key' => 'secret_key', 'val' => fs_esc_html_inline( 'Secret Key' ) ], + ]; + + $data = []; + foreach ( $plugin_addons as $addon ) { + $data[] = [ + 'id' => $addon->id, + 'title' => esc_html( $addon->title ), + 'slug' => esc_html( $addon->slug ), + 'version' => esc_html( $addon->version ), + 'public_key' => esc_html( $addon->public_key ), + 'secret_key' => esc_html( $addon->secret_key ), + ]; + } + + $tableData = [ + 'attributes' => [ 'id' => 'fs_addons_' . esc_attr( $plugin_id ), 'class' => 'widefat' ], + 'headers' => $headers, + 'data' => $data, + ]; + + $title = '

' . esc_html( sprintf( fs_text_inline( 'Add Ons of module %s', 'addons-of-x' ), $plugin_id ) ) . '

'; + + fs_debug_generate_table( $tableData, array('title' => $title) ); + } diff --git a/templates/debug/debug-defined-variables.php b/templates/debug/debug-defined-variables.php new file mode 100644 index 000000000..b3c3e2cef --- /dev/null +++ b/templates/debug/debug-defined-variables.php @@ -0,0 +1,52 @@ + array( + array( + 'key' => 'key', + 'val' => fs_esc_html_inline( 'Key', 'key' ), + ), + array( + 'key' => 'val', + 'val' => fs_esc_html_inline( 'Value', 'value' ), + ), + ), + 'data' => array( + array( + 'key' => 'WP_FS__REMOTE_ADDR', + 'val' => WP_FS__REMOTE_ADDR, + ), + array( + 'key' => 'WP_FS__ADDRESS_PRODUCTION', + 'val' => WP_FS__ADDRESS_PRODUCTION, + ), + array( + 'key' => 'FS_API__ADDRESS', + 'val' => FS_API__ADDRESS, + ), + array( + 'key' => 'FS_API__SANDBOX_ADDRESS', + 'val' => FS_API__SANDBOX_ADDRESS, + ), + array( + 'key' => 'WP_FS__DIR', + 'val' => WP_FS__DIR, + ), + array( + 'key' => 'wp_using_ext_object_cache()', + 'val' => wp_using_ext_object_cache() ? 'true' : 'false', + ), + array( + 'key' => 'Freemius::get_unfiltered_site_url()', + 'val' => Freemius::get_unfiltered_site_url(), + ), + ), + ), array('title' => $title) ); diff --git a/templates/debug/debug-licenses.php b/templates/debug/debug-licenses.php new file mode 100644 index 000000000..f77668eca --- /dev/null +++ b/templates/debug/debug-licenses.php @@ -0,0 +1,47 @@ + 0 ) { + $data = [ + 'attributes' => [ + 'id' => 'fs_' . $module_type . '_licenses', + 'class' => 'widefat', + ], + 'headers' => [ + [ 'key' => 'id', 'val' => fs_esc_html_inline( 'ID', 'id' ) ], + [ 'key' => 'plugin_id', 'val' => fs_esc_html_inline( 'Plugin ID' ) ], + [ 'key' => 'user_id', 'val' => fs_esc_html_inline( 'User ID' ) ], + [ 'key' => 'plan_id', 'val' => fs_esc_html_inline( 'Plan ID' ) ], + [ 'key' => 'quota', 'val' => fs_esc_html_inline( 'Quota' ) ], + [ 'key' => 'activated', 'val' => fs_esc_html_inline( 'Activated' ) ], + [ 'key' => 'blocking', 'val' => fs_esc_html_inline( 'Blocking' ) ], + [ 'key' => 'type', 'val' => fs_esc_html_inline( 'Type' ) ], + [ 'key' => 'license_key', 'val' => fs_esc_html_inline( 'License Key' ) ], + [ 'key' => 'expiration', 'val' => fs_esc_html_x_inline( 'Expiration', 'as expiration date' ) ], + ], + 'data' => [], + ]; + + foreach ( $licenses as $license ) { + $data['data'][] = [ + 'id' => $license->id, + 'plugin_id' => $license->plugin_id, + 'user_id' => $license->user_id, + 'plan_id' => $license->plan_id, + 'quota' => $license->is_unlimited() ? 'Unlimited' : ( $license->is_single_site() ? 'Single Site' : $license->quota ), + 'activated' => $license->activated, + 'blocking' => $license->is_block_features ? 'Blocking' : 'Flexible', + 'type' => $license->is_whitelabeled ? 'Whitelabeled' : 'Normal', + 'license_key' => ( $license->is_whitelabeled || ! isset( $user_ids_map[ $license->user_id ] ) ) ? $license->get_html_escaped_masked_secret_key() : esc_html( $license->secret_key ), + 'expiration' => $license->expiration, + ]; + } + + echo '

' . esc_html( sprintf( fs_text_inline( '%s Licenses', 'module-licenses' ), + ( WP_FS__MODULE_TYPE_PLUGIN === $module_type ? fs_text_inline( 'Plugin', + 'plugin' ) : fs_text_inline( 'Theme', 'theme' ) ) ) ) . '

'; + + fs_debug_generate_table( $data ); + } + } \ No newline at end of file diff --git a/templates/debug/debug-logger-switch.php b/templates/debug/debug-logger-switch.php new file mode 100644 index 000000000..26f725fd8 --- /dev/null +++ b/templates/debug/debug-logger-switch.php @@ -0,0 +1,31 @@ +
+ + +
+
+
+ +
\ No newline at end of file diff --git a/templates/debug/debug-logger.php b/templates/debug/debug-logger.php new file mode 100644 index 000000000..85bde5fd1 --- /dev/null +++ b/templates/debug/debug-logger.php @@ -0,0 +1,177 @@ + + +

+ +
+ + + + + + + +
+ + +
+ + +
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
#
{$log.log_order}.{$log.type}{$log.logger}{$log.function} + + {$log.message_short} + +
{$log.message}
+
{$log.file}:{$log.line}{$log.created}
+
+ + \ No newline at end of file diff --git a/templates/debug/debug-module-installs.php b/templates/debug/debug-module-installs.php new file mode 100644 index 000000000..f37a76c1b --- /dev/null +++ b/templates/debug/debug-module-installs.php @@ -0,0 +1,77 @@ + 0 ) { + $data['attributes'] = [ + 'id' => 'fs_' . $module_type . '_installs', + 'class' => 'widefat', + ]; + + $data['headers'] = [ + [ 'key' => 'id', 'val' => 'ID' ], + $VARS['is_multisite'] ? [ 'key' => 'blog_id', 'val' => 'Blog ID' ] : null, + $VARS['is_multisite'] ? [ 'key' => 'address', 'val' => 'Address' ] : null, + [ 'key' => 'slug', 'val' => 'Slug' ], + [ 'key' => 'user_id', 'val' => 'User ID' ], + [ 'key' => 'license_id', 'val' => 'License ID' ], + [ 'key' => 'plan', 'val' => 'Plan' ], + [ 'key' => 'public_key', 'val' => 'Public Key' ], + [ 'key' => 'secret_key', 'val' => 'Secret Key' ], + [ 'key' => 'actions', 'val' => 'Actions' ], + ]; + + $data['headers'] = array_filter( $data['headers'] ); + + $data['data'] = []; + + foreach ( $sites_map as $slug => $sites ) { + foreach ( $sites as $site ) { + $row = [ + 'id' => $site->id, + 'slug' => $slug, + 'user_id' => $site->user_id, + 'license_id' => ! empty( $site->license_id ) ? $site->license_id : '', + 'plan' => fs_debug_get_plan_name( $site, + $slug, + $module_type, + $all_plans, + $VARS['fs_options'] ), + 'public_key' => $site->public_key, + 'secret_key' => fs_debug_get_secret_key( $site, $module_type, $slug ), + 'actions' => array( + array( + 'fs_action' => 'delete_install', + 'module_id' => $site->plugin_id, + 'blog_id' => $VARS['is_multisite'] ? $site->blog_id : null, + 'module_type' => $module_type, + 'slug' => $slug, + 'label' => fs_esc_html_x_inline( 'Delete', 'verb', 'delete' ), + 'classes' => array( 'button' ), + ), + ), + ]; + + if ( $VARS['is_multisite'] ) { + $row['blog_id'] = $site->blog_id; + $row['address'] = $site->url; // Assumi che questo sia l'indirizzo. Potresti voler applicare fs_strip_url_protocol() + } + + $data['data'][] = $row; + } + } + + $title = esc_html( sprintf( fs_text_inline( '%s Installs', 'module-installs' ), + ( WP_FS__MODULE_TYPE_PLUGIN === $module_type ? fs_text_inline( 'Plugin', + 'plugin' ) : fs_text_inline( 'Theme', 'theme' ) ) ) ); + $title .= ' / '; + $title .= fs_esc_html_x_inline( 'Sites', 'like websites', 'sites' ); + + echo fs_debug_generate_table( $data, array( 'title' => $title ) ); + } + } \ No newline at end of file diff --git a/templates/debug/debug-modules.php b/templates/debug/debug-modules.php new file mode 100644 index 000000000..71de2d6e8 --- /dev/null +++ b/templates/debug/debug-modules.php @@ -0,0 +1,108 @@ +get_option( $module_type . 's' ), + FS_Plugin::get_class_name() ); + + $current_theme = wp_get_theme(); + + if ( is_array( $modules ) && count( $modules ) > 0 ) { + $data = [ + 'attributes' => [ + 'id' => 'fs_' . $module_type, + 'class' => 'widefat', + ], + 'headers' => [ + [ 'key' => 'id', 'val' => 'ID' ], + [ 'key' => 'slug', 'val' => 'Slug' ], + [ 'key' => 'version', 'val' => 'Version' ], + [ 'key' => 'title', 'val' => 'Title' ], + [ 'key' => 'api', 'val' => 'API' ], + [ 'key' => 'freemius_state', 'val' => 'Freemius State' ], + [ 'key' => 'module_path', 'val' => 'Module Path' ], + [ 'key' => 'public_key', 'val' => 'Public Key' ], + $VARS['is_multisite'] ? [ 'key' => 'network_blog', 'val' => 'Network Blog' ] : null, + $VARS['is_multisite'] ? [ 'key' => 'network_user', 'val' => 'Network User' ] : null, + [ 'key' => 'actions', 'val' => 'Actions' ], + ], + 'data' => [], + ]; + + $data['headers'] = array_filter( $data['headers'] ); + + foreach ( $modules as $slug => $module_data ) { + // Determine if the module is active based on the module type and current theme. + $is_active = ( WP_FS__MODULE_TYPE_THEME !== $module_type && is_plugin_active( $module_data->file ) ) || + ( $current_theme->stylesheet === $module_data->file ) || + ( is_child_theme() && ( $current_theme->parent() instanceof WP_Theme ) && $current_theme->parent()->stylesheet === $module_data->file ); + + $freemius_status = fs_text_x_inline( 'Off', 'as turned off' ); + + $row_style = 'default'; + $api_connectivity_status = fs_text_x_inline( 'Unknown', + 'API connectivity state is unknown' ); // Default status + + if ( $is_active ) { + $fs = freemius( $module_data->id ); + $active_modules_by_id[ $module_data->id ] = true; // Track active modules + + $has_api_connectivity = $fs->has_api_connectivity(); + + if ( $has_api_connectivity === true ) { + if ( $fs->is_on() ) { + $row_style = 'success'; + $api_connectivity_status = fs_text_x_inline( 'Connected', 'as connection was successful' ); + $freemius_status = fs_text_x_inline( 'On', 'as turned on' ); + } + } else if ( $has_api_connectivity === false ) { + $row_style = 'error'; + $api_connectivity_status = fs_text_x_inline( 'Blocked', 'as connection blocked' ); + } + } + + // Create the row data, setting 'row_style' based on 'is_active' status + $row = [ + 'id' => esc_html( $module_data->id ), + 'slug' => esc_html( $slug ), + 'version' => esc_html( $module_data->version ), + 'title' => esc_html( $module_data->title ), + 'api' => esc_html( $api_connectivity_status ), + 'freemius_state' => $freemius_status, + 'module_path' => $module_data->file, + 'public_key' => $module_data->public_key, + 'actions' => array(), + 'row_style' => $row_style, + ]; + + if ( $is_active ) { + if ( $fs->has_trial_plan() ) { + $row['actions'][] = array( + 'fs_action' => 'simulate_trial', + 'module_id' => $fs->get_id(), + 'label' => fs_esc_html_inline( 'Simulate Trial Promotion' ), + 'classes' => array( 'button', 'button-primary', 'simulate-trial' ), + ); + } + + if ( $fs->is_registered() ) { + $row['actions'][] = array( + 'href' => $fs->get_account_url(), + 'label' => fs_esc_html_inline( 'Account', 'account' ), + 'classes' => array( 'button' ), + ); + } + + if ( fs_is_network_admin() && ! $fs->is_network_upgrade_mode() ) { + $row['actions'][] = array( + 'fs_action' => 'simulate_network_upgrade', + 'module_id' => $fs->get_id(), + 'label' => fs_esc_html_inline( 'Simulate Network Upgrade' ), + ); + } + } + $data['data'][] = $row; + } + + $title = esc_html( ( WP_FS__MODULE_TYPE_PLUGIN == $module_type ) ? fs_text_inline( 'Plugins', 'plugins' ) : fs_text_inline( 'Themes', 'themes' ) ); + echo fs_debug_generate_table( $data, array( 'title' => $title ) ); + } + } diff --git a/templates/debug/debug-scheduled-crons.php b/templates/debug/debug-scheduled-crons.php new file mode 100644 index 000000000..aecbf7263 --- /dev/null +++ b/templates/debug/debug-scheduled-crons.php @@ -0,0 +1,89 @@ +get_option( $module_type . 's' ), FS_Plugin::get_class_name() ); + if ( is_array( $modules ) && count( $modules ) > 0 ) { + foreach ( $modules as $slug => $data ) { + if ( WP_FS__MODULE_TYPE_THEME === $module_type ) { + $current_theme = wp_get_theme(); + $is_active = ( $current_theme->stylesheet === $data->file ); + } else { + $is_active = is_plugin_active( $data->file ); + } + + /** + * @author Vova Feldman + * + * @since 1.2.1 Don't load data from inactive modules. + */ + if ( $is_active ) { + $fs = freemius( $data->id ); + + $next_execution = $fs->next_sync_cron(); + $last_execution = $fs->last_sync_cron(); + + if ( false !== $next_execution ) { + $scheduled_crons[ $slug ][] = array( + 'name' => $fs->get_plugin_name(), + 'slug' => $slug, + 'module_type' => $fs->get_module_type(), + 'type' => 'sync_cron', + 'last' => $last_execution, + 'next' => $next_execution, + ); + } + + $next_install_execution = $fs->next_install_sync(); + $last_install_execution = $fs->last_install_sync(); + + if ( false !== $next_install_execution || + false !== $last_install_execution + ) { + $scheduled_crons[ $slug ][] = array( + 'name' => $fs->get_plugin_name(), + 'slug' => $slug, + 'module_type' => $fs->get_module_type(), + 'type' => 'install_sync', + 'last' => $last_install_execution, + 'next' => $next_install_execution, + ); + } + } + } + } + } + + $data = [ + 'attributes' => [ + 'id' => 'active-modules-table', + 'class' => 'wp-list-table widefat fixed striped', + ], + 'headers' => [ + [ 'key' => 'name', 'val' => 'Name' ], + [ 'key' => 'slug', 'val' => 'Slug' ], + [ 'key' => 'module_type', 'val' => 'Module Type' ], + [ 'key' => 'type', 'val' => 'Sync Type' ], + [ 'key' => 'last', 'val' => 'Last Execution' ], + [ 'key' => 'next', 'val' => 'Next Execution' ], + ], + 'data' => [], + ]; + + foreach ( $scheduled_crons as $slug => $crons ) { + foreach ( $crons as $cron ) { + $data['data'][] = [ + 'name' => $cron['name'], + 'slug' => $cron['slug'], + 'module_type' => $cron['module_type'], + 'type' => $cron['type'], + 'last' => fs_debug_format_time( $cron['last'] ), + 'next' => fs_debug_format_time( $cron['next'] ), + ]; + } + } + + echo fs_debug_generate_table( $data, array( 'title' => $title, 'hidden' => true ) ); \ No newline at end of file diff --git a/templates/debug/debug-sdk-versions.php b/templates/debug/debug-sdk-versions.php new file mode 100644 index 000000000..2d21ff2c1 --- /dev/null +++ b/templates/debug/debug-sdk-versions.php @@ -0,0 +1,44 @@ + array( + 'id' => 'fs_sdk', + ), + 'headers' => array( + array( + 'key' => 'version', + 'val' => fs_esc_html_x_inline( 'Version', 'product version' ), + ), + array( + 'key' => 'sdk_path', + 'val' => fs_esc_html_inline( 'SDK Path' ), + ), + array( + 'key' => 'module_path', + 'val' => fs_esc_html_inline( 'Module Path' ), + ), + array( + 'key' => 'is_active', + 'val' => fs_esc_html_inline( 'Is Active' ), + ), + ), + 'data' => array_map( function ( $item ) { + $is_active = ( WP_FS__SDK_VERSION == $item->version ); + + return array( + 'version' => $item->version, + 'sdk_path' => '2', + 'module_path' => $item->plugin_path, + 'is_active' => ( $is_active ) ? 'Active' : 'Inactive', + 'row_style' => ( $is_active ) ? 'success' : 'default', + ); + }, $fs_active_plugins->plugins ), + + ), array( + 'title' => $title, + ) + ); diff --git a/templates/debug/debug-users.php b/templates/debug/debug-users.php new file mode 100644 index 000000000..55c351015 --- /dev/null +++ b/templates/debug/debug-users.php @@ -0,0 +1,47 @@ + 'id', 'val' => fs_esc_html_inline( 'ID', 'id' ) ], + [ 'key' => 'name', 'val' => fs_esc_html_inline( 'Name' ) ], + [ 'key' => 'email', 'val' => fs_esc_html_inline( 'Email' ) ], + [ 'key' => 'verified', 'val' => fs_esc_html_inline( 'Verified' ) ], + [ 'key' => 'public_key', 'val' => fs_esc_html_inline( 'Public Key' ) ], + [ 'key' => 'secret_key', 'val' => fs_esc_html_inline( 'Secret Key' ) ], + [ 'key' => 'actions', 'val' => fs_esc_html_inline( 'Actions' ) ], + ]; + + $data = []; + foreach ( $users as $user_id => $user ) { + $has_developer_license = isset( $users_with_developer_license_by_id[ $user->id ] ); + + $row = [ + 'id' => $user->id, + 'name' => $has_developer_license ? '' : esc_html( $user->get_name() ), + 'email' => $has_developer_license ? '' : '' . esc_html( $user->email ) . '', + 'verified' => $has_developer_license ? '' : esc_html( json_encode( $user->is_verified ) ), + 'public_key' => esc_html( $user->public_key ), + 'secret_key' => $has_developer_license ? FS_Plugin_License::mask_secret_key_for_html( $user->secret_key ) : esc_html( $user->secret_key ), + 'actions' => array(), + ]; + + if ( $has_developer_license ) { + $row['actions'][] = array( + 'fs_action' => 'delete_user', + 'user_id' => esc_attr( $user->id ), + 'classes' => array( 'button' ), + 'label' => fs_esc_html_x_inline( 'Delete', 'verb', 'delete' ), + ); + } + + $data[] = $row; + } + + $tableData = [ + 'attributes' => [ 'id' => 'fs_users', 'class' => 'widefat' ], + 'headers' => $headers, + 'data' => $data, + ]; + + echo fs_debug_generate_table( $tableData, array('title' => fs_esc_html_inline( 'Users' )) ); + diff --git a/templates/debug/logger.php b/templates/debug/logger.php deleted file mode 100644 index 852497a19..000000000 --- a/templates/debug/logger.php +++ /dev/null @@ -1,66 +0,0 @@ - -

- - - - - - - - - - - - - - - - - - > - - - - - - - - - - -
#
.get_id() ?> - %s', - esc_html( substr( $log['msg'], 0, 32 ) ) . ( 32 < strlen( $log['msg'] ) ? '...' : '' ) - ); - ?> -
- -
-
get_file() ) . ':' . $log['line']; - } - ?>
\ No newline at end of file diff --git a/templates/debug/scheduled-crons.php b/templates/debug/scheduled-crons.php deleted file mode 100644 index 47a715ea4..000000000 --- a/templates/debug/scheduled-crons.php +++ /dev/null @@ -1,136 +0,0 @@ -get_option( $module_type . 's' ), FS_Plugin::get_class_name() ); - if ( is_array( $modules ) && count( $modules ) > 0 ) { - foreach ( $modules as $slug => $data ) { - if ( WP_FS__MODULE_TYPE_THEME === $module_type ) { - $current_theme = wp_get_theme(); - $is_active = ( $current_theme->stylesheet === $data->file ); - } else { - $is_active = is_plugin_active( $data->file ); - } - - /** - * @author Vova Feldman - * - * @since 1.2.1 Don't load data from inactive modules. - */ - if ( $is_active ) { - $fs = freemius( $data->id ); - - $next_execution = $fs->next_sync_cron(); - $last_execution = $fs->last_sync_cron(); - - if ( false !== $next_execution ) { - $scheduled_crons[ $slug ][] = array( - 'name' => $fs->get_plugin_name(), - 'slug' => $slug, - 'module_type' => $fs->get_module_type(), - 'type' => 'sync_cron', - 'last' => $last_execution, - 'next' => $next_execution, - ); - } - - $next_install_execution = $fs->next_install_sync(); - $last_install_execution = $fs->last_install_sync(); - - if (false !== $next_install_execution || - false !== $last_install_execution - ) { - $scheduled_crons[ $slug ][] = array( - 'name' => $fs->get_plugin_name(), - 'slug' => $slug, - 'module_type' => $fs->get_module_type(), - 'type' => 'install_sync', - 'last' => $last_install_execution, - 'next' => $next_install_execution, - ); - } - } - } - } - } - - $sec_text = fs_text_x_inline( 'sec', 'seconds' ); -?> -

- - - - - - - - - - - - - - $crons ) : ?> - - - - - - - - - - - - -
diff --git a/templates/generic-table.php b/templates/generic-table.php new file mode 100644 index 000000000..b824b49db --- /dev/null +++ b/templates/generic-table.php @@ -0,0 +1,217 @@ + [ '#ffffff', '#f6f7f7' ], + 'success' => [ '#dfffdf', '#b3ffb3' ], + 'info' => [ '#d9d9ff', '#b3b3ff' ], + 'warning' => [ '#fff5cc', '#ffeb99' ], + 'error' => [ '#ffcccc', '#ff9999' ], + ]; + + $output = '
'; + + $output .= '

'; + + $output .= '' . ($options['hidden'] ? '▶' : '▼') . ' '; + + if (isset($options['title'])) { + $output .= esc_html($options['title']); + } + + $output .= '

'; + + $output .= ' $value ) { + $output .= ' ' . $key . '="' . $value . '"'; + } + } + + $output .= '>'; + + if ( isset( $data['headers'] ) ) { + $output .= ''; + + foreach ( $data['headers'] as $header ) { + $output .= ''; + } + $output .= ''; + } + + if ( isset( $data['data'] ) ) { + $output .= ''; + $row_count = 0; + + foreach ( $data['data'] as $row ) { + $style_name = isset( $row['row_style'] ) ? $row['row_style'] : 'default'; + $style = isset( $styles[ $style_name ] ) ? $styles[ $style_name ] : $styles['default']; + $row_bg_color = $style[ $row_count % 2 ]; + $output .= ''; + if ( isset( $data['headers'] ) ) { + foreach ( $data['headers'] as $header ) { + if ( isset( $row[ $header['key'] ] ) ) { + $output .= ''; + } + } + } else { + foreach ( $row as $value ) { + $output .= ''; + } + } + $output .= ''; + $row_count ++; + } + $output .= ''; + } + $output .= '
' . $header['val'] . '
' . fs_debug_render_cell( $row[ $header['key'] ] ) . '' . fs_debug_render_cell( $value ) . '
'; + + $output .= ""; + + + $output .= '
'; + + return $output; + } + } + + if ( ! function_exists( 'fs_debug_render_link' ) ) { + function fs_debug_render_link( $element ) { + $classes = ''; + if ( is_array( $element['classes'] ) ) { + $classes = join( ' ', $element['classes'] ); + } + $output = ''; + $output .= $element['label']; + $output .= ''; + + return $output; + } + } + + if ( ! function_exists( 'fs_debug_render_button' ) ) { + function fs_debug_render_button( $element ) { + $output = '
'; + + // Sanitize the 'fs_action' attribute before embedding it in HTML + $fs_action_sanitized = esc_attr( $element['fs_action'] ); + $output .= ''; + + // Generating the nonce, which is already sanitized by WordPress through wp_nonce_field + $output .= wp_nonce_field( $fs_action_sanitized, 'wpnonce', true, false ); + + foreach ( $element as $key => $value ) { + if ( in_array( $key, array( 'fs_action', 'label', 'classes' ) ) || is_null( $value ) ) { + continue; + } + // Sanitize attribute names and values before embedding them in HTML + $key_sanitized = esc_attr( $key ); + $value_sanitized = esc_attr( $value ); + $output .= ''; + } + + // Sanitize the button content (label) before embedding it in HTML + $label_sanitized = esc_html( $element['label'] ); + $classes = ''; + if ( is_array( $element['classes'] ) ) { + $classes = join( ' ', $element['classes'] ); + } + + $output .= ''; + $output .= '
'; + + return $output; + } + } + + if ( ! function_exists( 'fs_debug_render_cell' ) ) { + function fs_debug_render_cell( $raw_value ) { + $output = ''; + if ( is_array( $raw_value ) ) { + foreach ( $raw_value as $element ) { + if ( isset( $element['fs_action'] ) ) { + $output .= fs_debug_render_button( $element ); + } else if ( isset( $element['href'] ) ) { + $output .= fs_debug_render_link( $element ); + } + } + } else { + $output = $raw_value; + } + + return $output; + } + } + + if ( ! function_exists( 'fs_debug_format_time' ) ) { + /** + * @param $time + * + * @return string + */ + function fs_debug_format_time( $time ) { + if ( is_numeric( $time ) ) { + $sec_text = fs_text_x_inline( 'sec', 'seconds' ); + $in_x_text = fs_text_inline( 'In %s', 'in-x' ); + $x_ago_text = fs_text_inline( '%s ago', 'x-ago' ); + $diff = abs( WP_FS__SCRIPT_START_TIME - $time ); + $human_diff = ( $diff < MINUTE_IN_SECONDS ) ? + $diff . ' ' . $sec_text : + human_time_diff( WP_FS__SCRIPT_START_TIME, $time ); + + return esc_html( sprintf( + ( ( WP_FS__SCRIPT_START_TIME < $time ) ? + $in_x_text : + $x_ago_text ), + $human_diff + ) ); + } + + return ''; + } + } + + if ( ! function_exists( 'fs_debug_get_plan_name' ) ) { + function fs_debug_get_plan_name( $site, $slug, $module_type, $all_plans, $fs_options ) { + $plan_name = ''; + if ( FS_Plugin_Plan::is_valid_id( $site->plan_id ) ) { + if ( false === $all_plans ) { + $option_name = 'plans'; + if ( WP_FS__MODULE_TYPE_PLUGIN !== $module_type ) { + $option_name = $module_type . '_' . $option_name; + } + + $all_plans = fs_get_entities( $fs_options->get_option( $option_name, array() ), + FS_Plugin_Plan::get_class_name() ); + } + + foreach ( $all_plans[ $slug ] as $plan ) { + $plan_id = Freemius::_decrypt( $plan->id ); + + if ( $site->plan_id == $plan_id ) { + $plan_name = Freemius::_decrypt( $plan->name ); + break; + } + } + } + + return $plan_name; + } + } + + if ( ! function_exists( 'fs_debug_get_secret_key' ) ) { + function fs_debug_get_secret_key( $site, $module_type, $slug ) { + $plugin_storage = FS_Storage::instance( $module_type, $slug ); + + return $plugin_storage->is_whitelabeled ? + FS_Plugin_License::mask_secret_key_for_html( $site->secret_key ) : + esc_html( $site->secret_key ); + } + } From 1d52af2564d5ed74bd57a4cbbc961378ecb03e8c Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Fri, 22 Mar 2024 19:02:34 +0100 Subject: [PATCH 02/42] [debug] Added Add-ons table --- templates/debug/debug-addons.php | 4 ++-- templates/debug/debug-licenses.php | 2 +- templates/generic-table.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/debug/debug-addons.php b/templates/debug/debug-addons.php index bd29c7efd..8fe2cdb68 100644 --- a/templates/debug/debug-addons.php +++ b/templates/debug/debug-addons.php @@ -29,7 +29,7 @@ 'data' => $data, ]; - $title = '

' . esc_html( sprintf( fs_text_inline( 'Add Ons of module %s', 'addons-of-x' ), $plugin_id ) ) . '

'; + $title = esc_html( sprintf( fs_text_inline( 'Add Ons of module %s', 'addons-of-x' ), $plugin_id ) ); - fs_debug_generate_table( $tableData, array('title' => $title) ); + echo fs_debug_generate_table( $tableData, array('title' => $title) ); } diff --git a/templates/debug/debug-licenses.php b/templates/debug/debug-licenses.php index f77668eca..094ef36de 100644 --- a/templates/debug/debug-licenses.php +++ b/templates/debug/debug-licenses.php @@ -42,6 +42,6 @@ ( WP_FS__MODULE_TYPE_PLUGIN === $module_type ? fs_text_inline( 'Plugin', 'plugin' ) : fs_text_inline( 'Theme', 'theme' ) ) ) ) . ''; - fs_debug_generate_table( $data ); + echo fs_debug_generate_table( $data ); } } \ No newline at end of file diff --git a/templates/generic-table.php b/templates/generic-table.php index b824b49db..db82e6720 100644 --- a/templates/generic-table.php +++ b/templates/generic-table.php @@ -105,7 +105,7 @@ function fs_debug_render_button( $element ) { $output .= ''; // Generating the nonce, which is already sanitized by WordPress through wp_nonce_field - $output .= wp_nonce_field( $fs_action_sanitized, 'wpnonce', true, false ); + $output .= wp_nonce_field( $fs_action_sanitized, '_wpnonce', true, false ); foreach ( $element as $key => $value ) { if ( in_array( $key, array( 'fs_action', 'label', 'classes' ) ) || is_null( $value ) ) { From 11a4d13b2f687a8e1f18fc57cfa936a8b38cc27b Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Wed, 27 Mar 2024 14:22:52 +0300 Subject: [PATCH 03/42] [wordpress-compliance] Fix the loading/enqueueing of JS scripts in WP. (#687) * [wordpress-compliance] Add the expected argument for the loading of scripts in WP. The default is false but make the fs function default as true to avoid breaking change. * [refactor] Evaluate all to true to avoid breaking changes. Evaluate all to true to avoid breaking changes. --------- Co-authored-by: Laurence Bahiirwa --- includes/fs-core-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/fs-core-functions.php b/includes/fs-core-functions.php index 0fe92f788..09bb0b48c 100755 --- a/includes/fs-core-functions.php +++ b/includes/fs-core-functions.php @@ -118,7 +118,7 @@ function fs_enqueue_local_style( $handle, $path, $deps = array(), $ver = false, } if ( ! function_exists( 'fs_enqueue_local_script' ) ) { - function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = 'all' ) { + function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = true ) { wp_enqueue_script( $handle, fs_asset_url( WP_FS__DIR_JS . '/' . trim( $path, '/' ) ), $deps, $ver, $in_footer ); } } @@ -1502,4 +1502,4 @@ function fs_apply_filter( $module_unique_affix, $tag, $value ) { function fs_get_optional_constant( $constant_name, $default_value = null ) { return defined( $constant_name ) ? constant( $constant_name ) : $default_value; } - } \ No newline at end of file + } From 9acc3ad3e8959c92cddcaf1ca81702d7af085752 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Wed, 27 Mar 2024 21:33:26 +0800 Subject: [PATCH 04/42] [api-connectivity] Ensure that the API connectivity state is updated when activating a license with an existing user. (#694) --- includes/class-freemius.php | 8 ++++++++ start.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 4fba12545..84a8337ec 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -14151,15 +14151,21 @@ private function activate_license( } } + $is_connected = null; + if ( true !== $result && ! FS_Api::is_api_result_entity( $result ) ) { if ( FS_Api::is_blocked( $result ) ) { $result->error->message = $this->generate_api_blocked_notice_message_from_result( $result ); + + $is_connected = false; } $error = FS_Api::is_api_error_object( $result ) ? $result->error->message : var_export( $result, true ); } else { + $is_connected = true; + $fs->network_upgrade_mode_completed(); $fs->_user = $user; @@ -14176,6 +14182,8 @@ private function activate_license( $fs->get_parent_instance()->get_account_url() : $fs->get_after_activation_url( 'after_connect_url' ); } + + $fs->update_connectivity_info( $is_connected ); } else { $next_page = $fs->opt_in( false, diff --git a/start.php b/start.php index f42c393fe..9040d6311 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.6.2.1'; + $this_sdk_version = '2.6.2.2'; #region SDK Selection Logic -------------------------------------------------------------------- From c5d6acba8c3278cbc2624e5d9cbca9e187ec225f Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 27 Mar 2024 14:42:31 +0100 Subject: [PATCH 05/42] [fix] [hidden-plans] [notices] Added `is_hidden` property to `FS_Plugin_Plan`. Added `get_filtered_plans`and `get_visible_trial_plans` to `FS_Plan_Manager`. Modified `_add_trial_notice` in `Freemius` to use only visible plan with trials. --- includes/class-freemius.php | 2 +- includes/entities/class-fs-plugin-plan.php | 4 ++ includes/managers/class-fs-plan-manager.php | 49 +++++++++++++++++---- 3 files changed, 45 insertions(+), 10 deletions(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 84a8337ec..020c97946 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -24110,7 +24110,7 @@ function _add_trial_notice() { if ( $this->is_registered() ) { // If opted-in, override trial with up to date data from API. - $trial_plans = FS_Plan_Manager::instance()->get_trial_plans( $this->_plans ); + $trial_plans = FS_Plan_Manager::instance()->get_visible_trial_plans( $this->_plans ); $trial_plans_count = count( $trial_plans ); if ( 0 === $trial_plans_count ) { diff --git a/includes/entities/class-fs-plugin-plan.php b/includes/entities/class-fs-plugin-plan.php index 00a0d747b..5bc6bc2d4 100755 --- a/includes/entities/class-fs-plugin-plan.php +++ b/includes/entities/class-fs-plugin-plan.php @@ -88,6 +88,10 @@ class FS_Plugin_Plan extends FS_Entity { * @var bool Is featured plan. */ public $is_featured; + /** + * @var bool Is hidden plan. + */ + public $is_hidden; #endregion Properties diff --git a/includes/managers/class-fs-plan-manager.php b/includes/managers/class-fs-plan-manager.php index 639de43e3..9becceaff 100755 --- a/includes/managers/class-fs-plan-manager.php +++ b/includes/managers/class-fs-plan-manager.php @@ -108,6 +108,7 @@ function has_free_plan( $plans ) { /** * Find all plans that have trial. + * Since 2.6.2 call get_filtered_plan * * @author Vova Feldman (@svovaf) * @since 1.0.9 @@ -117,20 +118,50 @@ function has_free_plan( $plans ) { * @return FS_Plugin_Plan[] */ function get_trial_plans( $plans ) { - $trial_plans = array(); + return $this->get_filtered_plans( $plans, true ); + } - if ( is_array( $plans ) && 0 < count( $plans ) ) { - /** - * @var FS_Plugin_Plan[] $plans - */ - for ( $i = 0, $len = count( $plans ); $i < $len; $i ++ ) { - if ( $plans[ $i ]->has_trial() ) { - $trial_plans[] = $plans[ $i ]; + /** + * Find all plans that are not hidden and have trial. + * + * @author Daniele Alessandra (@danielealessandra) + * + * @param FS_Plugin_Plan[] $plans + * + * @return FS_Plugin_Plan[] + * @since 2.6.3 + * + */ + function get_visible_trial_plans( $plans ) { + return $this->get_filtered_plans( $plans, true, true ); + } + + /** + * Find all plans filtered by trial or visibility. + * + * @author Daniele Alessandra (@danielealessandra) + * + * @param FS_Plugin_Plan[] $plans + * @param boolean $should_have_trials + * @param boolean $should_be_visible + * + * @return FS_Plugin_Plan[] + * @since 2.6.3 + * + */ + function get_filtered_plans( $plans, $should_have_trials = false, $should_be_visible = false ) { + $filtered_plans = array(); + + if ( is_array( $plans ) && count( $plans ) > 0 ) { + foreach ( $plans as $plan ) { + if ( ( $should_have_trials && ! $plan->has_trial() ) || ( $should_be_visible && $plan->is_hidden ) ) { + continue; } + $filtered_plans[] = $plan; } } - return $trial_plans; + return $filtered_plans; } /** From 93e4db2eceb8741e755ad58756781479214bd386 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 27 Mar 2024 19:17:11 +0530 Subject: [PATCH 06/42] [version] [pre-release] 2.6.2.3 --- start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.php b/start.php index 9040d6311..8d07fd670 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.6.2.2'; + $this_sdk_version = '2.6.2.3'; #region SDK Selection Logic -------------------------------------------------------------------- From 23a7e7384d935ad1da613bbb606c2becfc982d78 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Tue, 30 Jan 2024 13:18:08 +0530 Subject: [PATCH 07/42] [build] [translation] Fix translation build error. 1. Update all gulp dependencies. 2. Use the new transifex API to push and pull files. --- .example.env | 4 + .gitignore | 4 +- CONTRIBUTING.md | 40 + gulpfile.js | 146 +- gulptasks/transifex.js | 132 + gulptasks/translate.js | 115 + languages/freemius-de_DE.mo | Bin 73551 -> 69463 bytes languages/freemius-de_DE.po | 3109 ++++++++----- languages/freemius-en.mo | Bin 68519 -> 0 bytes languages/freemius-en.po | 2936 ------------ languages/freemius-es_ES.mo | Bin 72032 -> 53110 bytes languages/freemius-es_ES.po | 3119 +++++++------ languages/freemius-fr_FR.mo | Bin 49369 -> 46758 bytes languages/freemius-fr_FR.po | 2804 ++++++----- languages/freemius-nl_NL.mo | Bin 47831 -> 45228 bytes languages/freemius-nl_NL.po | 2789 ++++++----- languages/freemius-ru_RU.mo | Bin 49143 -> 47036 bytes languages/freemius-ru_RU.po | 2669 ++++++----- languages/freemius.pot | 1126 ++--- package-lock.json | 8738 +++++++++++++++++++++++++++++++++++ package.json | 22 +- patches/wp-pot+1.10.2.patch | 48 + 22 files changed, 18321 insertions(+), 9480 deletions(-) create mode 100644 .example.env create mode 100644 CONTRIBUTING.md create mode 100644 gulptasks/transifex.js create mode 100644 gulptasks/translate.js delete mode 100644 languages/freemius-en.mo delete mode 100644 languages/freemius-en.po create mode 100644 package-lock.json create mode 100644 patches/wp-pot+1.10.2.patch diff --git a/.example.env b/.example.env new file mode 100644 index 000000000..2d8f202cf --- /dev/null +++ b/.example.env @@ -0,0 +1,4 @@ +# Generate from here: https://app.transifex.com/user/settings/api/ +TRANSIFEX_API="..." +TRANSIFEX_ORGANIZATION=freemius +TRANSIFEX_PROJECT=sdk-testing \ No newline at end of file diff --git a/.gitignore b/.gitignore index ca4867b2a..2b13bf5e9 100644 --- a/.gitignore +++ b/.gitignore @@ -8,8 +8,8 @@ node_modules transifex-config.json *.orig npm-debug.log -package-lock.json vendor .DS_Store error-phpstan.xml -error-phpcs.log \ No newline at end of file +error-phpcs.log +.env \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..2ae327ffd --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,40 @@ +# Contributing to Freemius SDK for WordPress + +We love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into Freemius SDK for WordPress itself. +Please be sure to read our [contributing guide](https://freemius.com/help/documentation/wordpress-sdk/freemius-sdk-contribute/) before making a pull request. + +## Setup Node.js + +We make use of several Node.js packages to build and test the SDK. To install them, you need to have Node.js installed on your machine. We recommend using +[nvm](https://github.com/nvm-sh/nvm). Once you have it installed, run the following commands to install the correct version of Node.js and the dependencies: + +```bash +# Make sure to use the latest LTS version of Node.js. +nvm install --lts +nvm use --lts + +# Install with a frozen lockfile. +npm ci +```` + +Now you may check the available commands by running: + +```bash +npm run +``` + +## Translations + +We use a custom build to extract translations and generate the POT file. The prerequisites are: + +- You must be a team member of Freemius. +- You must have access to our [Transifex](https://app.transifex.com/freemius/wordpress-sdk/dashboard/) project. +- You have set the `.env` file in the project with the needed variables. Check the `.env.example` file for reference. + +Now, you can run the following commands: + + +```bash +# Run the script to extract translations and generate the POT file. +npm run translate +``` \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 10a126524..8d3826b9c 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,144 +1,4 @@ -var gulp = require('gulp'); -var path = require('path'); -var filesystem = require('fs'); -var wpPot = require('gulp-wp-pot'); -var gettext = require('gulp-gettext'); -var sort = require('gulp-sort'); -var pofill = require('gulp-pofill'); -var rename = require('gulp-rename'); -var clean = require('gulp-clean'); +require('dotenv').config(); +const {createTranslation} = require('./gulptasks/translate'); -var languagesFolder = './languages/'; - -var options = require('./transifex-config.json'); - -function getFolders(dir) { - return filesystem.readdirSync(dir) - .filter(function (file) { - return filesystem.statSync(path.join(dir, file)).isDirectory(); - }); -} - -var transifex = require('gulp-transifex').createClient(options); - -// Create POT out of PHP files -gulp.task('prepare-source', function () { - gulp.src('**/*.php') - .pipe(sort()) - .pipe(wpPot({ - destFile : 'freemius.pot', - package : 'freemius', - bugReport : 'https://github.com/Freemius/wordpress-sdk/issues', - lastTranslator : 'Vova Feldman ', - team : 'Freemius Team ', - - gettextFunctions: [ - {name: 'get_text_inline'}, - - {name: 'fs_text_inline'}, - {name: 'fs_echo_inline'}, - {name: 'fs_esc_js_inline'}, - {name: 'fs_esc_attr_inline'}, - {name: 'fs_esc_attr_echo_inline'}, - {name: 'fs_esc_html_inline'}, - {name: 'fs_esc_html_echo_inline'}, - - {name: 'get_text_x_inline', context: 2}, - {name: 'fs_text_x_inline', context: 2}, - {name: 'fs_echo_x_inline', context: 2}, - {name: 'fs_esc_attr_x_inline', context: 2}, - {name: 'fs_esc_js_x_inline', context: 2}, - {name: 'fs_esc_js_echo_x_inline', context: 2}, - {name: 'fs_esc_html_x_inline', context: 2}, - {name: 'fs_esc_html_echo_x_inline', context: 2} - ] - })) - .pipe(gulp.dest(languagesFolder + 'freemius.pot')); - - // Create English PO out of the POT. - return gulp.src(languagesFolder + 'freemius.pot') - .pipe(pofill({ - items: function (item) { - // If msgstr is empty, use identity translation - if (!item.msgstr.length) { - item.msgstr = ['']; - } - if (!item.msgstr[0]) { - item.msgstr[0] = item.msgid; - } - return item; - } - })) - .pipe(rename('freemius-en.po')) - .pipe(gulp.dest(languagesFolder)); -}); - -// Push updated po resource to transifex. -gulp.task('update-transifex', ['prepare-source'], function () { - return gulp.src(languagesFolder + 'freemius-en.po') - .pipe(transifex.pushResource()); -}); - -// Download latest *.po translations. -gulp.task('download-translations', ['update-transifex'], function () { - return gulp.src(languagesFolder + 'freemius-en.po') - .pipe(transifex.pullResource()); -}); - -// Move translations to languages root. -gulp.task('prepare-translations', ['download-translations'], function () { - var folders = getFolders(languagesFolder); - - return folders.map(function (folder) { - return gulp.src(path.join(languagesFolder, folder, 'freemius-en.po')) - .pipe(rename('freemius-' + folder + '.po')) - .pipe(gulp.dest(languagesFolder)); - }); -}); - -// Feel up empty translations with English. -gulp.task('translations-feelup', ['prepare-translations'], function () { - return gulp.src(languagesFolder + '*.po') - .pipe(pofill({ - items: function (item) { - // If msgstr is empty, use identity translation - if (0 == item.msgstr.length) { - item.msgstr = ['']; - } - if (0 == item.msgstr[0].length) { -// item.msgid[0] = item.msgid; - item.msgstr[0] = item.msgid; - } - return item; - } - })) - .pipe(gulp.dest(languagesFolder)); -}); - -// Cleanup temporary translation folders. -gulp.task('cleanup', ['prepare-translations'], function () { - var folders = getFolders(languagesFolder); - - return folders.map(function (folder) { - return gulp.src(path.join(languagesFolder, folder), {read: false}) - .pipe(clean()); - }); -}); - -// Compile *.po to *.mo binaries for usage. -gulp.task('compile-translations', ['translations-feelup'], function () { - // Compile POs to MOs. - return gulp.src(languagesFolder + '*.po') - .pipe(gettext()) - .pipe(gulp.dest(languagesFolder)) -}); - -gulp.task('default', [], function () { - gulp.run('prepare-source'); - gulp.run('update-transifex'); - gulp.run('download-translations'); - gulp.run('prepare-translations'); - gulp.run('translations-feelup'); - gulp.run('cleanup'); - gulp.run('compile-translations'); -}); \ No newline at end of file +exports.translate = createTranslation; diff --git a/gulptasks/transifex.js b/gulptasks/transifex.js new file mode 100644 index 000000000..0095e1f63 --- /dev/null +++ b/gulptasks/transifex.js @@ -0,0 +1,132 @@ +/** + * All Transifex related APIs and code. + * + * @link https://developers.transifex.com/recipes/create-update-and-delete-a-resource-in-nodejs + * @todo Refactor into a class/proper library if we end up using this at more places. + */ +const {transifexApi} = require('@transifex/api'); +const fs = require('node:fs'); +const log = require('fancy-log'); + +transifexApi.setup({ + auth: process.env.TRANSIFEX_API +}); + +const SOURCE_SLUG = 'freemius-enpo'; +const SOURCE_NAME = 'freemius-en.po'; + +async function getOrganization() { + // Safety check, unless we feel 100% confident, this wouldn't break the existing resources. + if ('wordpress-sdk' === process.env.TRANSIFEX_ORGANIZATION) { + throw new Error('Can not use the production organization yet!'); + } + + const organization = await transifexApi.Organization.get({slug: process.env.TRANSIFEX_ORGANIZATION}); + + if (!organization) { + throw new Error(`Organization "${process.env.TRANSIFEX_ORGANIZATION}" not found!`); + } + + log(`Using organization "${organization.attributes.name}"`); + + return organization; +} + +/** + * @param {import('@transifex/api').JsonApiResource} organization + * @return {Promise} + */ +async function getProject(organization) { + const projects = await organization.fetch('projects', false); + const project = await projects.get({slug: process.env.TRANSIFEX_PROJECT}); + + if (!project) { + throw new Error(`Project "${process.env.TRANSIFEX_PROJECT}" not found!`); + } + + log(`Using project "${project.attributes.name}"`); + + return project; +} + +async function getOrgAndProject() { + const organization = await getOrganization(); + const project = await getProject(organization); + + return {organization, project}; +} + +/** + * @param {import('@transifex/api').JsonApiResource} project + * @param {string} name + * @param {string} slug + * @param {import('@transifex/api').JsonApiResource} i18nFormat + * @return {Promise} + */ +async function getResourceStringForUpload(project, name, slug, i18nFormat) { + const resources = await project.fetch('resources', false); + /** + * IMPORTANT: DO NOT DELETE THE RESOURCE from the API. + * It will delete all the translations too. + * So first try to see if the resource is present and use it. If not, then only create it. + */ + + /** + * @type {import('@transifex/api').JsonApiResource} + */ + let resource; + + try { + resource = await resources.get({slug}); + log(`Resource "${name}" already exists, updating...`) + } catch (e) { + // No resources yet + log(`Creating resource "${name}"`); + resource = await transifexApi.Resource.create({ + name, + slug, + project, + i18n_format: i18nFormat, + }); + } + + return resource; +} + +async function uploadEnglishPoToTransifex(poPath) { + const {organization, project} = await getOrgAndProject(); + const content = fs.readFileSync(poPath, {encoding: 'utf-8'}); + + const i18nFormat = await transifexApi.i18n_formats.get({ + organization, + name: 'PO' + }); + + const resource = await getResourceStringForUpload(project, SOURCE_NAME, SOURCE_SLUG, i18nFormat); + + await transifexApi.ResourceStringsAsyncUpload.upload({ + resource, + content, + }); + + return resource; +} + +/** + * @param {string} languageCode + * @param {import('@transifex/api').JsonApiResource} resource + * @return {Promise} + */ +async function getTranslation(languageCode, resource) { + const language = await transifexApi.Language.get({code: languageCode}); + const url = await transifexApi.ResourceTranslationsAsyncDownload.download({ + resource, + language, + }); + + const response = await fetch(url); + return await response.text(); +} + +exports.uploadEnglishPoToTransifex = uploadEnglishPoToTransifex; +exports.getTranslation = getTranslation; \ No newline at end of file diff --git a/gulptasks/translate.js b/gulptasks/translate.js new file mode 100644 index 000000000..f88346075 --- /dev/null +++ b/gulptasks/translate.js @@ -0,0 +1,115 @@ +const {src, dest, series} = require('gulp'); +const sort = require('gulp-sort'); +const wpPot = require('gulp-wp-pot'); +const path = require('node:path'); +const log = require('fancy-log'); +const fs = require('node:fs'); +const {po, mo} = require('gettext-parser'); +const {uploadEnglishPoToTransifex, getTranslation} = require('./transifex'); + +const root = path.resolve(__dirname, '..'); +const languagesFolder = path.resolve(root, './languages'); +const freemiusPotPath = path.resolve(languagesFolder, './freemius.pot'); + +const LANGUAGE_CODES = [ + // 'cs_CZ', + // 'da_DK', + 'de_DE', + 'es_ES', + 'fr_FR', + // 'he_IL', + // 'hu_HU', + // 'it_IT', + // 'js', + 'nl_NL', + 'ru_RU', + // 'ta', + // 'zh_CN', +]; + +function translatePHP() { + return src('**/*.php') + .pipe(sort()) + .pipe(wpPot({ + destFile : 'freemius.pot', + package : 'freemius', + bugReport : 'https://github.com/Freemius/wordpress-sdk/issues', + lastTranslator: 'Vova Feldman ', + team : 'Freemius Team ', + + gettextFunctions: [ + // #region Methods from the Freemius class. + {name: 'get_text_inline'}, + {name: 'get_text_x_inline', context: 2}, + + {name: '$this->get_text_inline'}, + {name: '$this->get_text_x_inline', context: 2}, + + {name: '$this->_fs->get_text_inline'}, + {name: '$this->_fs->get_text_x_inline', context: 2}, + + {name: '$this->fs->get_text_inline'}, + {name: '$this->fs->get_text_x_inline', context: 2}, + + {name: '$fs->get_text_inline'}, + {name: '$fs->get_text_x_inline', context: 2}, + + {name: '$this->_parent->get_text_inline'}, + {name: '$this->_parent->get_text_x_inline', context: 2}, + + // #endregion + + {name: 'fs_text_inline'}, + {name: 'fs_echo_inline'}, + {name: 'fs_esc_js_inline'}, + {name: 'fs_esc_attr_inline'}, + {name: 'fs_esc_attr_echo_inline'}, + {name: 'fs_esc_html_inline'}, + {name: 'fs_esc_html_echo_inline'}, + + {name: 'fs_text_x_inline', context: 2}, + {name: 'fs_echo_x_inline', context: 2}, + {name: 'fs_esc_attr_x_inline', context: 2}, + {name: 'fs_esc_js_x_inline', context: 2}, + {name: 'fs_esc_js_echo_x_inline', context: 2}, + {name: 'fs_esc_html_x_inline', context: 2}, + {name: 'fs_esc_html_echo_x_inline', context: 2}, + ], + })) + .pipe(dest(freemiusPotPath)); +} + +function updateTranslationFiles(languageCode, translation) { + const fileName = `freemius-${languageCode}`; + // Do a parsing, just to be sure that the translation is valid. + const parsedPo = po.parse(translation); + + const poFilePath = path.resolve(languagesFolder, `./${fileName}.po`); + fs.writeFileSync(poFilePath, po.compile(parsedPo)); + + const moFilePath = path.resolve(languagesFolder, `./${fileName}.mo`); + fs.writeFileSync(moFilePath, mo.compile(parsedPo)); +} + +async function syncWithTransifex() { + log('Updaing Transifex source...'); + const resource = await uploadEnglishPoToTransifex(freemiusPotPath); + log('Transifex updated.'); + + // Loop over LANGUAGE_CODE and download and update every one of them + for (const code of LANGUAGE_CODES) { + log(`Updating ${code}...`); + try { + const translation = await getTranslation(code, resource); + + // Update the po file in the file system + updateTranslationFiles(code, translation); + + log(`Updated ${code}.`); + } catch (e) { + log.error(`Failed to get translation of ${code}, skipping...`); + } + } +} + +exports.createTranslation = series(translatePHP, syncWithTransifex); diff --git a/languages/freemius-de_DE.mo b/languages/freemius-de_DE.mo index 2d951e98adae3c53d5ff5b0d3b04d4911a1e0d89..166eafff625e6ae0650c7d47c1b54f1142d3c6fb 100644 GIT binary patch delta 13790 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 delta 17143 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 F{{d0zUs?bF diff --git a/languages/freemius-de_DE.po b/languages/freemius-de_DE.po index 8ce7f4070..7d9703b52 100644 --- a/languages/freemius-de_DE.po +++ b/languages/freemius-de_DE.po @@ -1,1557 +1,1598 @@ -# Copyright (C) 2022 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Christoph Brocks, 2022 -# Oliver Heinrich, 2022 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Oliver Heinrich, 2022\n" -"Language-Team: German (Germany) (http://www.transifex.com/freemius/wordpress-sdk/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: German (Germany) " +"(https://app.transifex.com/freemius/teams/184351/de_DE/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Ein Update auf eine Beta-Version ersetzt deine installierte Version von %s durch die neueste Beta-Version - verwende sie mit Vorsicht und nur auf Testseiten. Du wurdest gewarnt." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Ein Update auf eine Beta-Version ersetzt deine installierte Version von %s " +"durch die neueste Beta-Version - verwende sie mit Vorsicht und nur auf " +"Testseiten. Du wurdest gewarnt." -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Willst du mit dem Update fortfahren?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Das Freemius SDK konnte die Hauptdatei des Plugins nicht finden. Bitte kontaktiere sdk@freemius.com mit dem aktuellen Fehler." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Das Freemius-SDK konnte die Hauptdatei des Plugins nicht finden. Bitte " +"kontaktiere sdk@freemius.com mit der gezeigten Fehlermeldung." -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Fehler" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Ich habe ein besseres %s gefunden" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Wie lautet der Name des %s?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "Es ist eine temporäre %s - ich behebe ein Problem" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deaktivierung" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Theme wechseln" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "Andere" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ich brauche das %s nicht mehr" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Ich habe das %s nur für einen kurzen Zeitraum benötigt" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" -msgstr "Das %s hat meine Seite kaputt gemacht" +msgstr "Das %s hat meine Seite beschädigt" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "Das %s funktionierte plötzlich nicht mehr" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Ich kann es nicht mehr bezahlen" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Welchen Preis würdest du als gerechtfertigt erachten?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Ich möchte meine Informationen nicht mit dir teilen" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "Das %s hat nicht funktioniert" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Ich habe nicht gewusst wie ich es zum Laufen bringe" -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "Das %s ist toll, aber ich brauche ein bestimmtes Feature, das nicht unterstützt wird" +msgstr "" +"Das %s ist toll, aber ich brauche ein bestimmtes Feature, das nicht " +"unterstützt wird" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Welche Funktion?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "Das %s funktioniert nicht" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Bitte teile uns mit, was nicht funktioniert hat, damit wir es für zukünftige Nutzer beheben können..." +msgstr "" +"Bitte teile uns mit, was nicht funktioniert hat, damit wir es für " +"zukünftige Nutzer beheben können." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Es ist nicht das, wonach ich gesucht habe" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Wonach hast du gesucht?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "Das %s hat nicht wie erwartet funktioniert" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Was hast du erwartet?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "Ich weiß nicht, was cURL ist oder wie man es installiert. Bitte hilf mir!" - -#: includes/class-freemius.php:4446 -msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -msgstr "Wir stellen sicher, dass wir dein Hosting-Unternehmen kontaktieren und das Problem beheben. Du bekommst eine Folge-E-Mail an %s, sobald wir ein Update haben." - -#: includes/class-freemius.php:4453 -msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -msgstr "Toll, bitte installiere cURL und aktiviere es in deiner php.ini Datei. Suche außerdem nach der 'disable_functions' Direktive in deiner php.ini Datei und entferne alle deaktivierten Methoden, die mit 'curl_' beginnen. Um sicherzustellen, dass sie erfolgreich aktiviert wurde, benutze 'phpinfo()'. Danach aktiviere, deaktiviere das %s und aktiviere es anschließend wieder." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Ja - mach dein Ding" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "Nein - nur deaktivieren" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, -#: includes/class-freemius.php6334, includes/class-freemius.php13998, -#: includes/class-freemius.php14747, includes/class-freemius.php18513, -#: includes/class-freemius.php18618, includes/class-freemius.php18795, -#: includes/class-freemius.php21078, includes/class-freemius.php21456, -#: includes/class-freemius.php21470, includes/class-freemius.php22158, -#: includes/class-freemius.php23174, includes/class-freemius.php23304, -#: includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Hoppla" - -#: includes/class-freemius.php:4683 -msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -msgstr "Danke, dass du uns die Chance gibst, das Problem zu beheben! Eine Nachricht wurde soeben an unser technisches Personal gesendet. Wir werden uns bei dir melden, sobald wir ein Update für %s haben. Wir danken dir für deine Geduld." - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Du hast eine %s-Lizenz erworben." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr "Der %sDownload-Link%s, der Lizenzschlüssel und die Installationsanleitung wurden an %s gesendet. Wenn du die E-Mail nach 5 Minuten nicht finden kannst, überprüfe bitte dein Spam-Postfach." - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, -#: includes/class-freemius.php17889, includes/class-freemius.php17900, -#: includes/class-freemius.php21347, includes/class-freemius.php21738, -#: includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Hurra" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s kann nicht ohne %s laufen." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "" +"Der %s-%sDownload-Link%s, der Lizenzschlüssel und die " +"Installationsanleitung wurden an %s gesendet. Wenn du die E-Mail nach 5 " +"Minuten nicht finden kannst, überprüfe bitte dein Spam-Postfach." -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s kann ohne das Plugin nicht laufen." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" +"Beim Verarbeiten deiner Anfrage ist ein unerwarteter API-Fehler " +"aufgetreten. Bitte versuche es in ein paar Minuten erneut und wenn es immer " +"noch nicht funktioniert, kontaktiere den Autor von %s mit den folgenden " +"Angaben:" -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "Beim Verarbeiten Ihrer Anfrage ist ein unerwarteter API-Fehler aufgetreten. Bitte versuche es in ein paar Minuten erneut und wenn es immer noch nicht funktioniert, kontaktiere den Autor von %s mit den folgenden Angaben:" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Du hast eine %s Lizenz." -#: includes/class-freemius.php:6000 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "Premium %s Version wurde erfolgreich aktiviert." -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "" -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "Du hast eine %s Lizenz." - -#: includes/class-freemius.php:6317 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s kostenlose Testversion wurde erfolgreich abgebrochen. Da das Add-on nur Premium ist, wurde es automatisch deaktiviert. Wenn du es in Zukunft nutzen möchtest, musst du eine Lizenz erwerben." +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"Die kostenlose Testversion von %s wurde erfolgreich storniert. Da das " +"Add-on nur Premium ist, wurde es automatisch deaktiviert. Wenn du es in " +"Zukunft nutzen möchtest, musst du eine Lizenz erwerben." -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s ist ein reines Premium Add-on. Du musst zuerst eine Lizenz erwerben, bevor du das Plugin aktivieren kannst." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s ist ein reines Premium-Add-on. Du musst zuerst eine Lizenz erwerben, " +"bevor du das Plugin aktivieren kannst." -#: includes/class-freemius.php6330, templates/add-ons.php186, +#: includes/class-freemius.php6047, templates/add-ons.php186, #: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Mehr Informationen über %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Lizenz kaufen" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" +"Du solltest in den nächsten 5 Minuten %1$s für %2$s an deine Mailbox um " +"%3$s erhalten." + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "%s, um die Lizenz zu aktivieren, sobald du sie erhalten hast." + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" +"Wenn Du die E-Mail nicht erhalten hast, überprüfe deinen Spam-Ordner oder " +"suche nach E-Mails von %4$s." + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "Danke für das Upgrade." + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "" +"Du solltest eine Bestätigungs-E-Mail für %1$s an dein Postfach unter %2$s " +"erhalten. Bitte stelle sicher, dass du auf die Schaltfläche in dieser " +"E-Mail an %3$s klickst." -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "die Testversion starten" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" -msgstr "complete the opt-in" +msgstr "schließe die Anmeldung ab" + +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "Danke!" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Du bist nur einen Schritt entfernt - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Schließe jetzt die \"%s\"-Aktivierung ab" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" -msgstr "Wir haben ein paar Anpassungen an den %s, %s gemacht" +msgstr "Wir haben ein paar Anpassungen am %s gemacht. %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Mach mit, um \"%s\" besser zu machen!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Das Upgrade von %s wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, -#: includes/class-fs-plugin-updater.php1305, -#: includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" -#: includes/class-freemius.php10711, templates/account.php411, -#: templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, -#: templates/account.php420, templates/debug.php395, templates/debug.php615, +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, #: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Theme" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "Beim Versuch, auf den White-Label-Modus der Lizenz umzuschalten, ist ein unbekannter Fehler aufgetreten." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" +"Beim Versuch, auf den White-Label-Modus der Lizenz umzuschalten, ist ein " +"unbekannter Fehler aufgetreten." -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Deine %s-Lizenz wurde als White-Label gekennzeichnet, um sensible Informationen vor dem WP Admin zu verbergen (z.B. deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse und Rechnungen). Solltest du das wieder rückgängig machen wollen, kannst du das ganz einfach über dein %s tun. Wenn dies ein Fehler war, kannst du es auch %s" +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" +"Deine %s-Lizenz wurde als White-Label gekennzeichnet, um sensible " +"Informationen vor dem WP Admin zu verbergen (z.B. deine E-Mail, " +"Lizenzschlüssel, Preise, Rechnungsadresse und Rechnungen). Solltest du das " +"wieder rückgängig machen wollen, kannst du das ganz einfach über dein %s " +"tun. Wenn dies ein Fehler war, kannst du es auch %s" -#: includes/class-freemius.php13836, +#: includes/class-freemius.php13654, #: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Benutzer Dashboard" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "jetzt rückgängig machen." -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "Beim Versuch, den Beta-Modus für den Benutzers einzustellen, ist ein unbekannter Fehler aufgetreten." +msgstr "" +"Beim Versuch, den Beta-Modus für den Benutzers einzustellen, ist ein " +"unbekannter Fehler aufgetreten." -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "Ungültige neue Benutzer-ID oder E-Mail Adresse." -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, wir konnten das E-Mail-Update nicht abschließen. Ein anderer Benutzer mit der gleichen E-Mail ist bereits registriert." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Sorry, wir konnten das E-Mail-Update nicht abschließen. Ein anderer " +"Benutzer mit der gleichen E-Mail ist bereits registriert." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Wenn du die Eigentümerschaft des Kontos von %s an %s abgeben möchtest, klicke auf den Button Eigentümer wechseln." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Wenn du die Eigentümerschaft des Kontos von %s an %s abgeben möchtest, " +"klicke auf den Button Eigentümer wechseln." -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Eigentümer wechseln" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Ungültige Website-Detailsammlung." -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Wir konnten deine E-Mail-Adresse nicht im System finden. Bist du sicher, dass dies die richtige Adresse ist?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Wir können keine aktiven Lizenzen sehen, die mit dieser E-Mail-Adresse verbunden sind. Bist du sicher, dass es die richtige Adresse ist?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Wir können keine aktiven Lizenzen sehen, die mit dieser E-Mail-Adresse " +"verbunden sind. Bist du sicher, dass es die richtige Adresse ist?" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Die Aktivierung des Kontos steht noch aus. Bitte überprüfe deine E-Mails und klicke auf den Link, um dein Konto zu aktivieren, und sende dann das Affiliate-Formular erneut." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "" +"Wir konnten deine E-Mail-Adresse nicht im System finden. Bist du sicher, " +"dass dies die richtige Adresse ist?" -#: includes/class-freemius.php15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Jetzt eine Lizenz kaufen" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" +"Die Aktivierung des Kontos steht noch aus. Bitte überprüfe deine E-Mails " +"und klicke auf den Link, um dein Konto zu aktivieren, und sende dann das " +"Affiliate-Formular erneut." -#: includes/class-freemius.php15160, +#: includes/class-freemius.php14986, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Verlängere deine Lizenz jetzt" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Jetzt eine Lizenz kaufen" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s, um auf die Sicherheits- und Funktionsupdates der Version %s und den Support zuzugreifen." +msgstr "" +"%s, um auf die Sicherheits- und Funktionsupdates der Version %s und den " +"Support zuzugreifen." -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "%s Opt-In wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Dein Konto wurde erfolgreich mit der %s-Lizenz aktiviert." - -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Dein Testzeitraum wurde erfolgreich gestartet." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, -#: includes/class-freemius.php:18793 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Dein Konto wurde erfolgreich mit der %s-Lizenz aktiviert." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Konnte %s nicht aktivieren." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Bitte kontaktiere uns mit der folgenden Nachricht:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Ein unbekannter Fehler ist aufgetreten." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Starte Testversion" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Preise" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Starte Testversion" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliate" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, -#: templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Konto" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, +#: includes/class-freemius.php19106, includes/class-freemius.php19108, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kontakt" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, -#: includes/class-freemius.php24556, templates/account.php134, +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-ons" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Preise" - -#: includes/class-freemius.php19551, +#: includes/class-freemius.php19370, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Support Forum" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Deine E-Mail wurde erfolgreich verifiziert - Glückwunsch!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Direkt an" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." -msgstr "es scheint, dass der von dir eingegebene Schlüssel nicht mit unseren Aufzeichnungen übereinstimmt." +msgstr "" +"es scheint, dass der von dir eingegebene Schlüssel nicht mit unseren " +"Aufzeichnungen übereinstimmt." -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "Der Debug-Modus wurde erfolgreich aktiviert und wird in 60 Minuten automatisch wieder deaktiviert. Du kannst ihn auch früher deaktivieren, indem du auf den Link \"Stop Debug\" klickst." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" +"Der Debug-Modus wurde erfolgreich aktiviert und wird in 60 Minuten " +"automatisch wieder deaktiviert. Du kannst ihn auch früher deaktivieren, " +"indem du auf den Link \"Stop Debug\" klickst." -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Dein %s Add-on Plan wurde erfolgreich upgegradet." -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s Add-on wurde erfolgreich erworben." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Lade die neueste Version herunter" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Dein Server blockiert den Zugriff auf Freemius' API, die für die %1$s-Synchronisation entscheidend ist. Bitte kontaktiere deinen Host, um %2$s auf die Whitelist zu setzen" +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Es scheint, dass einer der Authentifizierungsparameter falsch ist. " +"Aktualisiere deinen Public Key, Secret Key & User ID und versuche es erneut." -#: includes/class-freemius.php21455, includes/class-freemius.php21469, -#: includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Fehler vom Server empfangen:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Es scheint, dass einer der Authentifizierungsparameter falsch ist. Aktualisiere deinen Public Key, Secret Key & User ID und versuche es erneut." - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, -#: includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "" -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Es sieht so aus, als wärst du immer noch im %s-Plan. Wenn du ein Upgrade oder einen Planwechsel durchgeführt hast, ist das wahrscheinlich ein Problem auf unserer Seite - sorry." - -#: includes/class-freemius.php21714, templates/account.php136, -#: templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Test" +#: includes/class-freemius.php:21524 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Es sieht so aus, als wärst du immer noch im %s-Plan. Wenn du ein Upgrade " +"oder einen Planwechsel durchgeführt hast, ist das wahrscheinlich ein " +"Problem auf unserer Seite - sorry." -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Ich habe mein Konto hochgestuft, aber wenn ich versuche, die Lizenz zu synchronisieren, bleibt der Plan %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Ich habe mein Konto hochgestuft, aber wenn ich versuche, die Lizenz zu " +"synchronisieren, bleibt der Plan %s." -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Bitte kontaktiere uns hier" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Dein Plan wurde erfolgreich aktiviert." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Dein Plan wurde erfolgreich upgegradet." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Dein Plan wurde erfolgreich auf %s geändert." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Deine Lizenz ist abgelaufen. Du kannst das kostenlose %s trotzdem für immer weiter nutzen." +msgstr "" +"Deine Lizenz ist abgelaufen. Du kannst das kostenlose %s trotzdem für immer " +"weiter nutzen." + +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Deine Lizenz ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin " +"ohne Unterbrechungen zu nutzen." + +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Deine Lizenz wurde gelöscht. Wenn du denkst, dass es ein Fehler ist, " +"kontaktiere bitte den Support." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Deine Lizenz ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin ohne Unterbrechungen zu nutzen." +#: includes/class-freemius.php:21595 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Deine Lizenz ist abgelaufen. Du kannst weiterhin alle %s Funktionen nutzen, " +"aber du musst deine Lizenz erneuern, um weiterhin Updates und Support zu " +"erhalten." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Deine Lizenz wurde gelöscht. Wenn du denkst, dass es ein Fehler ist, kontaktiere bitte den Support." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Dein kostenloser Testzeitraum ist abgelaufen. Du kannst aber weiterhin alle " +"unsere kostenlosen Funktionen nutzen." -#: includes/class-freemius.php:21791 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Deine Lizenz ist abgelaufen. Du kannst weiterhin alle %s Funktionen nutzen, aber du musst deine Lizenz erneuern, um weiterhin Updates und Support zu erhalten." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Deine kostenlose Testversion ist abgelaufen. %1$sUpgrade jetzt%2$s, um das " +"%3$s weiterhin ohne Unterbrechungen zu nutzen." -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Dein kostenloser Testzeitraum ist abgelaufen. Du kannst aber weiterhin alle unsere kostenlosen Funktionen nutzen." +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" +"Dein Server blockiert den Zugriff auf die API von Freemius, was für die " +"Synchronisation von %1$s entscheidend ist. Bitte wende dich an deinen Host, " +"um die folgenden Domains auf die Whitelist zu setzen: %2$s" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Deine kostenlose Testversion ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin ohne Unterbrechungen zu nutzen." +#: includes/class-freemius.php:21671 +msgid "Show error details" +msgstr "Fehlerdetails anzeigen" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Es sieht so aus, als ob die Lizenz nicht aktiviert werden konnte." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Deine Lizenz wurde erfolgreich aktiviert." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Es sieht so aus, als ob deine Seite derzeit keine aktive Lizenz hat." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Es sieht so aus, als wäre die Lizenzdeaktivierung fehlgeschlagen." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "Deine %s-Lizenz wurde erfolgreich deaktiviert." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Deine Lizenz wurde erfolgreich deaktiviert, du bist zurück im %s Plan." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Es scheint, als ob wir ein temporäres Problem mit der Kündigung deines Abonnements haben. Bitte versuche es in ein paar Minuten erneut." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Es scheint, als ob wir ein temporäres Problem mit der Kündigung deines " +"Abonnements haben. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Dein Abonnement wurde erfolgreich gekündigt. Dein %s Plan wird in %s ablaufen." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Dein Abonnement wurde erfolgreich gekündigt. Dein %s Plan wird in %s " +"ablaufen." -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Du testest %s bereits." -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Du hast schon einmal einen Testzeitraum in Anspruch genommen." -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Keiner der Pläne von %s unterstützt eine Probezeit." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s existiert nicht, es kann keine Testversion gestartet werden." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Der Plan %s unterstützt keine Probezeit." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "Keiner der Pläne von %s unterstützt eine Probezeit." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Es sieht so aus, als wärst du nicht mehr im Testmodus, also gibt es nichts zu stornieren :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Es sieht so aus, als wärst du nicht mehr im Testmodus, also gibt es nichts " +"zu stornieren :)" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Es scheint, als hätten wir ein temporäres Problem mit der Abmeldung deiner Testversion. Bitte versuche es in ein paar Minuten erneut." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Es scheint, als hätten wir ein temporäres Problem mit der Abmeldung deiner " +"Testversion. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:22314 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Deine %s kostenlose Testversion wurde erfolgreich storniert." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Sieht so aus, als hättest du die neueste Version." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Ihr seid alle gut!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Version %s wurde freigegeben." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Bitte lade %s herunter." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "die neueste %s Version hier" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Neu" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Sieht so aus, als hättest du die neueste Version." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "Ihr seid alle gut!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verifizierungsmail wurde gerade an %s gesendet. Wenn du sie nach 5 Minuten nicht finden kannst, überprüfe bitte deine Spam-Ordner." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Verifizierungsmail wurde gerade an %s gesendet. Wenn du sie nach 5 Minuten " +"nicht finden kannst, überprüfe bitte deine Spam-Ordner." -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Webseite erfolgreich eingeloggt." -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Fantastisch" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Das Teilen von Diagnosedaten mit hilft dabei, Funktionen bereitzustellen, die für deine Website relevanter sind, Inkompatibilitäten mit WordPress- oder PHP-Versionen zu vermeiden, die deine Website beschädigen können, und zu erkennen, auf welche Sprachen und Regionen das Plugin übersetzt und angepasst werden sollte." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "Diagnosedaten werden nicht mehr von %s bis %sgesendet." + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" +"Das Teilen von Diagnosedaten mit %s hilft dabei, Funktionen " +"bereitzustellen, die für deine Website relevanter sind, Inkompatibilitäten " +"mit WordPress- oder PHP-Versionen zu vermeiden, die deine Website " +"beschädigen können, und zu erkennen, auf welche Sprachen und Regionen das " +"Plugin übersetzt und angepasst werden sollte." -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Danke dir!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnosedaten werden nicht mehr von %s bis %sgesendet." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Der Besitzer der E-Mail-Adresse muss die Aktualisierung innerhalb der nächsten 4 Stunden bestätigen." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "" +"Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Du musst die " +"Aktualisierung innerhalb der nächsten 4 Stunden bestätigen. Wenn du die " +"E-Mail nicht findest, überprüfe bitte deinen Spam-Ordner." -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Du musst die Aktualisierung innerhalb der nächsten 4 Stunden bestätigen. Wenn du die E-Mail nicht findest, überprüfe bitte deinen Spam-Ordner." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" +"Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Der Besitzer der " +"E-Mail-Adresse muss die Aktualisierung innerhalb der nächsten 4 Stunden " +"bestätigen." -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Danke für die Bestätigung des Eigentümerwechsels. Eine E-Mail wurde soeben an %s zur endgültigen Genehmigung gesendet." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Danke für die Bestätigung des Eigentümerwechsels. Eine E-Mail wurde soeben " +"an %s zur endgültigen Genehmigung gesendet." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s ist der neue Besitzer des Kontos." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Herzlichen Glückwunsch" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Dein Name wurde erfolgreich aktualisiert." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Bitte gib deinen vollständigen Namen an." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Dein Name wurde erfolgreich aktualisiert." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Du hast deine %s erfolgreich aktualisiert." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Ist dies die Seite deines Kunden? %s wenn du sensible Informationen wie deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse & Rechnungen vor dem WP Admin verstecken möchtest." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"Ist dies die Seite deines Kunden? %s wenn du sensible Informationen wie " +"deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse & Rechnungen vor " +"dem WP Admin verstecken möchtest." -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "Hier klicken" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "Paket" -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Ich wollte dich nur darauf hinweisen, dass die Add-on-Informationen von %s von einem externen Server bezogen werden." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Kopf hoch" - -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Ich wollte dich nur darauf hinweisen, dass die Add-on-Informationen von %s " +"von einem externen Server bezogen werden." -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Wie gefällt dir %s bis jetzt? Teste alle %s-Premium-Funktionen mit der kostenlosen %d-Tage-Testversion." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Wie gefällt dir %s bis jetzt? Teste alle %s Premium-Funktionen mit der " +"kostenlosen %d-Tage-Testversion." -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Keine Verpflichtung für %s Tage - jederzeit kündbar!" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Keine Kreditkarte erforderlich" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Starte die kostenlose Testversion" - -#: includes/class-freemius.php:24385 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hallo, wusstest du, dass %s ein Partnerprogramm hat? Wenn du die %s magst, kannst du unser Affiliate werden und etwas Geld verdienen!" +#: includes/class-freemius.php:24234 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Hallo, wusstest du, dass %s ein Partnerprogramm hat? Wenn du %s magst, " +"kannst du unser Affiliate-Partner werden und etwas Geld verdienen!" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Mehr erfahren" -#: includes/class-freemius.php24580, templates/account.php573, -#: templates/account.php725, templates/connect.php223, -#: templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Lizenz freischalten" -#: includes/class-freemius.php24581, templates/account.php667, -#: templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Lizenz ändern" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Abmelden" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, +#: includes/class-freemius.php24545, includes/class-freemius.php24539, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt-In" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " Die kostenpflichtige Version von %1$s ist bereits installiert. Bitte aktiviere sie, um von den %2$s Funktionen zu profitieren. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Aktiviere %s Funktionen" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Abmelden" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Bitte folge diesen Schritten, um das Upgrade abzuschließen" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Lade die neueste %s Version herunter" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Lade die heruntergeladene Version hoch und aktiviere sie" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Wie kann ich es hochladen und aktivieren?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sKlicke hier%s um die Webseite auszuwählen, auf denen du die Lizenz aktivieren möchtest." +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +" Die kostenpflichtige Version von %1$s ist bereits installiert. Bitte " +"aktiviere sie, um von den %2$s Funktionen zu profitieren. %3$s" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Aktiviere %s Funktionen" + +#: includes/class-freemius.php:24848 +msgid "Your plan was successfully upgraded." +msgstr "Dein Plan wurde erfolgreich upgegradet." + +#: includes/class-freemius.php:24849 +msgid "Your plan was successfully activated." +msgstr "Dein Plan wurde erfolgreich aktiviert." -#: includes/class-freemius.php:25267 +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sKlicke hier%s um die Webseite auszuwählen, auf denen du die Lizenz " +"aktivieren möchtest." + +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Die automatische Installation funktioniert nur für eingeloggte Nutzer." -#: includes/class-freemius.php25277, includes/class-freemius.php25310, -#: includes/class-fs-plugin-updater.php1284, -#: includes/class-fs-plugin-updater.php:1298 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Ungültige Modul-ID." -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Premium Add-on Version bereits installiert." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Premium Version bereits aktiv." -#: includes/class-freemius.php:25293 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Du hast keine gültige Lizenz, um auf die Premium-Version zuzugreifen." -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Das Plugin ist eine \"Serviceware\", was bedeutet, dass es keine Premium Version hat." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Das Plugin ist eine \"Serviceware\", was bedeutet, dass es keine " +"Premiumversion hat." -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 -msgid "Premium add-on version already installed." -msgstr "Premium Add-on Version bereits installiert." - -#: includes/class-freemius.php:25672 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Bezahlte Funktionen ansehen" -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Vielen Dank, dass du %s und seine Add-ons benutzt!" - -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "Vielen Dank, dass du %s benutzt!" - -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Du hast dich bereits für unser Nutzungs-Tracking entschieden, was uns hilft, %s weiter zu verbessern." - -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Vielen Dank, dass du unsere Produkte benutzt!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Du hast Dich bereits für unser Nutzungs-Tracking entschieden, was uns hilft, die Benutzerfreundlichkeit weiter zu verbessern." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Du hast Dich bereits für unser Nutzungs-Tracking entschieden, was uns " +"hilft, die Benutzerfreundlichkeit weiter zu verbessern." -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s und seine Add-ons" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Produkte" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Vielen Dank, dass du %s und seine Add-ons benutzt!" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Vielen Dank, dass du %s benutzt!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Du hast dich bereits für unser Nutzungs-Tracking entschieden, was uns " +"hilft, %s weiter zu verbessern." + +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "schicke mir Sicherheits- und Funktionsupdates, Bildungsinhalte und Angebote." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Nein" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "schicke mir %sKEINE%s Sicherheits- und Funktionsupdates, Bildungsinhalte und Angebote." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"schicke mir %sKEINE%s Sicherheits- und Funktionsupdates, Bildungsinhalte " +"und Angebote." -#: includes/class-freemius.php:26055 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "Aufgrund der neuen %sEU Datenschutzgrundverordnung (DSGVO)%s Compliance-Anforderungen ist es erforderlich, dass du deine ausdrückliche Zustimmung gibst und damit bestätigst, dass du an Bord bist :-)" +#: includes/class-freemius.php:25924 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" +"Aufgrund der neuen %sEU Datenschutzgrundverordnung (DSGVO)%s " +"Compliance-Anforderungen ist es erforderlich, dass du deine ausdrückliche " +"Zustimmung gibst und damit bestätigst, dass du an Bord bist :-)" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Bitte lass uns wissen, wenn du möchtest, dass wir dich für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote kontaktieren:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Bitte lass uns wissen, wenn du möchtest, dass wir dich für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote kontaktieren:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "Der Lizenzschlüssel ist leer." -#: includes/class-fs-plugin-updater.php206, +#: includes/class-fs-plugin-updater.php210, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Lizenz erneuern" -#: includes/class-fs-plugin-updater.php211, +#: includes/class-fs-plugin-updater.php215, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Lizenz kaufen" -#: includes/class-fs-plugin-updater.php331, -#: includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Es ist ein %s von %s verfügbar." -#: includes/class-fs-plugin-updater.php333, -#: includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "neue Beta Version" -#: includes/class-fs-plugin-updater.php334, -#: includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "neue Version" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "Wichtiger Hinweis zum Upgrade:" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installiere das Plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Es kann keine Verbindung zum Dateisystem hergestellt werden. Bitte bestätige deine Anmeldedaten." +msgstr "" +"Es kann keine Verbindung zum Dateisystem hergestellt werden. Bitte " +"bestätige deine Anmeldedaten." -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Das Remote-Plugin-Paket enthält keinen Ordner mit dem gewünschten Slug und das Umbenennen hat nicht funktioniert." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Das Remote-Plugin-Paket enthält keinen Ordner mit dem gewünschten Slug und " +"das Umbenennen hat nicht funktioniert." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Mehr kaufen" -#: includes/fs-plugin-info-dialog.php543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Kaufen" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Starte mein kostenloses %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Update der kostenlosen Version jetzt installieren" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Update jetzt installieren" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Kostenlose Version jetzt installieren" #: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, -#: templates/auto-installation.php111, templates/account/partials/addon.php370, -#: templates/account/partials/addon.php:423 +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Jetzt installieren" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Neueste kostenlose Version herunterladen" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Update der kostenlosen Version jetzt installieren" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, -#: templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Neuester Download" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Update jetzt installieren" #: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Aktiviere dieses Add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Kostenlose Version freischalten" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, #: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Aktivieren" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Beschreibung" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, +#: includes/fs-plugin-info-dialog.php1002, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Screenshots" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Bewertungen" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Weitere Notizen" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Funktionen & Preise" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Plugin installieren" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Beste" - -#: includes/fs-plugin-info-dialog.php1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Monatlich" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Jährlich" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Lebenslang" -#: includes/fs-plugin-info-dialog.php1158, -#: includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Abgerechnet wird %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Jährlich" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Einmal" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Einzelplatzlizenz" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Unbegrenzt Lizenzen" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Bis zu %s Seiten" -#: includes/fs-plugin-info-dialog.php1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mtl." - -#: includes/fs-plugin-info-dialog.php1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "Jahr" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Preis" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "%s speichern" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Keine Verpflichtung für %s - jederzeit kündigen" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Nach deinem kostenlosen %s zahlst du so wenig wie %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, -#: templates/debug.php232, templates/debug.php269, templates/debug.php514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autor" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "vor %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Benötigt WordPress Version" -#: includes/fs-plugin-info-dialog.php1350, -#: includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s oder höher" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Kompatibel bis zu" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "Requires PHP Version" +msgstr "Benötigt PHP Version" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Heruntergeladen" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s mal" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s mal" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" -msgstr "WordPress.org Plugin Seite" +msgstr "WordPress.org-Plugin-Seite" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" -msgstr "Plugin Homepage" +msgstr "Plugin-Homepage" -#: includes/fs-plugin-info-dialog.php1414, -#: includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Für dieses Plugin spenden" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Durchschnittliche Bewertung" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "basierend auf %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s Bewertung" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s Bewertungen" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s Stern" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s Sterne" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Klicke, um Bewertungen zu sehen, die eine Bewertung von %s abgegeben haben" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Mitwirkende" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." +msgstr "Dieses Plugin erfordert eine neuere Version von PHP." -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "" +"Klicke hier, um mehr über die " +"Aktualisierung von PHP zu erfahren." -#: includes/fs-plugin-info-dialog.php1540, -#: includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Warnung" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." -msgstr "Dieses Plugin wurde nicht mit deiner derzeitigen Version von WordPress getestet." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Dieses Plugin wurde als nicht kompatibel mit deiner Version von WordPress " +"markiert." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Dieses Plugin wurde als nicht kompatibel mit deiner Version von WordPress markiert." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." +msgstr "" +"Dieses Plugin wurde nicht mit deiner derzeitigen Version von WordPress " +"getestet." -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Das kostenpflichtige Add-on muss auf Freemius veröffentlicht werden." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Das Add-on muss auf WordPress.org oder Freemius bereitgestellt werden." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Neuere Version (%s) Installiert" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Neuere kostenlose Version (%s) Installiert" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Aktuellste Version installiert" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Aktuellste kostenlose Version installiert" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Neuere Version (%s) Installiert" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Neuere kostenlose Version (%s) Installiert" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, #: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Downgrade deinen Plan" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, #: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Das Abonnement kündigen" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und deine %2$s Planz-Lizenz wird in %3$s auslaufen." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und " +"deine %2$s Planz-Lizenz wird in %3$s auslaufen." -#: templates/account.php119, templates/forms/subscription-cancellation.php100, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, #: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Bitte beachte, dass wir nicht in der Lage sind, veraltete Preise für Verlängerungen/neue Abonnements nach einer Kündigung beizubehalten. Wenn du dich dafür entscheidest, das Abonnement in Zukunft nach einer Preiserhöhung, die in der Regel einmal im Jahr stattfindet, manuell zu verlängern, wird dir der aktualisierte Preis berechnet." +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Bitte beachte, dass wir nicht in der Lage sind, veraltete Preise für " +"Verlängerungen/neue Abonnements nach einer Kündigung beizubehalten. Wenn du " +"dich dafür entscheidest, das Abonnement in Zukunft nach einer " +"Preiserhöhung, die in der Regel einmal im Jahr stattfindet, manuell zu " +"verlängern, wird dir der aktualisierte Preis berechnet." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Wenn du die Testversion abbrichst, wird der Zugang zu allen Premium-Funktionen sofort gesperrt. Bist du sicher?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Wenn du die Testversion abbrichst, wird der Zugang zu allen " +"Premium-Funktionen sofort gesperrt. Bist du sicher?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, #: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Du kannst immer noch alle %s-Funktionen nutzen, aber du wirst keinen Zugang zu %s-Sicherheits- und Funktionsupdates und keinen Support bekommen." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Du kannst immer noch alle %s-Funktionen nutzen, aber du wirst keinen Zugang " +"zu %s-Sicherheits- und Funktionsupdates und keinen Support bekommen." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, #: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Sobald deine Lizenz abläuft, kannst du die Free Version immer noch nutzen, aber du hast KEINEN Zugriff auf die %s Features." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Sobald deine Lizenz abläuft, kannst du die Free Version immer noch nutzen, " +"aber du hast KEINEN Zugriff auf die %s Features." -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, +#: templates/account.php120, #: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "Aktiviere %s Plan" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "Verlängert sich automatisch in %s" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "Läuft in %s ab" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synchronisiere Lizenz" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Testversion abbrechen" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Plan ändern" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php137, templates/add-ons.php246, +#: templates/account.php133, templates/add-ons.php246, #: templates/plugin-info/features.php72, #: templates/account/partials/addon.php52, #: templates/account/partials/site.php:33 msgid "Free" msgstr "Kostenlos" -#: templates/account.php139, templates/debug.php408, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "Paket-Plan" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Kostenlose Testversion" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Konto Details" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Debugging starten" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Debugging stoppen" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Debugging starten" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Abrechnung & Rechnungen" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Lizenz deaktivieren" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Bist du sicher, dass du fortfahren willst?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Abonnement kündigen" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Name" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "E-Mail" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Benutzer-ID" -#: templates/account.php420, templates/account.php738, -#: templates/account.php789, templates/debug.php267, templates/debug.php400, -#: templates/debug.php511, templates/debug.php570, templates/debug.php619, -#: templates/debug.php698, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Webseiten-ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Keine ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, -#: templates/debug.php515, templates/debug.php574, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Öffentlicher Schlüssel" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, -#: templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Geheimer Schlüssel" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Kein geheimer Schlüssel" - -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Testversion" - -#: templates/account.php498, templates/debug.php627, +#: templates/account.php494, templates/debug.php631, #: templates/account/partials/site.php:262 msgid "License Key" msgstr "Lizenzschlüssel" -#: templates/account.php:529 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 +msgid "Trial" +msgstr "Testversion" + +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Am Beta Programm teilnehmen" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "nicht geprüft" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Abgelaufen" +#: templates/account.php:600 +msgid "Free version" +msgstr "Kostenlose Version" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Premium Version" -#: templates/account.php:604 -msgid "Free version" -msgstr "Kostenlose Version" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Abgelaufen" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "E-Mail verifizieren" -#: templates/account.php:630 +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Benutzer ändern" + +#: templates/account.php:676 +msgid "What is your %s?" +msgstr "Wie lautet dein(e) %s?" + +#: templates/account.php:626 msgid "Download %s Version" msgstr "Download %s Version" -#: templates/account.php:646 +#: templates/account.php:642 msgid "Download Paid Version" msgstr "Bezahlte Version herunterladen" -#: templates/account.php664, templates/account.php927, -#: templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Anzeigen" - -#: templates/account.php:680 -msgid "What is your %s?" -msgstr "Wie lautet dein(e) %s?" +#: templates/account.php:713 +msgid "Sites" +msgstr "Webseiten" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" +#: templates/account.php:726 +msgid "Search by address" +msgstr "Suche über die Adresse" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Benutzer ändern" - -#: templates/account.php:717 -msgid "Sites" -msgstr "Webseiten" - -#: templates/account.php:730 -msgid "Search by address" -msgstr "Suche über die Adresse" - -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresse" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Lizenz" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Lizenz" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Verstecken" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, +#: templates/account.php939, templates/forms/data-debug-mode.php31, #: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Verarbeitung" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "Erhalte Updates für aktuelle Beta-Versionen von %s." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Abbruch von %s" -#: templates/account.php1004, templates/account.php1021, +#: templates/account.php1000, templates/account.php1017, #: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "teste" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Stoppe %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "Abonnement" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Wenn du deine Lizenz deaktivierst, werden alle Premium-Funktionen gesperrt, aber du kannst die Lizenz auf einer anderen Seite aktivieren. Bist du sicher, dass du fortfahren möchtest?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"Wenn du deine Lizenz deaktivierst, werden alle Premium-Funktionen gesperrt, " +"aber du kannst die Lizenz auf einer anderen Seite aktivieren. Bist du " +"sicher, dass du fortfahren möchtest?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "Deaktivieren des White-Label-Modus" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "Aktivieren des White-Label-Modus" @@ -1564,26 +1605,15 @@ msgid "Add Ons for %s" msgstr "Add-Ons für %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Wir konnten die Liste der Add-ons nicht laden. Es ist wahrscheinlich ein Problem auf unserer Seite, bitte versuche es in ein paar Minuten wieder." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Aktiv" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installiert" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Verwerfen" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" +"Wir konnten die Liste der Add-ons nicht laden. Es ist wahrscheinlich ein " +"Problem auf unserer Seite, bitte versuche es in ein paar Minuten wieder." #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s s" @@ -1592,198 +1622,221 @@ msgid "Automatic Installation" msgstr "Automatische Installation" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Ein automatischer Download und die Installation von %s (kostenpflichtige Version) von %s wird in %s starten. Wenn du es manuell machen möchtest - klicke jetzt auf den Abbruch-Button." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Ein automatischer Download und die Installation von %s (kostenpflichtige " +"Version) von %s wird in %s starten. Wenn du es manuell machen möchtest - " +"klicke jetzt auf den Abbruch-Button." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "Der Installationsprozess hat begonnen und kann ein paar Minuten dauern. Bitte warte, bis er abgeschlossen ist - lade diese Seite nicht neu." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"Der Installationsprozess hat begonnen und kann ein paar Minuten dauern. " +"Bitte warte, bis er abgeschlossen ist - lade diese Seite nicht neu." #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "Installation abbrechen" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Kasse" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "PCI-konform" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Vielen Dank für die Aktualisierung auf %1$s v %2$s!" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" msgstr "Verpasse nie wieder ein wichtiges Update" -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Vielen Dank für die Aktualisierung auf %1$s v %2$s!" - -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Erlauben & Fortfahren" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Aktivierungsmail erneut senden" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" +"Wir haben dieses Opt-in eingeführt, damit du kein wichtiges Update verpasst " +"und uns hilfst, die Kompatibilität von %smit deiner Website zu verbessern " +"und uns auf das zu konzentrieren, was du benötigst." -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Danke %s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" +"Melden dich an, um E-Mail-Benachrichtigungen für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten " +"und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" +"Wenn du das überspringst, ist das in Ordnung! %1$swird immer noch " +"funktionieren." #: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." +msgstr "" +"Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten " +"und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. " +"Dies wird uns helfen, die Kompatibilität mit deiner Website zu verbessern " +"und uns auf das zu konzentrieren, was du benötigst." + +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "Willkommen bei %s! Um loszulegen, gib bitte deinen Lizenzschlüssel ein:" -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. Dies wird uns helfen, die Kompatibilität mit deiner Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. Dies wird uns helfen, die Kompatibilität von %smit Ihrer Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Wir haben dieses Opt-in eingeführt, damit du kein wichtiges Update verpasst und uns hilfst, die Kompatibilität von %smit deiner Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Melden dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Aktivierungsmail erneut senden" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Danke %s!" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "Wenn Du das überspringst, ist das in Ordnung! %1$swird immer noch funktionieren." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "" +"Du solltest eine Bestätigungs-E-Mail für %s an deine Mailbox unter %s " +"erhalten. Bitte stelle sicher, dass du auf die Schaltfläche in dieser " +"E-Mail an %s klickst." -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Wir freuen uns, dir die Freemius Netzwerk-Integration vorstellen zu können." #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Während des Update-Prozesses haben wir %d Site(s) entdeckt, die noch auf eine Lizenzaktivierung warten." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Während des Update-Prozesses haben wir %s Site(s) im Netzwerk entdeckt, die " +"noch deine Aufmerksamkeit benötigen." -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Wenn du das %s auf diesen Seiten nutzen möchtest, gib bitte deinen Lizenzschlüssel unten ein und klicke auf den Aktivierungsbutton." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Während des Update-Prozesses haben wir %d Site(s) entdeckt, die noch auf " +"eine Lizenzaktivierung warten." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Wenn du das %s auf diesen Seiten nutzen möchtest, gib bitte deinen " +"Lizenzschlüssel unten ein und klicke auf den Aktivierungsbutton." -#: templates/connect.php:289 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "Bezahlte Funktionen von %s" -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternativ kannst du auch diesen Schritt überspringen und die Lizenz später auf der Netzwerk-Kontoseite deines %s aktivieren." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Während des Update-Prozesses haben wir %s Site(s) im Netzwerk entdeckt, die noch deine Aufmerksamkeit benötigen." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Alternativ kannst du auch diesen Schritt überspringen und die Lizenz später " +"auf der Netzwerk-Kontoseite deines %s aktivieren." -#: templates/connect.php305, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "Lizenzschlüssel" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Du kannst deinen Lizenzschlüssel nicht finden?" -#: templates/connect.php371, templates/connect.php695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Überspringen" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "An die Website Admins delegieren" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Wenn du es anklickst, wird diese Entscheidung an die Administratoren der Seite delegiert." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" +"Wenn du es anklickst, wird diese Entscheidung an die Administratoren der " +"Seite delegiert." -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" msgstr "Lizenzprobleme?" -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "Für die Bereitstellung von Sicherheits- und Funktionsupdates sowie die Lizenzverwaltung muss %s" - -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "Dies wird es %s ermöglichen" -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Du hast keinen Lizenzschlüssel?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" +"Für die Bereitstellung von Sicherheits- und Funktionsupdates sowie die " +"Lizenzverwaltung muss %s" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Hast du einen Lizenzschlüssel?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Du hast keinen Lizenzschlüssel?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius ist unser Dienstleister für Lizenzierung und Software-Updates" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Datenschutzrichtlinie" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Lizenzvertrag" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Allgemeine Geschäftsbedingungen" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "E-Mail senden" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Aktivieren von" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Lizenzvertrag" #: templates/contact.php:78 msgid "Contact" msgstr "Kontakt" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Aus" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "An" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Fehlersuche" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, -#: templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Aktionen" @@ -1831,11 +1884,6 @@ msgstr "Schlüssel" msgid "Value" msgstr "Wert" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versionen" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK Pfad" @@ -1856,20 +1904,15 @@ msgstr "Plugins" msgid "Themes" msgstr "Themes" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "URL" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Titel" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius Status" @@ -1882,141 +1925,117 @@ msgstr "Netzwerk Blog" msgid "Network User" msgstr "Netzwerk Benutzer" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Verbunden" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blockiert" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Trial Promotion simulieren" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "Netzwerk Upgrade simulieren" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installationen" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Webseiten" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" msgstr "Lizenz ID" -#: templates/debug.php493, templates/debug.php599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Löschen" - -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Add-Ons von Modul %s" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Benutzer" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Verifiziert" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "%s Lizenzen" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" -msgstr "Plugin ID" +msgstr "Plugin-ID" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "Plan ID" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "Kontingent" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Aktiviert" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Blockieren" -#: templates/debug.php626, templates/debug.php697, +#: templates/debug.php630, templates/debug.php701, #: templates/debug/logger.php:22 msgid "Type" msgstr "Typ" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Verfalls" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Alle Arten" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "Alle Anfragen" -#: templates/debug.php672, templates/debug.php701, +#: templates/debug.php676, templates/debug.php705, #: templates/debug/logger.php:25 msgid "File" msgstr "Datei" -#: templates/debug.php673, templates/debug.php699, +#: templates/debug.php677, templates/debug.php703, #: templates/debug/logger.php:23 msgid "Function" msgstr "Position" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "Prozess-ID" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, +#: templates/debug.php680, templates/debug.php704, #: templates/debug/logger.php:24 msgid "Message" msgstr "Nachricht" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filter" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Download" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Zeitstempel" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Sichere HTTPS %s Seite, die von einer externen Domain geladen wird" @@ -2025,12 +2044,6 @@ msgstr "Sichere HTTPS %s Seite, die von einer externen Domain geladen wird" msgid "Support" msgstr "Unterstützung" -#: includes/debug/class-fs-debug-bar-panel.php48, -#: templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -2047,17 +2060,29 @@ msgstr "Ungültige Klon-Auflösungsaktion." msgid "products" msgstr "Produkte" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s wurde in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie von %3$s ist." - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie von %3$s:%1$s ist" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" +"Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir " +"festgestellt haben, dass %2$s eine exakte Kopie von %3$s:%1$s ist" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie dieser Seiten ist:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" +"Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir " +"festgestellt haben, dass %2$s eine exakte Kopie dieser Seiten ist:%3$s%1$s" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" +"%1$s wurde in den abgesicherten Modus versetzt, weil wir festgestellt " +"haben, dass %2$s eine exakte Kopie von %3$s ist." #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" @@ -2068,8 +2093,12 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "Ist %2$s ein Duplikat von %4$s?" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Ja, %2$s ist ein Duplikat von %4$s für Test-, Staging- oder Entwicklungszwecke." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." +msgstr "" +"Ja, %2$s ist ein Duplikat von %4$s für Test-, Staging- oder " +"Entwicklungszwecke." #: includes/managers/class-fs-clone-manager.php:1257 msgid "Long-Term Duplicate" @@ -2084,7 +2113,9 @@ msgid "Is %2$s the new home of %4$s?" msgstr "Wurde %4$s auf %2$s umgezogen?" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "Ja, %%2$s ersetzt %%4$s. Ich möchte meine %s von %%4$s nach %%2$s migrieren." #: includes/managers/class-fs-clone-manager.php1271, @@ -2120,11 +2151,6 @@ msgstr "Das erfordert eine Lizenzaktivierung." msgid "New Website" msgstr "Neue Website" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produkte" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "Du hast diese Website, %s, als temporäres Duplikat von %s markiert." @@ -2134,121 +2160,152 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "Du hast diese Website, %s, als temporäres Duplikat dieser Websites markiert" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatische Sicherheits- und Funktionsupdates und kostenpflichtige Funktionen funktionieren bis %s (oder bis zum Ablauf deiner Lizenz, je nachdem, was zuerst eintritt)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "Die %s" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" +"%s automatische Sicherheits- und Funktionsupdates und kostenpflichtige " +"Funktionen funktionieren bis %s (oder bis zum Ablauf deiner Lizenz, je " +"nachdem, was zuerst eintritt)." #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" -msgstr "Die folgenden Produkte" +msgstr "Die folgenden Produkte ihre" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "Wenn dies ein langfristiges Webseiten-Duplikat ist, dann brauchst du nach %s bitte %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "Wenn dies ein langfristiges Duplikat ist, dann musst du nach %s bitte %s." #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" msgstr "Lizenz hier aktivieren" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" msgstr "Grundlegende Website-Informationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "URL und Titel der Homepage, WP- und PHP-Versionen und Sprache der Website" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "Um zusätzliche Funktionen bereitzustellen, die für deine Website relevant sind, Inkompatibilitäten von WordPress- oder PHP-Versionen, die deine Website beschädigen können, und um zu erkennen, welche Sprachen und Regionen für %sübersetzt und angepasst werden sollten." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "" +"Um zusätzliche Funktionen bereitzustellen, die für deine Website relevant " +"sind, Inkompatibilitäten von WordPress- oder PHP-Versionen, die deine " +"Website beschädigen können, und um zu erkennen, welche Sprachen und " +"Regionen für %sübersetzt und angepasst werden sollten." -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" msgstr "Grundlegende %sInformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "Aktuelle %sund SDK-Versionen und falls aktiv oder deinstalliert" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" msgstr "Grundlegende Lizenzen anzeigen" -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "Damit du verwalten und kontrollieren kannst, wo die Lizenz aktiviert wird, und um sicherzustellen, dass %s Sicherheits- und Funktionsupdates nur an von dir autorisierte Websites geliefert werden." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "" +"Damit du verwalten und kontrollieren kannst, wo die Lizenz aktiviert wird, " +"und um sicherzustellen, dass %s Sicherheits- und Funktionsupdates nur an " +"von dir autorisierte Websites geliefert werden." -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" msgstr "%s Status anzeigen" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "Ist aktiv, deaktiviert oder deinstalliert" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." msgstr "So kannst du die Lizenz wiederverwenden, wenn die %s nicht mehr aktiv ist." -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" msgstr "Diagnoseinformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php317, -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "optional" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" msgstr "WordPress- und PHP-Versionen, Sprache und Titel der Website" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "Um zu vermeiden, dass deine Website aufgrund von WordPress- oder PHP-Versionsinkompatibilitäten beschädigt wird, und um zu erkennen, welche Sprachen und Regionen von %sübersetzt und angepasst werden sollten." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "" +"Um zu vermeiden, dass deine Website aufgrund von WordPress- oder " +"PHP-Versionsinkompatibilitäten beschädigt wird, und um zu erkennen, welche " +"Sprachen und Regionen von %sübersetzt und angepasst werden sollten." -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" msgstr "Liste der Plugins & Themes anzeigen" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" msgstr "Namen, Slugs, Versionen und ob aktiv oder nicht" -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "Um die Kompatibilität zu gewährleisten und Konflikte mit deinen installierten Plugins und Themes zu vermeiden." +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "" +"Um die Kompatibilität zu gewährleisten und Konflikte mit deinen " +"installierten Plugins und Themes zu vermeiden." -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" msgstr "Grundlegende Profilinformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" msgstr "Dein WordPress-Benutzer: Vor- und Nachname und E-Mail-Adresse" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Verpasse keine wichtigen Updates, erhalte Sicherheitswarnungen, bevor sie öffentlich bekannt werden, und erhalte Benachrichtigungen über Sonderangebote und tolle neue Funktionen." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "" +"Verpasse keine wichtigen Updates, erhalte Sicherheitswarnungen, bevor sie " +"öffentlich bekannt werden, und erhalte Benachrichtigungen über " +"Sonderangebote und tolle neue Funktionen." -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Newsletter" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Updates, Ankündigungen, Marketing, kein Spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Update" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Abrechnung" @@ -2261,8 +2318,8 @@ msgstr "Geschäftsname" msgid "Tax / VAT ID" msgstr "Steuer-/Umsatzsteuer-ID" -#: templates/account/billing.php42, templates/account/billing.php43, -#: templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresse Zeile %d" @@ -2310,17 +2367,6 @@ msgstr "Betrag" msgid "Invoice" msgstr "Rechnung" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Abmelden" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Anmelden" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2337,11 +2383,6 @@ msgstr "Code" msgid "Length" msgstr "Länge" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Pfad" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Hauptteil" @@ -2362,24 +2403,18 @@ msgstr "Ende" msgid "Log" msgstr "Log" -#. translators: %s: time period (e.g. In "2 hours") #: templates/debug/plugins-themes-sync.php18, #: templates/debug/scheduled-crons.php:91 +#. translators: %s: time period (e.g. In "2 hours") msgid "In %s" msgstr "In %s" -#. translators: %s: time period (e.g. "2 hours" ago) #: templates/debug/plugins-themes-sync.php20, #: templates/debug/scheduled-crons.php:93 +#. translators: %s: time period (e.g. "2 hours" ago) msgid "%s ago" msgstr "vor %s" -#: templates/debug/plugins-themes-sync.php21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "s" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Plugins & Themes Sync" @@ -2413,144 +2448,191 @@ msgstr "Cron Typ" msgid "Next" msgstr "Nächste" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Nicht auslaufend" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Bewirb dich, um ein Affiliate zu werden" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Dein Affiliate-Antrag für %s wurde angenommen! Logge dich in deinen Affiliate-Bereich ein unter: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Aufgrund eines Verstoßes gegen unsere Partnerschaftsbedingungen haben wir " +"beschlossen, dein Affiliate-Konto vorübergehend zu sperren. Wenn du Fragen " +"hast, wende dich bitte an den Support." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Wir werden deine Angaben in den nächsten 14 Tagen überprüfen und uns mit weiteren Informationen bei dir melden." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Leider " +"haben wir uns an dieser Stelle entschieden, deine Bewerbung abzulehnen. " +"Bitte versuche es in 30 Tagen erneut." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Dein Mitgliedskonto wurde vorübergehend gesperrt." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Leider haben wir uns an dieser Stelle entschieden, deine Bewerbung abzulehnen. Bitte versuche es in 30 Tagen erneut." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Wir " +"werden deine Angaben in den nächsten 14 Tagen überprüfen und uns mit " +"weiteren Informationen bei dir melden." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Aufgrund eines Verstoßes gegen unsere Partnerschaftsbedingungen haben wir beschlossen, dein Affiliate-Konto vorübergehend zu sperren. Wenn du Fragen hast, wende dich bitte an den Support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Dein Affiliate-Antrag für %s wurde angenommen! Logge dich in deinen " +"Affiliate-Bereich ein unter: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Magst du %s? Werde unser Botschafter/Affiliate und verdiene Geld ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Empfehle neue Kunden an unsere %s und verdiene %s Provision für jeden erfolgreichen Verkauf, den du vermittelst!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Empfehle neue Kunden an unsere %s und verdiene %s Provision für jeden " +"erfolgreichen Verkauf, den du vermittelst!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Programm Zusammenfassung" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s Provision, wenn ein Kunde eine neue Lizenz kauft." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Erhalte Provisionen für automatisierte Abonnementverlängerungen." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s Tracking-Cookie nach dem ersten Besuch, um das Ertragspotenzial zu maximieren." +msgstr "" +"%s Tracking-Cookie nach dem ersten Besuch, um das Ertragspotenzial zu " +"maximieren." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Unbegrenzte Provisionen." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s Mindestauszahlungsbetrag." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Die Auszahlungen erfolgen in USD und werden monatlich über PayPal abgewickelt." +msgstr "" +"Die Auszahlungen erfolgen in USD und werden monatlich über PayPal " +"abgewickelt." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Da wir 30 Tage für mögliche Rückzahlungen reservieren, zahlen wir nur Provisionen aus, die älter als 30 Tage sind." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Da wir 30 Tage für mögliche Rückzahlungen reservieren, zahlen wir nur " +"Provisionen aus, die älter als 30 Tage sind." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "E-Mail-Adresse" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Vollständiger Name" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal Konto E-Mail Adresse" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Wo wirst du %s bewerben?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Gib die Domain deiner Website oder anderer Webseiten an, von denen aus du planst, %s zu bewerben." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Gib die Domain deiner Website oder anderer Webseiten an, von denen aus du " +"planst, %s zu bewerben." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Weitere Domain hinzufügen" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Extra Domains" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Zusätzliche Domains, von denen aus du das Produkt vermarkten wirst." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promotion Methoden" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Soziale Medien (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobile Apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Website-, E-Mail- und Social Media-Statistiken (optional)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Du kannst uns gerne relevante Statistiken über deine Website oder soziale Medien zur Verfügung stellen, z.B. monatliche Besuche der Website, Anzahl der E-Mail-Abonnenten, Follower, etc. (wir werden diese Informationen vertraulich behandeln)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Du kannst uns gerne relevante Statistiken über deine Website oder soziale " +"Medien zur Verfügung stellen, z.B. monatliche Besuche der Website, Anzahl " +"der E-Mail-Abonnenten, Follower, etc. (wir werden diese Informationen " +"vertraulich behandeln)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Wie wirst du uns bewerben?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Bitte gib Details an, wie du beabsichtigst, %s zu fördern (bitte sei so genau wie möglich)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Bitte gib Details an, wie du beabsichtigst, %s zu fördern (bitte sei so " +"genau wie möglich)." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Abbrechen" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Partner werden" @@ -2559,8 +2641,14 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "Bitte gib den Lizenzschlüssel ein, um den Debug-Modus zu aktivieren:" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Um in den Debug-Modus zu gelangen, gib bitte den geheimen Schlüssel des Lizenzinhabers (UserID = %d) ein, den du in deinem \"Mein Profil\"-Bereich deines \"Benutzer Dashboards\" findest:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Um in den Debug-Modus zu gelangen, gib bitte den geheimen Schlüssel des " +"Lizenzinhabers (UserID = %d) ein, den du in deinem \"Mein Profil\"-Bereich " +"deines \"Benutzer Dashboards\" findest:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2574,12 +2662,6 @@ msgstr "Benutzerschlüssel" msgid "Email address update" msgstr "E-Mail-Adresse aktualisieren" -#: templates/forms/email-address-update.php33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Schließen" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "Gib die neue E-Mail-Adresse ein" @@ -2618,25 +2700,39 @@ msgid "Update" msgstr "Update" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Bitte gib den Lizenzschlüssel ein, den du in der E-Mail direkt nach dem Kauf erhalten hast:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Bitte gib den Lizenzschlüssel ein, den du in der E-Mail direkt nach dem " +"Kauf erhalten hast:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Lizenz aktualisieren" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "%1$swird regelmäßig wichtige Lizenzdaten an %2$ssenden, um nach Sicherheits- und Funktionsaktualisierungen zu suchen und die Gültigkeit Ihrer Lizenz zu überprüfen." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "" +"%1$swird regelmäßig wichtige Lizenzdaten an %2$ssenden, um nach " +"Sicherheits- und Funktionsaktualisierungen zu suchen und die Gültigkeit " +"Ihrer Lizenz zu überprüfen." #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Zustimmen & Lizenz aktivieren" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "Mit dem Konto des Lizenzinhabers verknüpfen." +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "Automatische Updates beibehalten" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "Kommunikation" @@ -2657,58 +2753,81 @@ msgstr "Weiter teilen" msgid "Extensions" msgstr "Erweiterungen" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Behalten automatische Updates bei" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Es ist eine neue Version von %s verfügbar." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s, um auf die Sicherheits- und Funktionsupdates der Version %s und den Support zuzugreifen." +msgstr "" +" %s, um auf die Sicherheits- und Funktionsupdates der Version %s und den " +"Support zuzugreifen." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Neue Version verfügbar" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Schließen" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Lizenzschlüssel senden" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Gib die E-Mail-Adresse ein, die Du beim Kauf verwendet hast, und wir senden Dir den Lizenzschlüssel erneut zu." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "" +"Gib die E-Mail-Adresse ein, die du beim Kauf verwendet hast, und wir senden " +"Dir den Lizenzschlüssel erneut zu." #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Gib unten die E-Mail-Adresse ein, die du für das Upgrade verwendet hast und wir senden dir den Lizenzschlüssel erneut zu." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Gib unten die E-Mail-Adresse ein, die du für das Upgrade verwendet hast und " +"wir senden dir den Lizenzschlüssel erneut zu." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Wenn du das %s deaktivierst oder deinstallierst, wird die Lizenz hier automatisch deaktiviert und du kannst sie auf einer anderen Seite verwenden." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Wenn du das %s deaktivierst oder deinstallierst, wird die Lizenz hier " +"automatisch deaktiviert und du kannst sie auf einer anderen Seite verwenden." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Für den Fall, dass du NICHT vorhast, diesen %s auf dieser Seite (oder einer anderen Seite) zu verwenden - möchtest du den %s auch löschen?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Für den Fall, dass du NICHT vorhast, diesen %s auf dieser Seite (oder einer " +"anderen Seite) zu verwenden - möchtest du den %s auch löschen?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Abbrechen %s - Ich benötige keine Sicherheits- und Funktionsupdates mehr und auch keinen Support für %s, da ich nicht vorhabe, das %s auf dieser oder einer anderen Seite zu verwenden." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Abbrechen %s - Ich benötige keine Sicherheits- und Funktionsupdates mehr " +"und auch keinen Support für %s, da ich nicht vorhabe, das %s auf dieser " +"oder einer anderen Seite zu verwenden." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "%s bitte nicht stornieren - ich bin immer noch daran interessiert, Sicherheits- und Funktionsupdates zu erhalten, sowie den Support kontaktieren zu können." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"%s bitte nicht stornieren - ich bin immer noch daran interessiert, " +"Sicherheits- und Funktionsupdates zu erhalten, sowie den Support " +"kontaktieren zu können." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Sobald deine Lizenz abläuft, kannst du das %s nicht mehr nutzen. Es sei denn, du aktivierst ihn erneut mit einer gültigen Premiumlizenz." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Sobald deine Lizenz abläuft, kannst du das %s nicht mehr nutzen. Es sei " +"denn, du aktivierst ihn erneut mit einer gültigen Premiumlizenz." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2724,16 +2843,32 @@ msgid "Cancel %s & Proceed" msgstr "%s abbrechen & fortfahren" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Du bist einen Klick davon entfernt, deinen kostenlosen %1$s-Tage Testzeitraum des %2$s-Planes zu starten." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Du bist einen Klick davon entfernt, deinen kostenlosen %1$s-Tage " +"Testzeitraum des %2$s-Planes zu starten." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Um die Richtlinien von WordPress.org einzuhalten, bitten wir dich vor dem Start der Testversion um ein Opt-In mit deinen Benutzer- und nicht sensiblen Seite-Informationen, damit %s regelmäßig Daten an %s senden kann, um nach Versions-Updates zu suchen und um deine Testversion zu validieren." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Um die Richtlinien von WordPress.org einzuhalten, bitten wir dich vor dem " +"Start der Testversion um ein Opt-In mit deinen Benutzer- und nicht " +"sensiblen Seite-Informationen, damit %s regelmäßig Daten an %s senden kann, " +"um nach Versions-Updates zu suchen und um deine Testversion zu validieren." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" -msgstr "Indem du den Benutzer wechselst, stimmst du zu, den Besitz des Accounts zu übertragen:" +msgstr "" +"Indem du den Benutzer wechselst, stimmst du zu, den Besitz des Accounts zu " +"übertragen:" #: templates/forms/user-change.php:28 msgid "I Agree - Change User" @@ -2755,14 +2890,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Aktiviere die Lizenz auf allen Seiten im Netzwerk." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Auf alle Seiten im Netzwerk anwenden." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Aktiviere die Lizenz auf allen ausstehenden Seiten." @@ -2771,6 +2898,14 @@ msgstr "Aktiviere die Lizenz auf allen ausstehenden Seiten." msgid "Apply on all pending sites." msgstr "Auf alle ausstehenden Webseiten anwenden." +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Aktiviere die Lizenz auf allen Seiten im Netzwerk." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Auf alle Seiten im Netzwerk anwenden." + #: templates/partials/network-activation.php45, #: templates/partials/network-activation.php:79 msgid "allow" @@ -2786,8 +2921,8 @@ msgstr "delegiere" msgid "skip" msgstr "überspringen" -#: templates/plugin-info/description.php72, -#: templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klicke, um den Screenshot in voller Größe zu sehen %d" @@ -2799,40 +2934,54 @@ msgstr "Unbegrenzte Updates" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s übrig" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Letzte Lizenz" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und deine %s Plan-Lizenz wird in %s auslaufen." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Abgebrochen" +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." +msgstr "" +"%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und " +"deine %s Plan-Lizenz wird in %s auslaufen." #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Kein Ablaufdatum" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "Durch das Trennen der Website werden zuvor geteilte Diagnosedaten über %1$sgelöscht und sind für %2$snicht mehr sichtbar." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Abgebrochen" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Das Trennen der Website wird %sdauerhaft aus dem Konto Ihres Benutzer-Dashboards entfernt." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" +"Das Trennen der Website wird %sdauerhaft aus dem Konto Ihres " +"Benutzer-Dashboards entfernt." + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "" +"Durch das Trennen der Website werden zuvor geteilte Diagnosedaten über " +"%1$sgelöscht und sind für %2$snicht mehr sichtbar." #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "Wenn Du stattdessen das Abonnement deines %1$sPlans kündigen möchtest, navigiere bitte zu %2$sund kündige es dort." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "" +"Wenn Du stattdessen das Abonnement deines %1$sPlans kündigen möchtest, " +"navigiere bitte zu %2$sund kündige es dort." #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" @@ -2856,7 +3005,9 @@ msgstr "Abonnement" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Wir entschuldigen uns für die Unannehmlichkeiten und sind hier, um zu helfen, wenn du uns eine Chance gibst." +msgstr "" +"Wir entschuldigen uns für die Unannehmlichkeiten und sind hier, um zu " +"helfen, wenn du uns eine Chance gibst." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2897,7 +3048,7 @@ msgstr "Schnelles Feedback" #: templates/forms/deactivation/form.php:134 msgid "If you have a moment, please let us know why you are %s" -msgstr "Wenn du einen Moment Zeit hast, lass uns bitte wissen, warum du das Plugin deaktivieren willst:" +msgstr "Wenn du einen Moment Zeit hast, lass uns bitte wissen, warum du %s" #: templates/forms/deactivation/form.php:134 msgid "deactivating" @@ -2928,5 +3079,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Klicke hier, um das Plugin anonym zu nutzen" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Du hast es vielleicht übersehen: du musst keine Daten teilen und kannst einfach das Opt-in %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Du hast es vielleicht übersehen: du musst keine Daten teilen und kannst " +"einfach das Opt-in %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Hurra" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s kann nicht ohne %s laufen." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s kann ohne das Plugin nicht laufen." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Hoppla" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hallo" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "ein Lizenzschlüssel" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "die Installationsanleitung" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "Hier klicken" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "die Support-E-Mail-Adresse des Produkts" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Schließe jetzt die \"%s\"-Aktivierung ab" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Preise" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Preis" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Direkt an" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Test" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Herzlichen Glückwunsch" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Kopf hoch" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Starte die kostenlose Testversion" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Kaufen" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Upgrade" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Downgrade" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Bearbeiten" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Anzeigen" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Verstecken" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Überspringen" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Löschen" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Abmelden" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Anmelden" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Neueste kostenlose Version herunterladen" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Neuester Download" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beschreibung" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Bewertungen" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Weitere Notizen" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Funktionen & Preise" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s Plan" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Beste" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Monatlich" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Jährlich" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Jährlich" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Einmal" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Abgerechnet wird %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mtl." + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "Jahr" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Version" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "vor %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchronisiere Lizenz" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Kein geheimer Schlüssel" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Lizenz" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Aktiv" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installiert" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Verwerfen" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hallo %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "E-Mail senden" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Aktivieren von" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Aus" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "An" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Fehlersuche" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK Versionen" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Verbunden" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Blockiert" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "Unbekannt" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Webseiten" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Verfalls" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produkte" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "Die %s" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Pfad" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "s" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Schließen" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Schließen" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s übrig" diff --git a/languages/freemius-en.mo b/languages/freemius-en.mo deleted file mode 100644 index cecd3e5d587e4dc43d74a4039ed3e3f7fa022251..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68519 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 T(}F>MtsuV;s`9xO2>Sm321YV( diff --git a/languages/freemius-en.po b/languages/freemius-en.po deleted file mode 100644 index 927e10cb8..000000000 --- a/languages/freemius-en.po +++ /dev/null @@ -1,2936 +0,0 @@ -# Copyright (C) 2022 freemius -# This file is distributed under the same license as the freemius package. -msgid "" -msgstr "" -"Project-Id-Version: freemius\n" -"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Vova Feldman \n" -"Language-Team: Freemius Team \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" - -#: includes/class-freemius.php:1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." - -#: includes/class-freemius.php:1751 -msgid "Would you like to proceed with the update?" -msgstr "Would you like to proceed with the update?" - -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." - -#: includes/class-freemius.php:1978, includes/fs-plugin-info-dialog.php:1517 -msgid "Error" -msgstr "Error" - -#: includes/class-freemius.php:2424 -msgid "I found a better %s" -msgstr "I found a better %s" - -#: includes/class-freemius.php:2426 -msgid "What's the %s's name?" -msgstr "What's the %s's name?" - -#: includes/class-freemius.php:2432 -msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "It's a temporary %s - I'm troubleshooting an issue" - -#: includes/class-freemius.php:2434 -msgid "Deactivation" -msgstr "Deactivation" - -#: includes/class-freemius.php:2435 -msgid "Theme Switch" -msgstr "Theme Switch" - -#: includes/class-freemius.php:2444, templates/forms/resend-key.php:24, -#: templates/forms/user-change.php:29 -msgid "Other" -msgstr "Other" - -#: includes/class-freemius.php:2452 -msgid "I no longer need the %s" -msgstr "I no longer need the %s" - -#: includes/class-freemius.php:2459 -msgid "I only needed the %s for a short period" -msgstr "I only needed the %s for a short period" - -#: includes/class-freemius.php:2465 -msgid "The %s broke my site" -msgstr "The %s broke my site" - -#: includes/class-freemius.php:2472 -msgid "The %s suddenly stopped working" -msgstr "The %s suddenly stopped working" - -#: includes/class-freemius.php:2482 -msgid "I can't pay for it anymore" -msgstr "I can't pay for it anymore" - -#: includes/class-freemius.php:2484 -msgid "What price would you feel comfortable paying?" -msgstr "What price would you feel comfortable paying?" - -#: includes/class-freemius.php:2490 -msgid "I don't like to share my information with you" -msgstr "I don't like to share my information with you" - -#: includes/class-freemius.php:2511 -msgid "The %s didn't work" -msgstr "The %s didn't work" - -#: includes/class-freemius.php:2521 -msgid "I couldn't understand how to make it work" -msgstr "I couldn't understand how to make it work" - -#: includes/class-freemius.php:2529 -msgid "The %s is great, but I need specific feature that you don't support" -msgstr "The %s is great, but I need specific feature that you don't support" - -#: includes/class-freemius.php:2531 -msgid "What feature?" -msgstr "What feature?" - -#: includes/class-freemius.php:2535 -msgid "The %s is not working" -msgstr "The %s is not working" - -#: includes/class-freemius.php:2537 -msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Kindly share what didn't work so we can fix it for future users..." - -#: includes/class-freemius.php:2541 -msgid "It's not what I was looking for" -msgstr "It's not what I was looking for" - -#: includes/class-freemius.php:2543 -msgid "What you've been looking for?" -msgstr "What you've been looking for?" - -#: includes/class-freemius.php:2547 -msgid "The %s didn't work as expected" -msgstr "The %s didn't work as expected" - -#: includes/class-freemius.php:2549 -msgid "What did you expect?" -msgstr "What did you expect?" - -#: includes/class-freemius.php:3637, templates/debug.php:24 -msgid "Freemius Debug" -msgstr "Freemius Debug" - -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "I don't know what is cURL or how to install it, help me!" - -#: includes/class-freemius.php:4446 -msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." - -#: includes/class-freemius.php:4453 -msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Yes - do your thing" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "No - just deactivate" - -#: includes/class-freemius.php:4608, includes/class-freemius.php:5139, -#: includes/class-freemius.php:6334, includes/class-freemius.php:13998, -#: includes/class-freemius.php:14747, includes/class-freemius.php:18513, -#: includes/class-freemius.php:18618, includes/class-freemius.php:18795, -#: includes/class-freemius.php:21078, includes/class-freemius.php:21456, -#: includes/class-freemius.php:21470, includes/class-freemius.php:22158, -#: includes/class-freemius.php:23174, includes/class-freemius.php:23304, -#: includes/class-freemius.php:23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oops" - -#: includes/class-freemius.php:4683 -msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." - -#: includes/class-freemius.php:5108 -msgid "You have purchased a %s license." -msgstr "You have purchased a %s license." - -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." - -#: includes/class-freemius.php:5122, includes/class-freemius.php:6031, -#: includes/class-freemius.php:17889, includes/class-freemius.php:17900, -#: includes/class-freemius.php:21347, includes/class-freemius.php:21738, -#: includes/class-freemius.php:21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Yee-haw" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s cannot run without %s." - -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s cannot run without the plugin." - -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" - -#: includes/class-freemius.php:6000 -msgid "Premium %s version was successfully activated." -msgstr "Premium %s version was successfully activated." - -#: includes/class-freemius.php:6012, includes/class-freemius.php:7992 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "You have a %s license." - -#: includes/class-freemius.php:6317 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." - -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." - -#: includes/class-freemius.php:6330, templates/add-ons.php:186, -#: templates/account/partials/addon.php:386 -msgid "More information about %s" -msgstr "More information about %s" - -#: includes/class-freemius.php:6331 -msgid "Purchase License" -msgstr "Purchase License" - -#: includes/class-freemius.php:7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." - -#: includes/class-freemius.php:7322 -msgid "start the trial" -msgstr "start the trial" - -#: includes/class-freemius.php:7323, templates/connect.php:220 -msgid "complete the opt-in" -msgstr "complete the opt-in" - -#: includes/class-freemius.php:7456 -msgid "You are just one step away - %s" -msgstr "You are just one step away - %s" - -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Complete \"%s\" Activation Now" - -#: includes/class-freemius.php:7541 -msgid "We made a few tweaks to the %s, %s" -msgstr "We made a few tweaks to the %s, %s" - -#: includes/class-freemius.php:7545 -msgid "Opt in to make \"%s\" better!" -msgstr "Opt in to make \"%s\" better!" - -#: includes/class-freemius.php:7991 -msgid "The upgrade of %s was successfully completed." -msgstr "The upgrade of %s was successfully completed." - -#: includes/class-freemius.php:10709, -#: includes/class-fs-plugin-updater.php:1090, -#: includes/class-fs-plugin-updater.php:1305, -#: includes/class-fs-plugin-updater.php:1312, -#: templates/auto-installation.php:32 -msgid "Add-On" -msgstr "Add-On" - -#: includes/class-freemius.php:10711, templates/account.php:411, -#: templates/account.php:419, templates/debug.php:395, templates/debug.php:615 -msgid "Plugin" -msgstr "Plugin" - -#: includes/class-freemius.php:10712, templates/account.php:412, -#: templates/account.php:420, templates/debug.php:395, templates/debug.php:615, -#: templates/forms/deactivation/form.php:107 -msgid "Theme" -msgstr "Theme" - -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "An unknown error has occurred while trying to toggle the license's white-label mode." - -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." - -#: includes/class-freemius.php:13836, -#: templates/account/partials/disconnect-button.php:84 -msgid "User Dashboard" -msgstr "User Dashboard" - -#: includes/class-freemius.php:13837 -msgid "revert it now" -msgstr "revert it now" - -#: includes/class-freemius.php:13895 -msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "An unknown error has occurred while trying to set the user's beta mode." - -#: includes/class-freemius.php:13969 -msgid "Invalid new user ID or email address." -msgstr "Invalid new user ID or email address." - -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." - -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." - -#: includes/class-freemius.php:14007 -msgid "Change Ownership" -msgstr "Change Ownership" - -#: includes/class-freemius.php:14614 -msgid "Invalid site details collection." -msgstr "Invalid site details collection." - -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "We couldn't find your email address in the system, are you sure it's the right address?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" - -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." - -#: includes/class-freemius.php:15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Buy a license now" - -#: includes/class-freemius.php:15160, -#: templates/forms/premium-versions-upgrade-handler.php:46 -msgid "Renew your license now" -msgstr "Renew your license now" - -#: includes/class-freemius.php:15164 -msgid "%s to access version %s security & feature updates, and support." -msgstr "%s to access version %s security & feature updates, and support." - -#: includes/class-freemius.php:17871 -msgid "%s opt-in was successfully completed." -msgstr "%s opt-in was successfully completed." - -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Your account was successfully activated with the %s plan." - -#: includes/class-freemius.php:17896, includes/class-freemius.php:21803 -msgid "Your trial has been successfully started." -msgstr "Your trial has been successfully started." - -#: includes/class-freemius.php:18511, includes/class-freemius.php:18616, -#: includes/class-freemius.php:18793 -msgid "Couldn't activate %s." -msgstr "Couldn't activate %s." - -#: includes/class-freemius.php:18512, includes/class-freemius.php:18617, -#: includes/class-freemius.php:18794 -msgid "Please contact us with the following message:" -msgstr "Please contact us with the following message:" - -#: includes/class-freemius.php:18613, templates/forms/data-debug-mode.php:162 -msgid "An unknown error has occurred." -msgstr "An unknown error has occurred." - -#: includes/class-freemius.php:19153, includes/class-freemius.php:24542 -msgid "Upgrade" -msgstr "Upgrade" - -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Start Trial" - -#: includes/class-freemius.php:19161 -msgid "Pricing" -msgstr "Pricing" - -#: includes/class-freemius.php:19241, includes/class-freemius.php:19243 -msgid "Affiliation" -msgstr "Affiliation" - -#: includes/class-freemius.php:19271, includes/class-freemius.php:19273, -#: templates/account.php:264, templates/debug.php:362 -msgid "Account" -msgstr "Account" - -#: includes/class-freemius.php:19287, includes/class-freemius.php:19289, -#: includes/customizer/class-fs-customizer-support-section.php:60 -msgid "Contact Us" -msgstr "Contact Us" - -#: includes/class-freemius.php:19300, includes/class-freemius.php:19302, -#: includes/class-freemius.php:24556, templates/account.php:134, -#: templates/account/partials/addon.php:49 -msgid "Add-Ons" -msgstr "Add-Ons" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php:19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Pricing" - -#: includes/class-freemius.php:19551, -#: includes/customizer/class-fs-customizer-support-section.php:67 -msgid "Support Forum" -msgstr "Support Forum" - -#: includes/class-freemius.php:20572 -msgid "Your email has been successfully verified - you are AWESOME!" -msgstr "Your email has been successfully verified - you are AWESOME!" - -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Right on" - -#: includes/class-freemius.php:21079 -msgid "seems like the key you entered doesn't match our records." -msgstr "seems like the key you entered doesn't match our records." - -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." - -#: includes/class-freemius.php:21338 -msgid "Your %s Add-on plan was successfully upgraded." -msgstr "Your %s Add-on plan was successfully upgraded." - -#: includes/class-freemius.php:21340 -msgid "%s Add-on was successfully purchased." -msgstr "%s Add-on was successfully purchased." - -#: includes/class-freemius.php:21343 -msgid "Download the latest version" -msgstr "Download the latest version" - -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" - -#: includes/class-freemius.php:21455, includes/class-freemius.php:21469, -#: includes/class-freemius.php:21938, includes/class-freemius.php:22027 -msgid "Error received from the server:" -msgstr "Error received from the server:" - -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." - -#: includes/class-freemius.php:21700, includes/class-freemius.php:21943, -#: includes/class-freemius.php:21998, includes/class-freemius.php:22105 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." - -#: includes/class-freemius.php:21714, templates/account.php:136, -#: templates/add-ons.php:250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Trial" - -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s." - -#: includes/class-freemius.php:21723, includes/class-freemius.php:21782 -msgid "Please contact us here" -msgstr "Please contact us here" - -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Your plan was successfully activated." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Your plan was successfully upgraded." - -#: includes/class-freemius.php:21752 -msgid "Your plan was successfully changed to %s." -msgstr "Your plan was successfully changed to %s." - -#: includes/class-freemius.php:21768 -msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Your license has expired. You can still continue using the free %s forever." - -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." - -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Your license has been cancelled. If you think it's a mistake, please contact support." - -#: includes/class-freemius.php:21791 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." - -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Your free trial has expired. You can still continue using all our free features." - -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." - -#: includes/class-freemius.php:21934 -msgid "It looks like the license could not be activated." -msgstr "It looks like the license could not be activated." - -#: includes/class-freemius.php:21976 -msgid "Your license was successfully activated." -msgstr "Your license was successfully activated." - -#: includes/class-freemius.php:22002 -msgid "It looks like your site currently doesn't have an active license." -msgstr "It looks like your site currently doesn't have an active license." - -#: includes/class-freemius.php:22026 -msgid "It looks like the license deactivation failed." -msgstr "It looks like the license deactivation failed." - -#: includes/class-freemius.php:22055 -msgid "Your %s license was successfully deactivated." -msgstr "Your %s license was successfully deactivated." - -#: includes/class-freemius.php:22056 -msgid "Your license was successfully deactivated, you are back to the %s plan." -msgstr "Your license was successfully deactivated, you are back to the %s plan." - -#: includes/class-freemius.php:22059 -msgid "O.K" -msgstr "O.K" - -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." - -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." - -#: includes/class-freemius.php:22163 -msgid "You are already running the %s in a trial mode." -msgstr "You are already running the %s in a trial mode." - -#: includes/class-freemius.php:22174 -msgid "You already utilized a trial before." -msgstr "You already utilized a trial before." - -#: includes/class-freemius.php:22188 -msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Plan %s do not exist, therefore, can't start a trial." - -#: includes/class-freemius.php:22199 -msgid "Plan %s does not support a trial period." -msgstr "Plan %s does not support a trial period." - -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "None of the %s's plans supports a trial period." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" - -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." - -#: includes/class-freemius.php:22314 -msgid "Your %s free trial was successfully cancelled." -msgstr "Your %s free trial was successfully cancelled." - -#: includes/class-freemius.php:22641 -msgid "Version %s was released." -msgstr "Version %s was released." - -#: includes/class-freemius.php:22641 -msgid "Please download %s." -msgstr "Please download %s." - -#: includes/class-freemius.php:22648 -msgid "the latest %s version here" -msgstr "the latest %s version here" - -#: includes/class-freemius.php:22653 -msgid "New" -msgstr "New" - -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Seems like you got the latest release." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "You are all good!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." - -#: includes/class-freemius.php:23202 -msgid "Site successfully opted in." -msgstr "Site successfully opted in." - -#: includes/class-freemius.php:23203, includes/class-freemius.php:24252 -msgid "Awesome" -msgstr "Awesome" - -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." - -#: includes/class-freemius.php:23220 -msgid "Thank you!" -msgstr "Thank you!" - -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnostic data will no longer be sent from %s to %s." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." - -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." - -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval." - -#: includes/class-freemius.php:23398 -msgid "%s is the new owner of the account." -msgstr "%s is the new owner of the account." - -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Congrats" - -#: includes/class-freemius.php:23417 -msgid "Please provide your full name." -msgstr "Please provide your full name." - -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Your name was successfully updated." - -#: includes/class-freemius.php:23483 -msgid "You have successfully updated your %s." -msgstr "You have successfully updated your %s." - -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." - -#: includes/class-freemius.php:23545 -msgid "Click here" -msgstr "Click here" - -#: includes/class-freemius.php:23582, includes/class-freemius.php:23579 -msgid "Bundle" -msgstr "Bundle" - -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Heads up" - -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" - -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." - -#: includes/class-freemius.php:24300 -msgid "No commitment for %s days - cancel anytime!" -msgstr "No commitment for %s days - cancel anytime!" - -#: includes/class-freemius.php:24301 -msgid "No credit card required" -msgstr "No credit card required" - -#: includes/class-freemius.php:24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Start free trial" - -#: includes/class-freemius.php:24385 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" - -#: includes/class-freemius.php:24394 -msgid "Learn more" -msgstr "Learn more" - -#: includes/class-freemius.php:24580, templates/account.php:573, -#: templates/account.php:725, templates/connect.php:223, -#: templates/connect.php:449, -#: includes/managers/class-fs-clone-manager.php:1295, -#: templates/forms/license-activation.php:27, -#: templates/account/partials/addon.php:326 -msgid "Activate License" -msgstr "Activate License" - -#: includes/class-freemius.php:24581, templates/account.php:667, -#: templates/account.php:724, templates/account/partials/addon.php:327, -#: templates/account/partials/site.php:273 -msgid "Change License" -msgstr "Change License" - -#: includes/class-freemius.php:24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Opt Out" - -#: includes/class-freemius.php:24690, includes/class-freemius.php:24696, -#: templates/account/partials/site.php:49, -#: templates/account/partials/site.php:170 -msgid "Opt In" -msgstr "Opt In" - -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Activate %s features" - -#: includes/class-freemius.php:24954 -msgid "Please follow these steps to complete the upgrade" -msgstr "Please follow these steps to complete the upgrade" - -#: includes/class-freemius.php:24958 -msgid "Download the latest %s version" -msgstr "Download the latest %s version" - -#: includes/class-freemius.php:24962 -msgid "Upload and activate the downloaded version" -msgstr "Upload and activate the downloaded version" - -#: includes/class-freemius.php:24964 -msgid "How to upload and activate?" -msgstr "How to upload and activate?" - -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." - -#: includes/class-freemius.php:25267 -msgid "Auto installation only works for opted-in users." -msgstr "Auto installation only works for opted-in users." - -#: includes/class-freemius.php:25277, includes/class-freemius.php:25310, -#: includes/class-fs-plugin-updater.php:1284, -#: includes/class-fs-plugin-updater.php:1298 -msgid "Invalid module ID." -msgstr "Invalid module ID." - -#: includes/class-freemius.php:25286, includes/class-fs-plugin-updater.php:1320 -msgid "Premium version already active." -msgstr "Premium version already active." - -#: includes/class-freemius.php:25293 -msgid "You do not have a valid license to access the premium version." -msgstr "You do not have a valid license to access the premium version." - -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." - -#: includes/class-freemius.php:25318, includes/class-fs-plugin-updater.php:1319 -msgid "Premium add-on version already installed." -msgstr "Premium add-on version already installed." - -#: includes/class-freemius.php:25672 -msgid "View paid features" -msgstr "View paid features" - -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Thank you so much for using %s and its add-ons!" - -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "Thank you so much for using %s!" - -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." - -#: includes/class-freemius.php:26005 -msgid "Thank you so much for using our products!" -msgstr "Thank you so much for using our products!" - -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." - -#: includes/class-freemius.php:26025 -msgid "%s and its add-ons" -msgstr "%s and its add-ons" - -#: includes/class-freemius.php:26034 -msgid "Products" -msgstr "Products" - -#: includes/class-freemius.php:26041, templates/connect.php:324 -msgid "Yes" -msgstr "Yes" - -#: includes/class-freemius.php:26042, templates/connect.php:325 -msgid "send me security & feature updates, educational content and offers." -msgstr "send me security & feature updates, educational content and offers." - -#: includes/class-freemius.php:26043, templates/connect.php:330 -msgid "No" -msgstr "No" - -#: includes/class-freemius.php:26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "do %sNOT%s send me security & feature updates, educational content and offers." - -#: includes/class-freemius.php:26055 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" - -#: includes/class-freemius.php:26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" - -#: includes/class-freemius.php:26339 -msgid "License key is empty." -msgstr "License key is empty." - -#: includes/class-fs-plugin-updater.php:206, -#: templates/forms/premium-versions-upgrade-handler.php:57 -msgid "Renew license" -msgstr "Renew license" - -#: includes/class-fs-plugin-updater.php:211, -#: templates/forms/premium-versions-upgrade-handler.php:58 -msgid "Buy license" -msgstr "Buy license" - -#: includes/class-fs-plugin-updater.php:331, -#: includes/class-fs-plugin-updater.php:364 -msgid "There is a %s of %s available." -msgstr "There is a %s of %s available." - -#: includes/class-fs-plugin-updater.php:333, -#: includes/class-fs-plugin-updater.php:369 -msgid "new Beta version" -msgstr "new Beta version" - -#: includes/class-fs-plugin-updater.php:334, -#: includes/class-fs-plugin-updater.php:370 -msgid "new version" -msgstr "new version" - -#: includes/class-fs-plugin-updater.php:393 -msgid "Important Upgrade Notice:" -msgstr "Important Upgrade Notice:" - -#: includes/class-fs-plugin-updater.php:1349 -msgid "Installing plugin: %s" -msgstr "Installing plugin: %s" - -#: includes/class-fs-plugin-updater.php:1390 -msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Unable to connect to the filesystem. Please confirm your credentials." - -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." - -#: includes/fs-plugin-info-dialog.php:542 -msgid "Purchase More" -msgstr "Purchase More" - -#: includes/fs-plugin-info-dialog.php:543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Purchase" - -#: includes/fs-plugin-info-dialog.php:547 -msgid "Start my free %s" -msgstr "Start my free %s" - -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Install Free Version Update Now" - -#: includes/fs-plugin-info-dialog.php:746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Install Update Now" - -#: includes/fs-plugin-info-dialog.php:755 -msgid "Install Free Version Now" -msgstr "Install Free Version Now" - -#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, -#: templates/auto-installation.php:111, -#: templates/account/partials/addon.php:370, -#: templates/account/partials/addon.php:423 -msgid "Install Now" -msgstr "Install Now" - -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Download Latest Free Version" - -#: includes/fs-plugin-info-dialog.php:773, templates/account.php:114, -#: templates/add-ons.php:37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Download Latest" - -#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, -#: templates/account/partials/addon.php:361, -#: templates/account/partials/addon.php:417 -msgid "Activate this add-on" -msgstr "Activate this add-on" - -#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:446 -msgid "Activate Free Version" -msgstr "Activate Free Version" - -#: includes/fs-plugin-info-dialog.php:791, templates/account.php:138, -#: templates/add-ons.php:330, templates/account/partials/addon.php:53 -msgid "Activate" -msgstr "Activate" - -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Description" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php:1006, -#: templates/plugin-info/description.php:55 -msgid "Screenshots" -msgstr "Screenshots" - -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Reviews" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Other Notes" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Features & Pricing" - -#: includes/fs-plugin-info-dialog.php:1034 -msgid "Plugin Install" -msgstr "Plugin Install" - -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Best" - -#: includes/fs-plugin-info-dialog.php:1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Monthly" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Annual" - -#: includes/fs-plugin-info-dialog.php:1144 -msgid "Lifetime" -msgstr "Lifetime" - -#: includes/fs-plugin-info-dialog.php:1158, -#: includes/fs-plugin-info-dialog.php:1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Billed %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Annually" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Once" - -#: includes/fs-plugin-info-dialog.php:1168 -msgid "Single Site License" -msgstr "Single Site License" - -#: includes/fs-plugin-info-dialog.php:1170 -msgid "Unlimited Licenses" -msgstr "Unlimited Licenses" - -#: includes/fs-plugin-info-dialog.php:1172 -msgid "Up to %s Sites" -msgstr "Up to %s Sites" - -#: includes/fs-plugin-info-dialog.php:1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mo" - -#: includes/fs-plugin-info-dialog.php:1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "year" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Price" - -#: includes/fs-plugin-info-dialog.php:1291 -msgid "Save %s" -msgstr "Save %s" - -#: includes/fs-plugin-info-dialog.php:1301 -msgid "No commitment for %s - cancel anytime" -msgstr "No commitment for %s - cancel anytime" - -#: includes/fs-plugin-info-dialog.php:1304 -msgid "After your free %s, pay as little as %s" -msgstr "After your free %s, pay as little as %s" - -#: includes/fs-plugin-info-dialog.php:1315 -msgid "Details" -msgstr "Details" - -#: includes/fs-plugin-info-dialog.php:1319, templates/account.php:125, -#: templates/debug.php:232, templates/debug.php:269, templates/debug.php:514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Author" - -#: includes/fs-plugin-info-dialog.php:1333 -msgid "Last Updated" -msgstr "Last Updated" - -#: includes/fs-plugin-info-dialog.php:1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s ago" - -#: includes/fs-plugin-info-dialog.php:1347 -msgid "Requires WordPress Version" -msgstr "Requires WordPress Version" - -#: includes/fs-plugin-info-dialog.php:1350, -#: includes/fs-plugin-info-dialog.php:1370 -msgid "%s or higher" -msgstr "%s or higher" - -#: includes/fs-plugin-info-dialog.php:1358 -msgid "Compatible up to" -msgstr "Compatible up to" - -#: includes/fs-plugin-info-dialog.php:1366 -msgid "Requires PHP Version" -msgstr "Requires PHP Version" - -#: includes/fs-plugin-info-dialog.php:1379 -msgid "Downloaded" -msgstr "Downloaded" - -#: includes/fs-plugin-info-dialog.php:1383 -msgid "%s time" -msgstr "%s time" - -#: includes/fs-plugin-info-dialog.php:1385 -msgid "%s times" -msgstr "%s times" - -#: includes/fs-plugin-info-dialog.php:1396 -msgid "WordPress.org Plugin Page" -msgstr "WordPress.org Plugin Page" - -#: includes/fs-plugin-info-dialog.php:1405 -msgid "Plugin Homepage" -msgstr "Plugin Homepage" - -#: includes/fs-plugin-info-dialog.php:1414, -#: includes/fs-plugin-info-dialog.php:1498 -msgid "Donate to this plugin" -msgstr "Donate to this plugin" - -#: includes/fs-plugin-info-dialog.php:1421 -msgid "Average Rating" -msgstr "Average Rating" - -#: includes/fs-plugin-info-dialog.php:1428 -msgid "based on %s" -msgstr "based on %s" - -#: includes/fs-plugin-info-dialog.php:1432 -msgid "%s rating" -msgstr "%s rating" - -#: includes/fs-plugin-info-dialog.php:1434 -msgid "%s ratings" -msgstr "%s ratings" - -#: includes/fs-plugin-info-dialog.php:1449 -msgid "%s star" -msgstr "%s star" - -#: includes/fs-plugin-info-dialog.php:1451 -msgid "%s stars" -msgstr "%s stars" - -#: includes/fs-plugin-info-dialog.php:1463 -msgid "Click to see reviews that provided a rating of %s" -msgstr "Click to see reviews that provided a rating of %s" - -#: includes/fs-plugin-info-dialog.php:1476 -msgid "Contributors" -msgstr "Contributors" - -#: includes/fs-plugin-info-dialog.php:1517 -msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." - -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." - -#: includes/fs-plugin-info-dialog.php:1540, -#: includes/fs-plugin-info-dialog.php:1542 -msgid "Warning" -msgstr "Warning" - -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." -msgstr "This plugin has not been tested with your current version of WordPress." - -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "This plugin has not been marked as compatible with your version of WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 -msgid "Paid add-on must be deployed to Freemius." -msgstr "Paid add-on must be deployed to Freemius." - -#: includes/fs-plugin-info-dialog.php:1562 -msgid "Add-on must be deployed to WordPress.org or Freemius." -msgstr "Add-on must be deployed to WordPress.org or Freemius." - -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Newer Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:1591 -msgid "Latest Version Installed" -msgstr "Latest Version Installed" - -#: includes/fs-plugin-info-dialog.php:1592 -msgid "Latest Free Version Installed" -msgstr "Latest Free Version Installed" - -#: templates/account.php:115, templates/forms/subscription-cancellation.php:96, -#: templates/account/partials/addon.php:31, -#: templates/account/partials/site.php:313 -msgid "Downgrading your plan" -msgstr "Downgrading your plan" - -#: templates/account.php:116, templates/forms/subscription-cancellation.php:97, -#: templates/account/partials/addon.php:32, -#: templates/account/partials/site.php:314 -msgid "Cancelling the subscription" -msgstr "Cancelling the subscription" - -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:118, templates/forms/subscription-cancellation.php:99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." - -#: templates/account.php:119, -#: templates/forms/subscription-cancellation.php:100, -#: templates/account/partials/addon.php:35, -#: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." - -#: templates/account.php:120, -#: templates/forms/subscription-cancellation.php:106, -#: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" - -#: templates/account.php:121, -#: templates/forms/subscription-cancellation.php:101, -#: templates/account/partials/addon.php:37, -#: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." - -#: templates/account.php:122, -#: templates/forms/subscription-cancellation.php:102, -#: templates/account/partials/addon.php:38, -#: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." - -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:124, -#: templates/account/partials/activate-license-button.php:31, -#: templates/account/partials/addon.php:40 -msgid "Activate %s Plan" -msgstr "Activate %s Plan" - -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:127, templates/account/partials/addon.php:43, -#: templates/account/partials/site.php:293 -msgid "Auto renews in %s" -msgstr "Auto renews in %s" - -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:129, templates/account/partials/addon.php:45, -#: templates/account/partials/site.php:295 -msgid "Expires in %s" -msgstr "Expires in %s" - -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sync License" - -#: templates/account.php:131, templates/account/partials/addon.php:46 -msgid "Cancel Trial" -msgstr "Cancel Trial" - -#: templates/account.php:132, templates/account/partials/addon.php:47 -msgid "Change Plan" -msgstr "Change Plan" - -#: templates/account.php:133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php:135, templates/account/partials/addon.php:50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php:137, templates/add-ons.php:246, -#: templates/plugin-info/features.php:72, -#: templates/account/partials/addon.php:52, -#: templates/account/partials/site.php:33 -msgid "Free" -msgstr "Free" - -#: templates/account.php:139, templates/debug.php:408, -#: includes/customizer/class-fs-customizer-upsell-control.php:110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 -msgid "Bundle Plan" -msgstr "Bundle Plan" - -#: templates/account.php:272 -msgid "Free Trial" -msgstr "Free Trial" - -#: templates/account.php:283 -msgid "Account Details" -msgstr "Account Details" - -#: templates/account.php:290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Start Debug" - -#: templates/account.php:292 -msgid "Stop Debug" -msgstr "Stop Debug" - -#: templates/account.php:299 -msgid "Billing & Invoices" -msgstr "Billing & Invoices" - -#: templates/account.php:322, templates/account/partials/addon.php:236, -#: templates/account/partials/deactivate-license-button.php:35 -msgid "Deactivate License" -msgstr "Deactivate License" - -#: templates/account.php:345, templates/forms/subscription-cancellation.php:125 -msgid "Are you sure you want to proceed?" -msgstr "Are you sure you want to proceed?" - -#: templates/account.php:345, templates/account/partials/addon.php:260 -msgid "Cancel Subscription" -msgstr "Cancel Subscription" - -#: templates/account.php:374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php:389, templates/debug.php:571 -msgid "Name" -msgstr "Name" - -#: templates/account.php:395, templates/debug.php:572 -msgid "Email" -msgstr "Email" - -#: templates/account.php:402, templates/debug.php:406, templates/debug.php:621 -msgid "User ID" -msgstr "User ID" - -#: templates/account.php:420, templates/account.php:738, -#: templates/account.php:789, templates/debug.php:267, templates/debug.php:400, -#: templates/debug.php:511, templates/debug.php:570, templates/debug.php:619, -#: templates/debug.php:698, templates/account/payments.php:35, -#: templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php:427 -msgid "Site ID" -msgstr "Site ID" - -#: templates/account.php:430 -msgid "No ID" -msgstr "No ID" - -#: templates/account.php:435, templates/debug.php:274, templates/debug.php:409, -#: templates/debug.php:515, templates/debug.php:574, -#: templates/account/partials/site.php:228 -msgid "Public Key" -msgstr "Public Key" - -#: templates/account.php:441, templates/debug.php:410, templates/debug.php:516, -#: templates/debug.php:575, templates/account/partials/site.php:241 -msgid "Secret Key" -msgstr "Secret Key" - -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "No Secret" - -#: templates/account.php:471, templates/account/partials/site.php:120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Trial" - -#: templates/account.php:498, templates/debug.php:627, -#: templates/account/partials/site.php:262 -msgid "License Key" -msgstr "License Key" - -#: templates/account.php:529 -msgid "Join the Beta program" -msgstr "Join the Beta program" - -#: templates/account.php:535 -msgid "not verified" -msgstr "not verified" - -#: templates/account.php:544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Expired" - -#: templates/account.php:602 -msgid "Premium version" -msgstr "Premium version" - -#: templates/account.php:604 -msgid "Free version" -msgstr "Free version" - -#: templates/account.php:616 -msgid "Verify Email" -msgstr "Verify Email" - -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Download %s Version" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Download Paid Version" - -#: templates/account.php:664, templates/account.php:927, -#: templates/account/partials/site.php:250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Show" - -#: templates/account.php:680 -msgid "What is your %s?" -msgstr "What is your %s?" - -#: templates/account.php:688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Edit" - -#: templates/account.php:693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Change User" - -#: templates/account.php:717 -msgid "Sites" -msgstr "Sites" - -#: templates/account.php:730 -msgid "Search by address" -msgstr "Search by address" - -#: templates/account.php:739, templates/debug.php:403 -msgid "Address" -msgstr "Address" - -#: templates/account.php:740 -msgid "License" -msgstr "License" - -#: templates/account.php:741 -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "License" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Hide" - -#: templates/account.php:943, templates/forms/data-debug-mode.php:31, -#: templates/forms/deactivation/form.php:358, -#: templates/forms/deactivation/form.php:389 -msgid "Processing" -msgstr "Processing" - -#: templates/account.php:946 -msgid "Get updates for bleeding edge Beta versions of %s." -msgstr "Get updates for bleeding edge Beta versions of %s." - -#: templates/account.php:1004 -msgid "Cancelling %s" -msgstr "Cancelling %s" - -#: templates/account.php:1004, templates/account.php:1021, -#: templates/forms/subscription-cancellation.php:27, -#: templates/forms/deactivation/form.php:178 -msgid "trial" -msgstr "trial" - -#: templates/account.php:1019, templates/forms/deactivation/form.php:195 -msgid "Cancelling %s..." -msgstr "Cancelling %s..." - -#: templates/account.php:1022, -#: templates/forms/subscription-cancellation.php:28, -#: templates/forms/deactivation/form.php:179 -msgid "subscription" -msgstr "subscription" - -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" - -#: templates/account.php:1110 -msgid "Disabling white-label mode" -msgstr "Disabling white-label mode" - -#: templates/account.php:1111 -msgid "Enabling white-label mode" -msgstr "Enabling white-label mode" - -#: templates/add-ons.php:38 -msgid "View details" -msgstr "View details" - -#: templates/add-ons.php:48 -msgid "Add Ons for %s" -msgstr "Add Ons for %s" - -#: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Active" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installed" - -#: templates/admin-notice.php:13, templates/forms/license-activation.php:243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/auto-installation.php:45 -msgid "%s sec" -msgstr "%s sec" - -#: templates/auto-installation.php:83 -msgid "Automatic Installation" -msgstr "Automatic Installation" - -#: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." - -#: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." - -#: templates/auto-installation.php:109 -msgid "Cancel Installation" -msgstr "Cancel Installation" - -#: templates/checkout.php:180 -msgid "Checkout" -msgstr "Checkout" - -#: templates/checkout.php:180 -msgid "PCI compliant" -msgstr "PCI compliant" - -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," - -#: templates/connect.php:189 -msgid "Never miss an important update" -msgstr "Never miss an important update" - -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" - -#: templates/connect.php:207 -msgid "Allow & Continue" -msgstr "Allow & Continue" - -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Re-send activation email" - -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Thanks %s!" - -#: templates/connect.php:227 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "Welcome to %s! To get started, please enter your license key:" - -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." - -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." - -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "If you skip this, that's okay! %1$s will still work just fine." - -#: templates/connect.php:282 -msgid "We're excited to introduce the Freemius network-level integration." -msgstr "We're excited to introduce the Freemius network-level integration." - -#: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "During the update process we detected %d site(s) that are still pending license activation." - -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." - -#: templates/connect.php:289 -msgid "%s's paid features" -msgstr "%s's paid features" - -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." - -#: templates/connect.php:305, templates/forms/data-debug-mode.php:35, -#: templates/forms/license-activation.php:42 -msgid "License key" -msgstr "License key" - -#: templates/connect.php:308, templates/forms/license-activation.php:22 -msgid "Can't find your license key?" -msgstr "Can't find your license key?" - -#: templates/connect.php:371, templates/connect.php:695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Skip" - -#: templates/connect.php:374 -msgid "Delegate to Site Admins" -msgstr "Delegate to Site Admins" - -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "If you click it, this decision will be delegated to the sites administrators." - -#: templates/connect.php:401 -msgid "License issues?" -msgstr "License issues?" - -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "For delivery of security & feature updates, and license management, %s needs to" - -#: templates/connect.php:430 -msgid "This will allow %s to" -msgstr "This will allow %s to" - -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Don't have a license key?" - -#: templates/connect.php:448 -msgid "Have a license key?" -msgstr "Have a license key?" - -#: templates/connect.php:456 -msgid "Freemius is our licensing and software updates engine" -msgstr "Freemius is our licensing and software updates engine" - -#: templates/connect.php:459 -msgid "Privacy Policy" -msgstr "Privacy Policy" - -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "License Agreement" - -#: templates/connect.php:461 -msgid "Terms of Service" -msgstr "Terms of Service" - -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Sending email" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activating" - -#: templates/contact.php:78 -msgid "Contact" -msgstr "Contact" - -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Off" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "On" - -#: templates/debug.php:24 -msgid "SDK" -msgstr "SDK" - -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php:58, templates/debug.php:279, templates/debug.php:411, -#: templates/debug.php:576 -msgid "Actions" -msgstr "Actions" - -#: templates/debug.php:68 -msgid "Are you sure you want to delete all Freemius data?" -msgstr "Are you sure you want to delete all Freemius data?" - -#: templates/debug.php:68 -msgid "Delete All Accounts" -msgstr "Delete All Accounts" - -#: templates/debug.php:75 -msgid "Clear API Cache" -msgstr "Clear API Cache" - -#: templates/debug.php:83 -msgid "Clear Updates Transients" -msgstr "Clear Updates Transients" - -#: templates/debug.php:92 -msgid "Reset Deactivation Snoozing" -msgstr "Reset Deactivation Snoozing" - -#: templates/debug.php:100 -msgid "Sync Data From Server" -msgstr "Sync Data From Server" - -#: templates/debug.php:109 -msgid "Migrate Options to Network" -msgstr "Migrate Options to Network" - -#: templates/debug.php:114 -msgid "Load DB Option" -msgstr "Load DB Option" - -#: templates/debug.php:117 -msgid "Set DB Option" -msgstr "Set DB Option" - -#: templates/debug.php:211 -msgid "Key" -msgstr "Key" - -#: templates/debug.php:212 -msgid "Value" -msgstr "Value" - -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versions" - -#: templates/debug.php:233 -msgid "SDK Path" -msgstr "SDK Path" - -#: templates/debug.php:234, templates/debug.php:273 -msgid "Module Path" -msgstr "Module Path" - -#: templates/debug.php:235 -msgid "Is Active" -msgstr "Is Active" - -#: templates/debug.php:263, templates/debug/plugins-themes-sync.php:35 -msgid "Plugins" -msgstr "Plugins" - -#: templates/debug.php:263, templates/debug/plugins-themes-sync.php:56 -msgid "Themes" -msgstr "Themes" - -#: templates/debug.php:268, templates/debug.php:405, templates/debug.php:513, -#: templates/debug/scheduled-crons.php:80 -msgid "Slug" -msgstr "Slug" - -#: templates/debug.php:270, templates/debug.php:512 -msgid "Title" -msgstr "Title" - -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - -#: templates/debug.php:272 -msgid "Freemius State" -msgstr "Freemius State" - -#: templates/debug.php:276 -msgid "Network Blog" -msgstr "Network Blog" - -#: templates/debug.php:277 -msgid "Network User" -msgstr "Network User" - -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Connected" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blocked" - -#: templates/debug.php:358 -msgid "Simulate Trial Promotion" -msgstr "Simulate Trial Promotion" - -#: templates/debug.php:370 -msgid "Simulate Network Upgrade" -msgstr "Simulate Network Upgrade" - -#: templates/debug.php:394 -msgid "%s Installs" -msgstr "%s Installs" - -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - -#: templates/debug.php:402, templates/account/partials/site.php:156 -msgid "Blog ID" -msgstr "Blog ID" - -#: templates/debug.php:407 -msgid "License ID" -msgstr "License ID" - -#: templates/debug.php:493, templates/debug.php:599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Delete" - -#: templates/debug.php:507 -msgid "Add Ons of module %s" -msgstr "Add Ons of module %s" - -#: templates/debug.php:566 -msgid "Users" -msgstr "Users" - -#: templates/debug.php:573 -msgid "Verified" -msgstr "Verified" - -#: templates/debug.php:615 -msgid "%s Licenses" -msgstr "%s Licenses" - -#: templates/debug.php:620 -msgid "Plugin ID" -msgstr "Plugin ID" - -#: templates/debug.php:622 -msgid "Plan ID" -msgstr "Plan ID" - -#: templates/debug.php:623 -msgid "Quota" -msgstr "Quota" - -#: templates/debug.php:624 -msgid "Activated" -msgstr "Activated" - -#: templates/debug.php:625 -msgid "Blocking" -msgstr "Blocking" - -#: templates/debug.php:626, templates/debug.php:697, -#: templates/debug/logger.php:22 -msgid "Type" -msgstr "Type" - -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Expiration" - -#: templates/debug.php:656 -msgid "Debug Log" -msgstr "Debug Log" - -#: templates/debug.php:660 -msgid "All Types" -msgstr "All Types" - -#: templates/debug.php:667 -msgid "All Requests" -msgstr "All Requests" - -#: templates/debug.php:672, templates/debug.php:701, -#: templates/debug/logger.php:25 -msgid "File" -msgstr "File" - -#: templates/debug.php:673, templates/debug.php:699, -#: templates/debug/logger.php:23 -msgid "Function" -msgstr "Function" - -#: templates/debug.php:674 -msgid "Process ID" -msgstr "Process ID" - -#: templates/debug.php:675 -msgid "Logger" -msgstr "Logger" - -#: templates/debug.php:676, templates/debug.php:700, -#: templates/debug/logger.php:24 -msgid "Message" -msgstr "Message" - -#: templates/debug.php:678 -msgid "Filter" -msgstr "Filter" - -#: templates/debug.php:686 -msgid "Download" -msgstr "Download" - -#: templates/debug.php:702, templates/debug/logger.php:26 -msgid "Timestamp" -msgstr "Timestamp" - -#: templates/secure-https-header.php:28 -msgid "Secure HTTPS %s page, running from an external domain" -msgstr "Secure HTTPS %s page, running from an external domain" - -#: includes/customizer/class-fs-customizer-support-section.php:55, -#: templates/plugin-info/features.php:43 -msgid "Support" -msgstr "Support" - -#: includes/debug/class-fs-debug-bar-panel.php:48, -#: templates/debug/api-calls.php:54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - -#: includes/debug/debug-bar-start.php:41 -msgid "Freemius API" -msgstr "Freemius API" - -#: includes/debug/debug-bar-start.php:42 -msgid "Requests" -msgstr "Requests" - -#: includes/managers/class-fs-clone-manager.php:839 -msgid "Invalid clone resolution action." -msgstr "Invalid clone resolution action." - -#: includes/managers/class-fs-clone-manager.php:1024 -msgid "products" -msgstr "products" - -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." - -#: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" - -#: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" - -#: includes/managers/class-fs-clone-manager.php:1238 -msgid "the above-mentioned sites" -msgstr "the above-mentioned sites" - -#: includes/managers/class-fs-clone-manager.php:1251 -msgid "Is %2$s a duplicate of %4$s?" -msgstr "Is %2$s a duplicate of %4$s?" - -#: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." - -#: includes/managers/class-fs-clone-manager.php:1257 -msgid "Long-Term Duplicate" -msgstr "Long-Term Duplicate" - -#: includes/managers/class-fs-clone-manager.php:1262 -msgid "Duplicate Website" -msgstr "Duplicate Website" - -#: includes/managers/class-fs-clone-manager.php:1268 -msgid "Is %2$s the new home of %4$s?" -msgstr "Is %2$s the new home of %4$s?" - -#: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." -msgstr "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." - -#: includes/managers/class-fs-clone-manager.php:1271, -#: templates/forms/subscription-cancellation.php:52 -msgid "license" -msgstr "license" - -#: includes/managers/class-fs-clone-manager.php:1271 -msgid "data" -msgstr "data" - -#: includes/managers/class-fs-clone-manager.php:1277 -msgid "Migrate License" -msgstr "Migrate License" - -#: includes/managers/class-fs-clone-manager.php:1278 -msgid "Migrate" -msgstr "Migrate" - -#: includes/managers/class-fs-clone-manager.php:1284 -msgid "Is %2$s a new website?" -msgstr "Is %2$s a new website?" - -#: includes/managers/class-fs-clone-manager.php:1285 -msgid "Yes, %2$s is a new and different website that is separate from %4$s." -msgstr "Yes, %2$s is a new and different website that is separate from %4$s." - -#: includes/managers/class-fs-clone-manager.php:1287 -msgid "It requires license activation." -msgstr "It requires license activation." - -#: includes/managers/class-fs-clone-manager.php:1294 -msgid "New Website" -msgstr "New Website" - -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Products" - -#: includes/managers/class-fs-clone-manager.php:1408 -msgid "You marked this website, %s, as a temporary duplicate of %s." -msgstr "You marked this website, %s, as a temporary duplicate of %s." - -#: includes/managers/class-fs-clone-manager.php:1409 -msgid "You marked this website, %s, as a temporary duplicate of these sites" -msgstr "You marked this website, %s, as a temporary duplicate of these sites" - -#: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "The %s's" - -#: includes/managers/class-fs-clone-manager.php:1429 -msgid "The following products'" -msgstr "The following products'" - -#: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." - -#: includes/managers/class-fs-clone-manager.php:1439 -msgid "activate a license here" -msgstr "activate a license here" - -#: includes/managers/class-fs-permission-manager.php:182 -msgid "View Basic Website Info" -msgstr "View Basic Website Info" - -#: includes/managers/class-fs-permission-manager.php:183 -msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "Homepage URL & title, WP & PHP versions, and site language" - -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." - -#: includes/managers/class-fs-permission-manager.php:198 -msgid "View Basic %s Info" -msgstr "View Basic %s Info" - -#: includes/managers/class-fs-permission-manager.php:201 -msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "Current %s & SDK versions, and if active or uninstalled" - -#: includes/managers/class-fs-permission-manager.php:252 -msgid "View License Essentials" -msgstr "View License Essentials" - -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." - -#: includes/managers/class-fs-permission-manager.php:275 -msgid "View %s State" -msgstr "View %s State" - -#: includes/managers/class-fs-permission-manager.php:278 -msgid "Is active, deactivated, or uninstalled" -msgstr "Is active, deactivated, or uninstalled" - -#: includes/managers/class-fs-permission-manager.php:281 -msgid "So you can reuse the license when the %s is no longer active." -msgstr "So you can reuse the license when the %s is no longer active." - -#: includes/managers/class-fs-permission-manager.php:317 -msgid "View Diagnostic Info" -msgstr "View Diagnostic Info" - -#: includes/managers/class-fs-permission-manager.php:317, -#: includes/managers/class-fs-permission-manager.php:354 -msgid "optional" -msgstr "optional" - -#: includes/managers/class-fs-permission-manager.php:318 -msgid "WordPress & PHP versions, site language & title" -msgstr "WordPress & PHP versions, site language & title" - -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." - -#: includes/managers/class-fs-permission-manager.php:354 -msgid "View Plugins & Themes List" -msgstr "View Plugins & Themes List" - -#: includes/managers/class-fs-permission-manager.php:355 -msgid "Names, slugs, versions, and if active or not" -msgstr "Names, slugs, versions, and if active or not" - -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "To ensure compatibility and avoid conflicts with your installed plugins and themes." - -#: includes/managers/class-fs-permission-manager.php:373 -msgid "View Basic Profile Info" -msgstr "View Basic Profile Info" - -#: includes/managers/class-fs-permission-manager.php:374 -msgid "Your WordPress user's: first & last name, and email address" -msgstr "Your WordPress user's: first & last name, and email address" - -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." - -#: includes/managers/class-fs-permission-manager.php:396 -msgid "Newsletter" -msgstr "Newsletter" - -#: includes/managers/class-fs-permission-manager.php:397 -msgid "Updates, announcements, marketing, no spam" -msgstr "Updates, announcements, marketing, no spam" - -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Update" - -#: templates/account/billing.php:33 -msgid "Billing" -msgstr "Billing" - -#: templates/account/billing.php:38, templates/account/billing.php:38 -msgid "Business name" -msgstr "Business name" - -#: templates/account/billing.php:39, templates/account/billing.php:39 -msgid "Tax / VAT ID" -msgstr "Tax / VAT ID" - -#: templates/account/billing.php:42, templates/account/billing.php:43, -#: templates/account/billing.php:43 -msgid "Address Line %d" -msgstr "Address Line %d" - -#: templates/account/billing.php:46, templates/account/billing.php:46 -msgid "City" -msgstr "City" - -#: templates/account/billing.php:46, templates/account/billing.php:46 -msgid "Town" -msgstr "Town" - -#: templates/account/billing.php:47, templates/account/billing.php:47 -msgid "ZIP / Postal Code" -msgstr "ZIP / Postal Code" - -#: templates/account/billing.php:302 -msgid "Country" -msgstr "Country" - -#: templates/account/billing.php:304 -msgid "Select Country" -msgstr "Select Country" - -#: templates/account/billing.php:311, templates/account/billing.php:312 -msgid "State" -msgstr "State" - -#: templates/account/billing.php:311, templates/account/billing.php:312 -msgid "Province" -msgstr "Province" - -#: templates/account/payments.php:29 -msgid "Payments" -msgstr "Payments" - -#: templates/account/payments.php:36 -msgid "Date" -msgstr "Date" - -#: templates/account/payments.php:37 -msgid "Amount" -msgstr "Amount" - -#: templates/account/payments.php:38, templates/account/payments.php:50 -msgid "Invoice" -msgstr "Invoice" - -#: templates/connect/permissions-group.php:31, templates/forms/optout.php:26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Opt Out" - -#: templates/connect/permissions-group.php:32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Opt In" - -#: templates/debug/api-calls.php:56 -msgid "API" -msgstr "API" - -#: templates/debug/api-calls.php:68 -msgid "Method" -msgstr "Method" - -#: templates/debug/api-calls.php:69 -msgid "Code" -msgstr "Code" - -#: templates/debug/api-calls.php:70 -msgid "Length" -msgstr "Length" - -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Path" - -#: templates/debug/api-calls.php:73 -msgid "Body" -msgstr "Body" - -#: templates/debug/api-calls.php:75 -msgid "Result" -msgstr "Result" - -#: templates/debug/api-calls.php:76 -msgid "Start" -msgstr "Start" - -#: templates/debug/api-calls.php:77 -msgid "End" -msgstr "End" - -#: templates/debug/logger.php:15 -msgid "Log" -msgstr "Log" - -#. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php:18, -#: templates/debug/scheduled-crons.php:91 -msgid "In %s" -msgstr "In %s" - -#. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php:20, -#: templates/debug/scheduled-crons.php:93 -msgid "%s ago" -msgstr "%s ago" - -#: templates/debug/plugins-themes-sync.php:21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - -#: templates/debug/plugins-themes-sync.php:23 -msgid "Plugins & Themes Sync" -msgstr "Plugins & Themes Sync" - -#: templates/debug/plugins-themes-sync.php:28 -msgid "Total" -msgstr "Total" - -#: templates/debug/plugins-themes-sync.php:29, -#: templates/debug/scheduled-crons.php:84 -msgid "Last" -msgstr "Last" - -#: templates/debug/scheduled-crons.php:76 -msgid "Scheduled Crons" -msgstr "Scheduled Crons" - -#: templates/debug/scheduled-crons.php:81 -msgid "Module" -msgstr "Module" - -#: templates/debug/scheduled-crons.php:82 -msgid "Module Type" -msgstr "Module Type" - -#: templates/debug/scheduled-crons.php:83 -msgid "Cron Type" -msgstr "Cron Type" - -#: templates/debug/scheduled-crons.php:85 -msgid "Next" -msgstr "Next" - -#: templates/forms/affiliation.php:83 -msgid "Non-expiring" -msgstr "Non-expiring" - -#: templates/forms/affiliation.php:86 -msgid "Apply to become an affiliate" -msgstr "Apply to become an affiliate" - -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." - -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." - -#: templates/forms/affiliation.php:126 -msgid "Your affiliation account was temporarily suspended." -msgstr "Your affiliation account was temporarily suspended." - -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." - -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." - -#: templates/forms/affiliation.php:145 -msgid "Like the %s? Become our ambassador and earn cash ;-)" -msgstr "Like the %s? Become our ambassador and earn cash ;-)" - -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!" - -#: templates/forms/affiliation.php:149 -msgid "Program Summary" -msgstr "Program Summary" - -#: templates/forms/affiliation.php:151 -msgid "%s commission when a customer purchases a new license." -msgstr "%s commission when a customer purchases a new license." - -#: templates/forms/affiliation.php:153 -msgid "Get commission for automated subscription renewals." -msgstr "Get commission for automated subscription renewals." - -#: templates/forms/affiliation.php:156 -msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie after the first visit to maximize earnings potential." - -#: templates/forms/affiliation.php:159 -msgid "Unlimited commissions." -msgstr "Unlimited commissions." - -#: templates/forms/affiliation.php:161 -msgid "%s minimum payout amount." -msgstr "%s minimum payout amount." - -#: templates/forms/affiliation.php:162 -msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Payouts are in USD and processed monthly via PayPal." - -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." - -#: templates/forms/affiliation.php:166 -msgid "Affiliate" -msgstr "Affiliate" - -#: templates/forms/affiliation.php:169, templates/forms/resend-key.php:23 -msgid "Email address" -msgstr "Email address" - -#: templates/forms/affiliation.php:173 -msgid "Full name" -msgstr "Full name" - -#: templates/forms/affiliation.php:177 -msgid "PayPal account email address" -msgstr "PayPal account email address" - -#: templates/forms/affiliation.php:181 -msgid "Where are you going to promote the %s?" -msgstr "Where are you going to promote the %s?" - -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Enter the domain of your website or other websites from where you plan to promote the %s." - -#: templates/forms/affiliation.php:185 -msgid "Add another domain" -msgstr "Add another domain" - -#: templates/forms/affiliation.php:189 -msgid "Extra Domains" -msgstr "Extra Domains" - -#: templates/forms/affiliation.php:190 -msgid "Extra domains where you will be marketing the product from." -msgstr "Extra domains where you will be marketing the product from." - -#: templates/forms/affiliation.php:200 -msgid "Promotion methods" -msgstr "Promotion methods" - -#: templates/forms/affiliation.php:203 -msgid "Social media (Facebook, Twitter, etc.)" -msgstr "Social media (Facebook, Twitter, etc.)" - -#: templates/forms/affiliation.php:207 -msgid "Mobile apps" -msgstr "Mobile apps" - -#: templates/forms/affiliation.php:211 -msgid "Website, email, and social media statistics (optional)" -msgstr "Website, email, and social media statistics (optional)" - -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." - -#: templates/forms/affiliation.php:218 -msgid "How will you promote us?" -msgstr "How will you promote us?" - -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)." - -#: templates/forms/affiliation.php:233, templates/forms/resend-key.php:22, -#: templates/account/partials/disconnect-button.php:92 -msgid "Cancel" -msgstr "Cancel" - -#: templates/forms/affiliation.php:235 -msgid "Become an affiliate" -msgstr "Become an affiliate" - -#: templates/forms/data-debug-mode.php:25 -msgid "Please enter the license key to enable the debug mode:" -msgstr "Please enter the license key to enable the debug mode:" - -#: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" - -#: templates/forms/data-debug-mode.php:32 -msgid "Submit" -msgstr "Submit" - -#: templates/forms/data-debug-mode.php:36 -msgid "User key" -msgstr "User key" - -#: templates/forms/email-address-update.php:32 -msgid "Email address update" -msgstr "Email address update" - -#: templates/forms/email-address-update.php:33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/forms/email-address-update.php:38 -msgid "Enter the new email address" -msgstr "Enter the new email address" - -#: templates/forms/email-address-update.php:42 -msgid "Are both %s and %s your email addresses?" -msgstr "Are both %s and %s your email addresses?" - -#: templates/forms/email-address-update.php:50 -msgid "Yes - both addresses are mine" -msgstr "Yes - both addresses are mine" - -#: templates/forms/email-address-update.php:57 -msgid "%s is my client's email address" -msgstr "%s is my client's email address" - -#: templates/forms/email-address-update.php:66 -msgid "%s is my email address" -msgstr "%s is my email address" - -#: templates/forms/email-address-update.php:75 -msgid "Would you like to merge %s into %s?" -msgstr "Would you like to merge %s into %s?" - -#: templates/forms/email-address-update.php:84 -msgid "Yes - move all my data and assets from %s to %s" -msgstr "Yes - move all my data and assets from %s to %s" - -#: templates/forms/email-address-update.php:94 -msgid "No - only move this site's data to %s" -msgstr "No - only move this site's data to %s" - -#: templates/forms/email-address-update.php:292, -#: templates/forms/email-address-update.php:298 -msgid "Update" -msgstr "Update" - -#: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Please enter the license key that you received in the email right after the purchase:" - -#: templates/forms/license-activation.php:28 -msgid "Update License" -msgstr "Update License" - -#: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." - -#: templates/forms/license-activation.php:39 -msgid "Agree & Activate License" -msgstr "Agree & Activate License" - -#: templates/forms/license-activation.php:204 -msgid "Associate with the license owner's account." -msgstr "Associate with the license owner's account." - -#: templates/forms/optout.php:44 -msgid "Communication" -msgstr "Communication" - -#: templates/forms/optout.php:56 -msgid "Stay Connected" -msgstr "Stay Connected" - -#: templates/forms/optout.php:61 -msgid "Diagnostic Info" -msgstr "Diagnostic Info" - -#: templates/forms/optout.php:77 -msgid "Keep Sharing" -msgstr "Keep Sharing" - -#: templates/forms/optout.php:82 -msgid "Extensions" -msgstr "Extensions" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Keep automatic updates" - -#: templates/forms/premium-versions-upgrade-handler.php:40 -msgid "There is a new version of %s available." -msgstr "There is a new version of %s available." - -#: templates/forms/premium-versions-upgrade-handler.php:41 -msgid " %s to access version %s security & feature updates, and support." -msgstr " %s to access version %s security & feature updates, and support." - -#: templates/forms/premium-versions-upgrade-handler.php:54 -msgid "New Version Available" -msgstr "New Version Available" - -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/forms/resend-key.php:21 -msgid "Send License Key" -msgstr "Send License Key" - -#: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Enter the email address you've used during the purchase and we will resend you the license key." - -#: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key." - -#: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." - -#: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" - -#: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." - -#: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." - -#: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." - -#: templates/forms/subscription-cancellation.php:136 -msgid "Cancel %s?" -msgstr "Cancel %s?" - -#: templates/forms/subscription-cancellation.php:143 -msgid "Proceed" -msgstr "Proceed" - -#: templates/forms/subscription-cancellation.php:191, -#: templates/forms/deactivation/form.php:216 -msgid "Cancel %s & Proceed" -msgstr "Cancel %s & Proceed" - -#: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." - -#: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." - -#: templates/forms/user-change.php:26 -msgid "By changing the user, you agree to transfer the account ownership to:" -msgstr "By changing the user, you agree to transfer the account ownership to:" - -#: templates/forms/user-change.php:28 -msgid "I Agree - Change User" -msgstr "I Agree - Change User" - -#: templates/forms/user-change.php:30 -msgid "Enter email address" -msgstr "Enter email address" - -#: templates/js/permissions.php:337, templates/js/permissions.php:485 -msgid "Saved" -msgstr "Saved" - -#: templates/js/style-premium-theme.php:39 -msgid "Premium" -msgstr "Premium" - -#: templates/js/style-premium-theme.php:42 -msgid "Beta" -msgstr "Beta" - -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activate license on all sites in the network." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Apply on all sites in the network." - -#: templates/partials/network-activation.php:36 -msgid "Activate license on all pending sites." -msgstr "Activate license on all pending sites." - -#: templates/partials/network-activation.php:37 -msgid "Apply on all pending sites." -msgstr "Apply on all pending sites." - -#: templates/partials/network-activation.php:45, -#: templates/partials/network-activation.php:79 -msgid "allow" -msgstr "allow" - -#: templates/partials/network-activation.php:48, -#: templates/partials/network-activation.php:82 -msgid "delegate" -msgstr "delegate" - -#: templates/partials/network-activation.php:52, -#: templates/partials/network-activation.php:86 -msgid "skip" -msgstr "skip" - -#: templates/plugin-info/description.php:72, -#: templates/plugin-info/screenshots.php:31 -msgid "Click to view full-size screenshot %d" -msgstr "Click to view full-size screenshot %d" - -#: templates/plugin-info/features.php:56 -msgid "Unlimited Updates" -msgstr "Unlimited Updates" - -#: templates/account/partials/activate-license-button.php:46 -msgid "Localhost" -msgstr "Localhost" - -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s left" - -#: templates/account/partials/activate-license-button.php:51 -msgid "Last license" -msgstr "Last license" - -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Cancelled" - -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "No expiration" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." - -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Disconnecting the website will permanently remove %s from your User Dashboard's account." - -#: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." - -#: templates/account/partials/disconnect-button.php:88 -msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "Are you sure you would like to proceed with the disconnection?" - -#: templates/account/partials/site.php:190 -msgid "Owner Name" -msgstr "Owner Name" - -#: templates/account/partials/site.php:202 -msgid "Owner Email" -msgstr "Owner Email" - -#: templates/account/partials/site.php:214 -msgid "Owner ID" -msgstr "Owner ID" - -#: templates/account/partials/site.php:288 -msgid "Subscription" -msgstr "Subscription" - -#: templates/forms/deactivation/contact.php:19 -msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Sorry for the inconvenience and we are here to help if you give us a chance." - -#: templates/forms/deactivation/contact.php:22 -msgid "Contact Support" -msgstr "Contact Support" - -#: templates/forms/deactivation/form.php:65 -msgid "Anonymous feedback" -msgstr "Anonymous feedback" - -#: templates/forms/deactivation/form.php:71 -msgid "hour" -msgstr "hour" - -#: templates/forms/deactivation/form.php:76 -msgid "hours" -msgstr "hours" - -#: templates/forms/deactivation/form.php:81, -#: templates/forms/deactivation/form.php:86 -msgid "days" -msgstr "days" - -#: templates/forms/deactivation/form.php:106 -msgid "Deactivate" -msgstr "Deactivate" - -#: templates/forms/deactivation/form.php:108 -msgid "Activate %s" -msgstr "Activate %s" - -#: templates/forms/deactivation/form.php:111 -msgid "Submit & %s" -msgstr "Submit & %s" - -#: templates/forms/deactivation/form.php:130 -msgid "Quick Feedback" -msgstr "Quick Feedback" - -#: templates/forms/deactivation/form.php:134 -msgid "If you have a moment, please let us know why you are %s" -msgstr "If you have a moment, please let us know why you are %s" - -#: templates/forms/deactivation/form.php:134 -msgid "deactivating" -msgstr "deactivating" - -#: templates/forms/deactivation/form.php:134 -msgid "switching" -msgstr "switching" - -#: templates/forms/deactivation/form.php:448 -msgid "Kindly tell us the reason so we can improve." -msgstr "Kindly tell us the reason so we can improve." - -#: templates/forms/deactivation/form.php:478 -msgid "Snooze & %s" -msgstr "Snooze & %s" - -#: templates/forms/deactivation/form.php:638 -msgid "Yes - %s" -msgstr "Yes - %s" - -#: templates/forms/deactivation/form.php:645 -msgid "Skip & %s" -msgstr "Skip & %s" - -#: templates/forms/deactivation/retry-skip.php:21 -msgid "Click here to use the plugin anonymously" -msgstr "Click here to use the plugin anonymously" - -#: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in." diff --git a/languages/freemius-es_ES.mo b/languages/freemius-es_ES.mo index 445e10db060d2e214ce97f9f2289029792da21ea..44b97afd8681f50c8436cefebbfb2089a03ffafd 100644 GIT binary patch delta 10606 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 Vy`qAeW>is3b+cO0zMAHye*%KCSB?Mx delta 28461 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, 2017-2019 -# David Perez , 2020-2021 -# Leo Fajardo , 2022 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2022\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n" -"Language: es_ES\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Spanish (Spain) " +"(https://app.transifex.com/freemius/teams/184351/es_ES/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " +"1 : 2;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Una actualización a una versión Beta reemplazará tu versión instalada de %s con la última versión Beta - úsalo con precaución, y no en sitios de producción. Te hemos avisado." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Una actualización a una versión Beta reemplazará tu versión instalada de %s " +"con la última versión Beta - úsalo con precaución, y no en sitios de " +"producción. Te hemos avisado." -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "¿Deseas continuar con la actualización?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor " +"contacta a sdk@freemius.com con el error actual." -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Error" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "He encontrado un %s mejor" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "¿Cuál es el nombre de %s?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "It's a temporary %s - I'm troubleshooting an issue" +msgstr "" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Desactivación" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Cambiar tema" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "Otra" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ya no necesito el %s" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Sólo necesitaba la %s por un corto período" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s ha roto mi sitio" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s de repente ha dejado de funcionar" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "No puedo pagarlo durante más tiempo" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "¿Con qué precio te sentirías cómodo pagando?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "No me gusta compartir mi información contigo" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "El %s no funcionaba" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "No entiendo cómo hacerlo funcionar" -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s es genial, pero necesito una característica que no soportáis" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "¿Qué característica?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "El %s no funciona" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..." +msgstr "" +"Por favor, comparte lo que no funcionó para que podamos arreglarlo para los " +"futuros usuarios..." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "No es lo que estaba buscando" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "¿Que has estado buscando?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "El %s no funciona como esperaba" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "¿Qué esperas?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Debug Freemius" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!" - -#: includes/class-freemius.php:4446 -msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización." - -#: includes/class-freemius.php:4453 -msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Vamos, adelante" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "No - sólo desactivar" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, -#: includes/class-freemius.php6334, includes/class-freemius.php13998, -#: includes/class-freemius.php14747, includes/class-freemius.php18513, -#: includes/class-freemius.php18618, includes/class-freemius.php18795, -#: includes/class-freemius.php21078, includes/class-freemius.php21456, -#: includes/class-freemius.php21470, includes/class-freemius.php22158, -#: includes/class-freemius.php23174, includes/class-freemius.php23304, -#: includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oops" - -#: includes/class-freemius.php:4683 -msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia." - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Has comprado una licencia %s." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr " El %s de %s enlace de descarga de %s, la clave de licencia y las instrucciones de instalación se han enviado a %s. Si no encuentras el correo electrónico después de 5 minutos, comprueba tu bandeja de correo no deseado." - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, -#: includes/class-freemius.php17889, includes/class-freemius.php17900, -#: includes/class-freemius.php21347, includes/class-freemius.php21738, -#: includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Vaya" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s no se puede ejecutar sin %s." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "" +" El %s de %s enlace de descarga de %s, la clave de licencia y las " +"instrucciones de instalación se han enviado a %s. Si no encuentras el " +"correo electrónico después de 5 minutos, comprueba tu bandeja de correo no " +"deseado." -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s no se puede ejecutar sin el plugin." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Tienes una licencia %s." -#: includes/class-freemius.php:6000 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "La versión Premium %s ha sido activada con éxito." -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "" -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "Tienes una licencia %s." - -#: includes/class-freemius.php:6317 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia." +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento " +"es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el " +"futuro, deberás comprar una licencia." -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s es un complemento único de premium. Tienes que comprar una licencia " +"primero antes de activar el plugin." -#: includes/class-freemius.php6330, templates/add-ons.php186, +#: includes/class-freemius.php6047, templates/add-ons.php186, #: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Más información sobre %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Comprar licencia" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "" + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "" + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "" -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "comenzar el período de prueba" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" -msgstr "complete the opt-in" +msgstr "" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Estás a sólo un paso - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Completar la activación de \"%s\" ahora" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Hemos realizado algunas optimizaciones al %s, %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "¡Inscríbite para hacer \"%s\" Mejor!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "La actualización de %s se completó con éxito." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, -#: includes/class-fs-plugin-updater.php1305, -#: includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Complemento" -#: includes/class-freemius.php10711, templates/account.php411, -#: templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, -#: templates/account.php420, templates/debug.php395, templates/debug.php615, +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, #: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "Se ha producido un error desconocido al intentar activar el modo de marca blanca de la licencia." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" +"Se ha producido un error desconocido al intentar activar el modo de marca " +"blanca de la licencia." -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Tu licencia %s ha sido marcada como etiqueta blanca para ocultar información sensible del administrador de WP (por ejemplo, tu correo electrónico, clave de licencia, precios, dirección de facturación y facturas). Si alguna vez deseas revertirlo, puedes hacerlo fácilmente a través de tu %s. Si se trata de un error, también puedes %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" +"Tu licencia %s ha sido marcada como etiqueta blanca para ocultar " +"información sensible del administrador de WP (por ejemplo, tu correo " +"electrónico, clave de licencia, precios, dirección de facturación y " +"facturas). Si alguna vez deseas revertirlo, puedes hacerlo fácilmente a " +"través de tu %s. Si se trata de un error, también puedes %s." -#: includes/class-freemius.php13836, +#: includes/class-freemius.php13654, #: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Panel de escritorio del usuario" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "revertirlo ahora" -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario." +msgstr "" +"Se ha producido un error desconocido al intentar establecer el modo beta " +"del usuario." -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "Nuevo ID de usuario o dirección de correo electrónico no válido." -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Lo sentimos, no podemos completar la actualización de correo electrónico. " +"Ya hay registrado otro usuario con esa dirección de correo electrónico." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el " +"botón de cambio de titularidad." -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Cambiar propietario" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Colección de detalles del sitio no válida." -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"No vemos ninguna licencia activa asociada a esa dirección de correo " +"electrónico, ¿estás seguro de que es la dirección de correo electrónico " +"correcta?" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "" +"No podemos encontrar tu dirección de correo electrónico en el sistema, " +"¿estás seguro de que es la dirección de correo electrónico correcta?" -#: includes/class-freemius.php15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Compra una licencia ahora" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php15160, +#: includes/class-freemius.php14986, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renueva tu licencia ahora" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Compra una licencia ahora" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte." +msgstr "" +"%s para acceder a la versión %s de actualizaciones de funciones, seguridad " +"y soporte." -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." -msgstr "%s opt-in was successfully completed." - -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Tu cuenta se ha activado correctamente con el plan %s." +msgstr "" -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Tu versión de prueba se ha iniciado con éxito." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, -#: includes/class-freemius.php:18793 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Tu cuenta se ha activado correctamente con el plan %s." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "No se puede activar %s." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Por favor contáctanos con el siguiente mensaje:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Se ha producido un error desconocido." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Actualizar" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Comenzar el período de prueba" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Precio" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Comenzar el período de prueba" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Afiliación" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, -#: templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Cuenta" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, +#: includes/class-freemius.php19106, includes/class-freemius.php19108, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contáctanos" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, -#: includes/class-freemius.php24556, templates/account.php134, +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Complementos" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Precio" - -#: includes/class-freemius.php19551, +#: includes/class-freemius.php19370, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Foro de soporte" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Bien hecho" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "parece que la clave que has introducido no coincide con nuestros registros." -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "El modo de depuración se ha activado con éxito y se desactivará automáticamente en 60 minutos. También puedes desactivarlo antes haciendo clic en el enlace \"Detener depuración\"." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" +"El modo de depuración se ha activado con éxito y se desactivará " +"automáticamente en 60 minutos. También puedes desactivarlo antes haciendo " +"clic en el enlace \"Detener depuración\"." -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Tu complemento %s del plan se actualizó con éxito." -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "El complemento %s ha sido comprado correctamente." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Descargar la última versión" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Tu servidor está bloqueando el acceso al API de Freemius, que es crucial para sincronizar %1$s. Por favor, contacta a tu proveedor de hosting para permitir el acceso de %2$s" +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Parece que uno de los parámetros de autenticación es incorrecto. Actualiza " +"tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." -#: includes/class-freemius.php21455, includes/class-freemius.php21469, -#: includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Error recibido del servidor:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, -#: includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "" -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos." - -#: includes/class-freemius.php21714, templates/account.php136, -#: templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Período de Prueba Gratuito" +#: includes/class-freemius.php:21524 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu " +"plan, probablemente sea un problema de nuestra parte - lo sentimos." -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el " +"plan sigue siendo %s." -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Contacta aquí con nosotros" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Tu plan se activó con éxito." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Tu plan se actualizó con éxito." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Tu plan se cambió correctamente a %s." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre." +msgstr "" +"Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para " +"siempre." + +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el " +"%3$s sin interrupciones." + +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto " +"con el servicio de asistencia." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." +#: includes/class-freemius.php:21595 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones " +"de %s, pero tendrás que renovar tu licencia para seguir recibiendo " +"actualizaciones y soporte." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Tu período de prueba ha caducado. Todavía puedes seguir usando todas " +"nuestras funciones gratuitas." -#: includes/class-freemius.php:21791 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar " +"usando el %3$s sin interrupciones." -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas." +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." +#: includes/class-freemius.php:21671 +msgid "Show error details" +msgstr "" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Parece que la licencia no se pudo activar." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Tu licencia fue activada correctamente." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Parece que tu sitio actualmente no tiene una licencia activa." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Parece que la desactivación de licencia ha fallado." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "Tu licencia %s ha sido desactivada correctamente." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Parece que estamos teniendo algún problema temporal con tu cancelación de " +"la suscripción. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan " +"caducará en %s." -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Estás ejecutando %s en modo de prueba." -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Ya utilizaste un período de prueba antes." -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Ninguno de los planes de %s soportan un período de prueba." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "El plan %s no admite un período de prueba." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "Ninguno de los planes de %s soportan un período de prueba." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Parece que ya no estás en modo de prueba, así que no hay nada que cancelar " +":)" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Parece que estamos teniendo algún problema temporal con tu cancelación de " +"prueba. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22314 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Tu prueba gratuita de %s fue cancelada con éxito." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Parece que tienes la última versión." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "¡Está todo listo!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "La versión %s se ha lanzado." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Por favor descarga %s." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "la última versión %s aquí" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nuevo" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Parece que tienes la última versión." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "¡Está todo listo!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo " +"después de 5 min, comprueba tu carpeta de spam." -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Sitio dado de alta correctamente." -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Increíble" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "¡Gracias!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnostic data will no longer be sent from %s to %s." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "" -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Gracias por confirmar el cambio de propiedad. Se envió un correo " +"electrónico a %s para su aprobación final." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s es el nuevo dueño de la cuenta." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Felicidades" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Tu nombre fue actualizado correctamente." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Por favor, dinos tu nombre completo." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Tu nombre fue actualizado correctamente." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Has actualizado correctamente tu %s." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "¿Es este el sitio de clientes? %s si deseas ocultar información sensible como tu correo electrónico, clave de licencia, precios, dirección de facturación y facturas de la administración de WP." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"¿Es este el sitio de clientes? %s si deseas ocultar información sensible " +"como tu correo electrónico, clave de licencia, precios, dirección de " +"facturación y facturas de la administración de WP." -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "Haz clic aquí" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23438 msgid "Bundle" -msgstr "Bundle" - -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Atención" +msgstr "" -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Sólo déjanos informarte que la información de complementos de %s se está " +"extrayendo de un servidor externo." -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de %d-días." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de " +"%s con una prueba gratuita de %d-días." -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "No se necesita tarjeta de crédito" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Comenzar el período de prueba gratuito" - -#: includes/class-freemius.php:24385 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!" +#: includes/class-freemius.php:24234 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes " +"convertirte en nuestro embajador y ganar dinero!" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Saber más" -#: includes/class-freemius.php24580, templates/account.php573, -#: templates/account.php725, templates/connect.php223, -#: templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activar licencia" -#: includes/class-freemius.php24581, templates/account.php667, -#: templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambiar licencia" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Darse de baja" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, +#: includes/class-freemius.php24545, includes/class-freemius.php24539, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscribirse" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " La versión de pago de %1$s ya está instalada. Por favor, actívala para empezar a beneficiarte de las características de %2$s. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Activar características %s" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Darse de baja" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Por favor, sigue estos pasos para completar la actualización" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Descargar la última versión %s" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Cargar y activar la versión descargada" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "¿Cómo subirlo y activarlo?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia." - -#: includes/class-freemius.php:25267 -msgid "Auto installation only works for opted-in users." -msgstr "La instalación automática sólo funciona para usuarios que aceptaron." +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +" La versión de pago de %1$s ya está instalada. Por favor, actívala para " +"empezar a beneficiarte de las características de %2$s. %3$s" -#: includes/class-freemius.php25277, includes/class-freemius.php25310, -#: includes/class-fs-plugin-updater.php1284, -#: includes/class-fs-plugin-updater.php:1298 -msgid "Invalid module ID." -msgstr "Id de módulo no válido." +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activar características %s" -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 -msgid "Premium version already active." -msgstr "Versión premium ya activa." +#: includes/class-freemius.php:24848 +msgid "Your plan was successfully upgraded." +msgstr "Tu plan se actualizó con éxito." -#: includes/class-freemius.php:25293 -msgid "You do not have a valid license to access the premium version." -msgstr "No tienes una licencia válida para acceder a la versión premium." +#: includes/class-freemius.php:24849 +msgid "Your plan was successfully activated." +msgstr "Tu plan se activó con éxito." + +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la " +"licencia." + +#: includes/class-freemius.php:25148 +msgid "Auto installation only works for opted-in users." +msgstr "La instalación automática sólo funciona para usuarios que aceptaron." -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium." +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 +msgid "Invalid module ID." +msgstr "Id de módulo no válido." -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Versión del complemento premium ya instalada." -#: includes/class-freemius.php:25672 -msgid "View paid features" -msgstr "Ver las funciones de pago" +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +msgid "Premium version already active." +msgstr "Versión premium ya activa." -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "¡Muchas gracias por utilizar %s y sus complementos!" +#: includes/class-freemius.php:25174 +msgid "You do not have a valid license to access the premium version." +msgstr "No tienes una licencia válida para acceder a la versión premium." -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "¡Muchas gracias por utilizar %s!" +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"El plugin es un \"Serviceware\" lo que significa que no tiene una versión " +"de código premium." -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s." +#: includes/class-freemius.php:25559 +msgid "View paid features" +msgstr "Ver las funciones de pago" -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "¡Muchas gracias por utilizar nuestros productos!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " +"mejorando." -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s y sus complementos" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Productos" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "¡Muchas gracias por utilizar %s y sus complementos!" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "¡Muchas gracias por utilizar %s!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " +"mejorando %s." + +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." +msgstr "" +"envíame actualizaciones de seguridad y nuevas funcionalidades, contenido " +"educativo y ofertas." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, " +"contenido educativo y ofertas." -#: includes/class-freemius.php:26055 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "Debido al nuevo %sEU Reglamento General de Protección de Datos (RGPD)%s los requisitos de obligado cumplimiento requieren que proporciones tu consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" +#: includes/class-freemius.php:25924 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" +"Debido al nuevo %sEU Reglamento General de Protección de Datos (RGPD)%s los " +"requisitos de obligado cumplimiento requieren que proporciones tu " +"consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Indica si deseas que te contactemos para actualizaciones de seguridad y " +"nuevas funciones, contenido educativo y ofertas ocasionales:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "La clave de licencia está vacía." -#: includes/class-fs-plugin-updater.php206, +#: includes/class-fs-plugin-updater.php210, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renovar la licencia" -#: includes/class-fs-plugin-updater.php211, +#: includes/class-fs-plugin-updater.php215, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Comprar licencia" -#: includes/class-fs-plugin-updater.php331, -#: includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Hay una %s de %s disponible." -#: includes/class-fs-plugin-updater.php333, -#: includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "nueva versión Beta" -#: includes/class-fs-plugin-updater.php334, -#: includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nueva versión" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "Aviso importante de actualización:" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Instalando plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales." +msgstr "" +"No es posible conectarse al sistema de archivos. Por favor, confirma tus " +"credenciales." -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"El paquete de plugin remoto no contiene una carpeta con el Slug deseado y " +"el cambio de nombre no funcionó." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Comprar más" -#: includes/fs-plugin-info-dialog.php543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Comprar" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Comenzar mi período gratuito de %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Instalar la actualización gratuita ahora" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Instalar actualización ahora" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Instalar la versión gratuita ahora" #: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, -#: templates/auto-installation.php111, templates/account/partials/addon.php370, -#: templates/account/partials/addon.php:423 +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Instalar ahora" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Descargar la última versión gratuita" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Instalar la actualización gratuita ahora" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, -#: templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Descargar la última" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Instalar actualización ahora" #: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activar este complemento" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activar versión gratuita" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, #: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activar" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Descripción" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Instalación" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, +#: includes/fs-plugin-info-dialog.php1002, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Capturas de pantalla" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Registro de cambios" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Valoraciones" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Otras notas" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Características y precios" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Instalar plugin" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "Plan %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "El mejor" - -#: includes/fs-plugin-info-dialog.php1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Mensual" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Anual" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Permanente" -#: includes/fs-plugin-info-dialog.php1158, -#: includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Facturado %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Anualmente" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Una vez" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licencia para un único sitio" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Licencias ilimitadas" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Hasta %s sitios" -#: includes/fs-plugin-info-dialog.php1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "me" - -#: includes/fs-plugin-info-dialog.php1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "año" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Precio" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Guardar %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Sin compromiso para %s - cancelar en cualquier momento" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Después de su período gratuito %s, pague sólo %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Detalles" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, -#: templates/debug.php232, templates/debug.php269, templates/debug.php514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Versión" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autor" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Última actualización" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "hace %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Necesita la versión de WordPress" -#: includes/fs-plugin-info-dialog.php1350, -#: includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s o mayor" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible hasta" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "Requires PHP Version" +msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Descargado" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s vez" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s veces" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Página del plugin en WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Página web del plugin" -#: includes/fs-plugin-info-dialog.php1414, -#: includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Donar a este plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Calificación media" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "basado en %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s calificación" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s calificaciones" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s estrella" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s estrellas" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Haz clic para ver los comentarios con una valoración de %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Colaboradores" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php1540, -#: includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Atencion" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Este plugin no ha sido probado con tu versión actual de WordPress." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "El complemento de pago se debe implementar en Freemius." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "El complemento debe implementarse en WordPress.org o en Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Versión más reciente (%s) instalada" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Versión gratuita más reciente (%s) instalada" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Última versión instalada" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Última versión gratuita instalada" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Versión más reciente (%s) instalada" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Versión gratuita más reciente (%s) instalada" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, #: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Bajando tu plan" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, #: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Cancelando la suscripción" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %2$s caducará en %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu " +"licencia del plan %2$s caducará en %3$s." -#: templates/account.php119, templates/forms/subscription-cancellation.php100, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, #: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado." +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Ten en cuenta que no podremos abaratar los precios desactualizados para " +"renovaciones/nuevas suscripciones después de una cancelación. Si eliges " +"renovar la suscripción manualmente en el futuro, después de un aumento de " +"precio, que generalmente ocurre una vez al año, se te cobrará el precio " +"actualizado." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"La cancelación del período de prueba bloqueará inmediatamente el acceso a " +"todas las funciones premium. ¿Estás seguro?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, #: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Todavía puedes disfrutar de todas las funciones de %s pero no tendrás " +"acceso a soporte y actualizaciones de %s." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, #: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita " +"pero NO tendrás acceso a las funciones de %s." -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, +#: templates/account.php120, #: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "Activar plan %s" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "Auto renovaciones en %s" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "Caduca en %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sincronizar licencia" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Cancelar período de prueba" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Cambiar Plan" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Actualizar" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Degradar" - -#: templates/account.php137, templates/add-ons.php246, +#: templates/account.php133, templates/add-ons.php246, #: templates/plugin-info/features.php72, #: templates/account/partials/addon.php52, #: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php139, templates/debug.php408, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "Plan combinado" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Período de prueba gratuito" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Detalles de la cuenta" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Iniciar Depuración" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Detener la depuración" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Iniciar Depuración" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Facturación y facturas" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Desactivar licencia" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "¿Estás seguro que quieres proceder?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Cancelar suscripción" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sincronizar" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Nombre" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Correo electrónico" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "ID de usuario" -#: templates/account.php420, templates/account.php738, -#: templates/account.php789, templates/debug.php267, templates/debug.php400, -#: templates/debug.php511, templates/debug.php570, templates/debug.php619, -#: templates/debug.php698, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "ID del sitio" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Sin ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, -#: templates/debug.php515, templates/debug.php574, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Clave pública" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, -#: templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Clave secreta" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Sin clave secreta" - -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Período de prueba gratuito" - -#: templates/account.php498, templates/debug.php627, +#: templates/account.php494, templates/debug.php631, #: templates/account/partials/site.php:262 msgid "License Key" msgstr "Clave de licencia" -#: templates/account.php:529 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 +msgid "Trial" +msgstr "Período de prueba gratuito" + +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Únete al programa Beta" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "no verificado" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Caducado" +#: templates/account.php:600 +msgid "Free version" +msgstr "Versión gratuita" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Versión premium" -#: templates/account.php:604 -msgid "Free version" -msgstr "Versión gratuita" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Caducado" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verificar correo electrónico" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Descargar versión %s" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Descargar la versión de pago" - -#: templates/account.php664, templates/account.php927, -#: templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Mostrar" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Cambiar usuario" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "¿Cual es tú %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Descargar versión %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Cambiar usuario" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "Descargar la versión de pago" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sitios" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Buscar por dirección" -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Dirección" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licencia" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licencia" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Ocultar" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, +#: templates/account.php939, templates/forms/data-debug-mode.php31, #: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Procesando" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Cancelando %s" -#: templates/account.php1004, templates/account.php1021, +#: templates/account.php1000, templates/account.php1017, #: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "período de prueba" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Cancelando %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "suscripción" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"Al desactivar tu licencia todas las características premium se bloquearán, " +"pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro " +"que quieres continuar?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "Desactivar el modo de marca blanca" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "Activar el modo de marca blanca" @@ -1565,26 +1571,15 @@ msgid "Add Ons for %s" msgstr "Complementos para %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "No pudimos cargar la lista de complementos. Probablemente sea un problema por nuestra parte, por favor, inténtalo de nuevo en unos minutos." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Activo" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Instalado" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Descartar" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" +"No pudimos cargar la lista de complementos. Probablemente sea un problema " +"por nuestra parte, por favor, inténtalo de nuevo en unos minutos." #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s seg" @@ -1593,198 +1588,204 @@ msgid "Automatic Installation" msgstr "Instalación automática" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Una descarga automatizada y la instalación de %s (versión de pago) de %s comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de cancelación." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Una descarga automatizada y la instalación de %s (versión de pago) de %s " +"comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de " +"cancelación." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en completarse. Por favor, espera hasta que se finalice - no actualices esta página." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"El proceso de instalación ha comenzado y puede tardar unos minutos en " +"completarse. Por favor, espera hasta que se finalice - no actualices esta " +"página." #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "Cancelar instalación" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Pagar" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "Compatible con PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" -msgstr "Never miss an important update" - -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Permitir y continuar" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Reenviar correo electrónico de activación" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "¡Gracias %s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" #: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." +msgstr "" + +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "¡Bienvenido a %s! Para empezar, introduce tu clave de licencia:" -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Reenviar correo electrónico de activación" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "¡Gracias %s!" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "" -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red." #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Durante el proceso de actualización detectamos %s sitio(s) en la red que " +"todavía están pendientes de tu atención." -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Si quieres utilizar %s en estos sitios, introduce por favor tu clave de licencia abajo y haz click en el botón de activación." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Durante el proceso de actualización hemos detectado%d sitio(s) que aún " +"están pendientes de la activación de licencia." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Si quieres utilizar %s en estos sitios, introduce por favor tu clave de " +"licencia abajo y haz click en el botón de activación." -#: templates/connect.php:289 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s características de pago" -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Alternativamente, puedes saltarlo ahora y activar la licencia después, en " +"tu %s página de cuenta a nivel de red." -#: templates/connect.php305, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "Clave de licencia" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "¿No puedes encontrar tu clave de licencia?" -#: templates/connect.php371, templates/connect.php695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Saltar" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Delegar a administradores del sitio" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" +"Si haces click, esta decisión será delegada a los administradores de los " +"sitios." -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" msgstr "¿Problemas de licencia?" -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "For delivery of security & feature updates, and license management, %s needs to" - -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" -msgstr "This will allow %s to" +msgstr "" -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "¿No tienes una clave de licencia?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "¿Tienes una clave de licencia?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "¿No tienes una clave de licencia?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius es nuestro motor de licencias y actualizaciones de software" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Política de privacidad" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Acuerdo de licencia" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Términos de servicio" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Enviando correo electrónico" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activando" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Acuerdo de licencia" #: templates/contact.php:78 msgid "Contact" msgstr "Contacto" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Apagado" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Encendido" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Depurando" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, -#: templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Acciones" @@ -1806,7 +1807,7 @@ msgstr "Borrar transients de actualizaciones" #: templates/debug.php:92 msgid "Reset Deactivation Snoozing" -msgstr "Reset Deactivation Snoozing" +msgstr "" #: templates/debug.php:100 msgid "Sync Data From Server" @@ -1832,11 +1833,6 @@ msgstr "Clave" msgid "Value" msgstr "Valor" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Versiones SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Ruta del SDK" @@ -1857,20 +1853,15 @@ msgstr "Plugins" msgid "Themes" msgstr "Temas" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Ruta" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Título" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Estado Freemius" @@ -1883,141 +1874,117 @@ msgstr "Blog de red" msgid "Network User" msgstr "Usuario de red" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Conectado" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Bloqueado" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simular período de prueba" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "Simular actualización de red" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Instalaciones" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Sitios" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "ID del blog" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" msgstr "ID de licencia" -#: templates/debug.php493, templates/debug.php599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Borrar" - -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Complementos del módulo %s" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Usuarios" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Verificado" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "%s Licencias" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" msgstr "ID del plugin" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "ID del plan" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "Cuota" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Activado" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Bloqueando" -#: templates/debug.php626, templates/debug.php697, +#: templates/debug.php630, templates/debug.php701, #: templates/debug/logger.php:22 msgid "Type" msgstr "Tipo" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Caducidad" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Log de Debug" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Todos los Tipos" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "Todas las peticiones" -#: templates/debug.php672, templates/debug.php701, +#: templates/debug.php676, templates/debug.php705, #: templates/debug/logger.php:25 msgid "File" msgstr "Archivo" -#: templates/debug.php673, templates/debug.php699, +#: templates/debug.php677, templates/debug.php703, #: templates/debug/logger.php:23 msgid "Function" msgstr "Función" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "ID del proceso" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, +#: templates/debug.php680, templates/debug.php704, #: templates/debug/logger.php:24 msgid "Message" msgstr "Mensaje" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filtro" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Descarga" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Página segura HTTPS %s, desde un dominio externo" @@ -2026,12 +1993,6 @@ msgstr "Página segura HTTPS %s, desde un dominio externo" msgid "Support" msgstr "Soporte" -#: includes/debug/class-fs-debug-bar-panel.php48, -#: templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "API Freemius" @@ -2042,51 +2003,61 @@ msgstr "Peticiones" #: includes/managers/class-fs-clone-manager.php:839 msgid "Invalid clone resolution action." -msgstr "Invalid clone resolution action." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1024 msgid "products" -msgstr "products" - -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" -msgstr "the above-mentioned sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1251 msgid "Is %2$s a duplicate of %4$s?" -msgstr "Is %2$s a duplicate of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 msgid "Long-Term Duplicate" -msgstr "Long-Term Duplicate" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1262 msgid "Duplicate Website" -msgstr "Duplicate Website" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1268 msgid "Is %2$s the new home of %4$s?" -msgstr "Is %2$s the new home of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." -msgstr "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php1271, #: templates/forms/subscription-cancellation.php:52 @@ -2095,161 +2066,169 @@ msgstr "licencia" #: includes/managers/class-fs-clone-manager.php:1271 msgid "data" -msgstr "data" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1277 msgid "Migrate License" -msgstr "Migrate License" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1278 msgid "Migrate" -msgstr "Migrate" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1284 msgid "Is %2$s a new website?" -msgstr "Is %2$s a new website?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1285 msgid "Yes, %2$s is a new and different website that is separate from %4$s." -msgstr "Yes, %2$s is a new and different website that is separate from %4$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1287 msgid "It requires license activation." -msgstr "It requires license activation." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1294 msgid "New Website" -msgstr "New Website" - -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Productos" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." -msgstr "You marked this website, %s, as a temporary duplicate of %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1409 msgid "You marked this website, %s, as a temporary duplicate of these sites" -msgstr "You marked this website, %s, as a temporary duplicate of these sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" -msgstr "The following products'" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" -msgstr "activate a license here" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" -msgstr "View Basic Website Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "Homepage URL & title, WP & PHP versions, and site language" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" -msgstr "View Basic %s Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "Current %s & SDK versions, and if active or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" -msgstr "View License Essentials" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" -msgstr "View %s State" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" -msgstr "Is active, deactivated, or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." msgstr "De este modo, podrás reutilizar la licencia cuando el %s ya no esté activo." -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" -msgstr "View Diagnostic Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php317, -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "opcional" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" -msgstr "WordPress & PHP versions, site language & title" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" -msgstr "View Plugins & Themes List" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" -msgstr "Names, slugs, versions, and if active or not" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "To ensure compatibility and avoid conflicts with your installed plugins and themes." +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" -msgstr "View Basic Profile Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" -msgstr "Your WordPress user's: first & last name, and email address" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Boletín" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Actualizaciones, anuncios, marketing, sin spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturación" @@ -2262,14 +2241,14 @@ msgstr "Nombre de la empresa" msgid "Tax / VAT ID" msgstr "Tax / Núm IVA" -#: templates/account/billing.php42, templates/account/billing.php43, -#: templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Línea de la dirección %d" #: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" -msgstr "Ciudad" +msgstr "" #: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" @@ -2311,17 +2290,6 @@ msgstr "Cantidad" msgid "Invoice" msgstr "Factura" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Darse de baja" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Inscribirse" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2338,11 +2306,6 @@ msgstr "Código" msgid "Length" msgstr "Longitud" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Ruta" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Cuerpo" @@ -2363,24 +2326,18 @@ msgstr "Fin" msgid "Log" msgstr "Log" -#. translators: %s: time period (e.g. In "2 hours") #: templates/debug/plugins-themes-sync.php18, #: templates/debug/scheduled-crons.php:91 +#. translators: %s: time period (e.g. In "2 hours") msgid "In %s" msgstr "En %s" -#. translators: %s: time period (e.g. "2 hours" ago) #: templates/debug/plugins-themes-sync.php20, #: templates/debug/scheduled-crons.php:93 +#. translators: %s: time period (e.g. "2 hours" ago) msgid "%s ago" msgstr "hace %s" -#: templates/debug/plugins-themes-sync.php21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "seg" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Sincronizar plugins y temas" @@ -2414,154 +2371,206 @@ msgstr "Tipo de cron" msgid "Next" msgstr "Siguiente" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Sin caducidad" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Aceptar para hacerse afiliado" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Debido a la violación de nuestros términos de afiliados, hemos decidido " +"bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, " +"por favor contacta nuestro soporte." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Gracias por aplicar a nuestro programa de asociados, infortunadamente, de " +"momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en " +"30 días." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Gracias por aplicar a nuestro programa de afiliados, revisaremos tu " +"petición durante los próximos 14 días y te volveremos a contactar con " +"información adicional." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en " +"tu área de afiliado desde: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta " +"satisfactoria que nos hayas referido!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Sumario del programa" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s comisión cuando un cliente compra una nueva licencia." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales." +msgstr "" +"%s tracking cookie después de la primera visita para maximizar las " +"ganancias potenciales." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Comisiones Ilimitadas." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s cantidad mínima a pagar." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones " +"que son de más de 30 días." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Afiliado" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Dirección de correo electrónico" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Nombre completo" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Dirección de correo electrónico de PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "¿Dónde vas a promocionar %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Introduce el dominio de tu sitio web o de otros sitios web donde planeas " +"promocionar %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Añadir otro dominio" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Dominios extra" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Dominios extra desde donde promocionarás el producto." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Métodos de promoción" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social media (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Apps móviles" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)" +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Siéntete libre de proporcionarnos estadísticas de tu sitio web o social " +"media, p.ej. visitas únicas mensuales, número de suscriptores de correo " +"electrónico, seguidores, etc. (mantendremos esta información confidencial)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "¿Como nos promocionarás?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Por favor, danos detalles de como pretendes promocionar %s (por favor, se " +"lo más específico que puedas)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Cancelar" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Hacerse afiliado" #: templates/forms/data-debug-mode.php:25 msgid "Please enter the license key to enable the debug mode:" -msgstr "Por favor, introduce la clave de licencia para activar el modo de depuración:" +msgstr "" +"Por favor, introduce la clave de licencia para activar el modo de " +"depuración:" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Para entrar en el modo de depuración, introduce la clave secreta del propietario de la licencia (UserID = %d), que puedes encontrar en la sección \"Mi perfil\" de tu panel de control de usuario:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Para entrar en el modo de depuración, introduce la clave secreta del " +"propietario de la licencia (UserID = %d), que puedes encontrar en la " +"sección \"Mi perfil\" de tu panel de control de usuario:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2573,45 +2582,39 @@ msgstr "Clave de usuario" #: templates/forms/email-address-update.php:32 msgid "Email address update" -msgstr "Email address update" - -#: templates/forms/email-address-update.php33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Descartar" +msgstr "" #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" -msgstr "Enter the new email address" +msgstr "" #: templates/forms/email-address-update.php:42 msgid "Are both %s and %s your email addresses?" -msgstr "Are both %s and %s your email addresses?" +msgstr "" #: templates/forms/email-address-update.php:50 msgid "Yes - both addresses are mine" -msgstr "Yes - both addresses are mine" +msgstr "" #: templates/forms/email-address-update.php:57 msgid "%s is my client's email address" -msgstr "%s is my client's email address" +msgstr "" #: templates/forms/email-address-update.php:66 msgid "%s is my email address" -msgstr "%s is my email address" +msgstr "" #: templates/forms/email-address-update.php:75 msgid "Would you like to merge %s into %s?" -msgstr "Would you like to merge %s into %s?" +msgstr "" #: templates/forms/email-address-update.php:84 msgid "Yes - move all my data and assets from %s to %s" -msgstr "Yes - move all my data and assets from %s to %s" +msgstr "" #: templates/forms/email-address-update.php:94 msgid "No - only move this site's data to %s" -msgstr "No - only move this site's data to %s" +msgstr "" #: templates/forms/email-address-update.php292, #: templates/forms/email-address-update.php:298 @@ -2619,48 +2622,55 @@ msgid "Update" msgstr "Actualizar" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Por favor, introduce la clave de licencia que recibiste en el correo " +"electrónico al realizar la compra:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Activar licencia" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "De acuerdo y activar licencia" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "Asocia con la cuenta del propietario de la licencia." +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" -msgstr "Communication" +msgstr "" #: templates/forms/optout.php:56 msgid "Stay Connected" -msgstr "Stay Connected" +msgstr "" #: templates/forms/optout.php:61 msgid "Diagnostic Info" -msgstr "Diagnostic Info" +msgstr "" #: templates/forms/optout.php:77 msgid "Keep Sharing" -msgstr "Keep Sharing" +msgstr "" #: templates/forms/optout.php:82 msgid "Extensions" -msgstr "Extensions" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Keep automatic updates" +msgstr "" #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." @@ -2668,48 +2678,72 @@ msgstr "Hay una nueva versión de %s disponible." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte." +msgstr "" +" %s para acceder a la versión %s de actualizaciones de funciones, seguridad " +"y soporte." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Nueva versión disponible" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Descartar" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Enviar clave de licencia" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Escribe abajo la dirección de correo electrónico que has usado para la actualización y te reenviaremos la clave de licencia." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Escribe abajo la dirección de correo electrónico que has usado para la " +"actualización y te reenviaremos la clave de licencia." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que podrás usar en otro sitio." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que " +"podrás usar en otro sitio." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "En caso de que NO estés planeando utilizar este %s en este sitio (o en cualquier otro sitio), ¿te gustaría cancelar también %s?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"En caso de que NO estés planeando utilizar este %s en este sitio (o en " +"cualquier otro sitio), ¿te gustaría cancelar también %s?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Cancelar %s - No necesito más actualizaciones de características y seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro sitio." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Cancelar %s - No necesito más actualizaciones de características y " +"seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro " +"sitio." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"No cancelar %s - Todavía estoy interesado en obtener actualizaciones de " +"características y seguridad, así como poder contactar con soporte." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser " +"que lo actives de nuevo con una licencia premium válida." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2725,12 +2759,27 @@ msgid "Cancel %s & Proceed" msgstr "Cancelar %s y proceder" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan " +"%2$s." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Para el cumplimiento de las directrices de WordPress.org, antes de empezar " +"el período de prueba te pedimos que aceptes con tu usuario e información no " +"sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s " +"para comprobar si hay actualizaciones de versión y para validar la versión " +"de prueba." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2756,14 +2805,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activar licencia en todos los sitios de la red." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Aplicar en todos los sitios de la red." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Aplicar licencia en todos los sitios pendientes." @@ -2772,6 +2813,14 @@ msgstr "Aplicar licencia en todos los sitios pendientes." msgid "Apply on all pending sites." msgstr "Aplicar en todos los sitios pendientes." +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activar licencia en todos los sitios de la red." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Aplicar en todos los sitios de la red." + #: templates/partials/network-activation.php45, #: templates/partials/network-activation.php:79 msgid "allow" @@ -2787,8 +2836,8 @@ msgstr "delegar" msgid "skip" msgstr "saltar" -#: templates/plugin-info/description.php72, -#: templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Click para ver la captura de pantalla a tamaño completo %d" @@ -2800,44 +2849,52 @@ msgstr "Actualizaciones Ilimitadas" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "quedan %s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Última licencia" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan caducará en %s." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Cancelado" +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." +msgstr "" +"%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu " +"licencia del plan caducará en %s." #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Sin caducidad" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Cancelado" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "" #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "Are you sure you would like to proceed with the disconnection?" +msgstr "" #: templates/account/partials/site.php:190 msgid "Owner Name" @@ -2857,7 +2914,9 @@ msgstr "Suscripción" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una oportunidad." +msgstr "" +"Disculpa las molestias y estamos aquí para ayudarte si nos das una " +"oportunidad." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2869,16 +2928,16 @@ msgstr "Comentarios anónimos" #: templates/forms/deactivation/form.php:71 msgid "hour" -msgstr "hour" +msgstr "" #: templates/forms/deactivation/form.php:76 msgid "hours" -msgstr "hours" +msgstr "" #: templates/forms/deactivation/form.php81, #: templates/forms/deactivation/form.php:86 msgid "days" -msgstr "days" +msgstr "" #: templates/forms/deactivation/form.php:106 msgid "Deactivate" @@ -2914,7 +2973,7 @@ msgstr "Por favor, dínos la razón para que podamos mejorar." #: templates/forms/deactivation/form.php:478 msgid "Snooze & %s" -msgstr "Snooze & %s" +msgstr "" #: templates/forms/deactivation/form.php:638 msgid "Yes - %s" @@ -2929,5 +2988,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Haz click aquí para utilizar el plugin de forma anónima" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Es posible que te lo hayas perdido, pero no tienes que compartir ningún dato y puedes solo aceptar %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Es posible que te lo hayas perdido, pero no tienes que compartir ningún " +"dato y puedes solo aceptar %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Vaya" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s no se puede ejecutar sin %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s no se puede ejecutar sin el plugin." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oops" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Completar la activación de \"%s\" ahora" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Precio" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Precio" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Bien hecho" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Período de Prueba Gratuito" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Felicidades" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Atención" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Comenzar el período de prueba gratuito" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Comprar" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Actualizar" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Degradar" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Mostrar" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Ocultar" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Saltar" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Borrar" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Darse de baja" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Inscribirse" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Descargar la última versión gratuita" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Descargar la última" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Descripción" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Instalación" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Registro de cambios" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Valoraciones" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Otras notas" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Características y precios" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "Plan %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "El mejor" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Mensual" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Anual" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Anualmente" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Una vez" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Facturado %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "me" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "año" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Versión" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "hace %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sincronizar licencia" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sincronizar" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Sin clave secreta" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licencia" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activo" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Instalado" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Enviando correo electrónico" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activando" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Apagado" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Encendido" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Depurando" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Versiones SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Conectado" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Bloqueado" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sitios" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Caducidad" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Productos" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Ruta" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "seg" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "quedan %s" diff --git a/languages/freemius-fr_FR.mo b/languages/freemius-fr_FR.mo index bc2889ccc8b8a88ef020b5aae1df2e67b93323a6..db982c1e50864727c186d0b60588304d5a52b49f 100644 GIT binary patch delta 8741 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, 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Boris Colombier , 2018\n" -"Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n" -"Language: fr_FR\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: French (France) " +"(https://app.transifex.com/freemius/teams/184351/fr_FR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;" -"fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de " +"contacter sdk@freemius.com en indiquant l'erreur." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Erreur" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "J'ai trouvé un meilleur %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Quel est le nom du %s ?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Désactivation" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Changement de Thème" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Autre" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Je n'ai plus besoin du %s" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Je n'ai besoin de %s que pour une courte période" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "Le %s a cassé mon site" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "Le %s a soudainement arrêté de fonctionner" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Je ne peux plus payer pour ça" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Quel prix seriez-vous prêt à payer ?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Je ne veux pas partager mes informations avec vous" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "Le %s n'a pas fonctionné" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Je ne comprends pas comment le faire fonctionner" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas" +msgstr "" +"Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne " +"proposez pas" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Quelle fonctionnalité ?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "Le %s ne fonctionne pas" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..." +msgstr "" +"Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le " +"corriger pour les futurs utilisateurs..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Ce n'est pas ce que je recherche" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Que recherchez-vous ?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "Le %s n'a pas fonctionné comme prévu" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "À quoi vous attendiez-vous ?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Débuggage Freemius" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Youpi" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s ne peut pas fonctionner sans %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s ne peut pas fonctionner sans le plugin." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, -#: includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oups" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "La version premium de %s a été activée avec succès." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Génial" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Vous avez une license pour %s." -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "La version premium de %s a été activée avec succès." + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il " +"ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser " +"ultérieurement, vous devrez acheter une licence." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%sest un add-on pour la version premium. Vous devez acheter une licence " +"avant d'activer le plugin." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Plus d'informations à propos de %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Acheter une licence" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "commencer la période d'essai" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "commencer la période d'essai" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Il ne reste qu'une étape - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Compléter \"%s\" Activer Maintenant" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Nous avons fait quelques modifications au %s, %s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Inscrivez-vous pour améliorer \"%s\" !" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "La mise à jour du %s s'est terminée avec succès " -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Thème" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre " +"utilisateur avec cette adresse." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire" +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le " +"bouton Changement De Propriétaire" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Changement De Propriétaire" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Récupération des détails du site non valide." -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Nous ne trouvons aucune licence active associée avec cette adresse email, " +"êtes-vous qu'il s'agit de la bonne adresse ?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il " +"s'agit de la bonne adresse ?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Acheter une licence maintenant" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renouvelez votre licence maintenant" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Acheter une licence maintenant" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support." +msgstr "" +"%s pour permettre les mises à jour de sécurité et de fonctionnalités de la " +"version %s, et le support." -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Votre compte a été activé avec succès avec la formule %s." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Votre période d'essai a bien démarré." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Votre compte a été activé avec succès avec la formule %s." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Impossible d'activer %s." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Merci de nous contacter avec le message suivant :" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Mise à jour" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Essai gratuit" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Tarifs" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Essai gratuit" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Compte" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contactez Nous" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Tarifs" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum de Support" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Directement" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Votre Add-on %s a bien été mis à jour." -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "L'Add-on %s a bien été acheté." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Télécharger la dernière version" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau." +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Il semble que l'un des paramètres d'authentification soit faux. Veuillez " +"mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et " +"essayez à nouveau." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Une erreur a été reçu depuis le serveur :" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Période d'essai" +#: includes/class-freemius.php:21524 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour " +"ou changer votre formule, le problème est probablement de votre côté - " +"désolé." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, " +"la formule est toujours %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Merci de nous contacter ici" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Votre formule a bien été modifié vers %s. " -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment." +msgstr "" +"Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite " +"indéfiniment." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour " +"continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support." +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci " +"de contacter le support." -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance." +#: includes/class-freemius.php:21595 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités " +"%s mais vous devrez renouveler votre licence pour recevoir les mises à jour " +"et une assistance." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Votre période d'essai gratuite est terminée. Vous pouvez continuer à " +"utiliser toutes nos fonctionnalités gratuites." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour " +"maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Il semble que la licence ne puisse être activée." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Votre licence a bien été activée." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Il semble que votre site n'ait pas de licence active." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Il semble que la désactivation de la licence a échoué." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Il semble que nous ayons un problème temporaire avec l'annulation de votre " +"abonnement. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Votre abonnement a bien été annulé. Votre licence de la formule %s expirera " +"dans %s." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Vous utilisez déjà le %s en période d'essai. " -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Vous avez déjà utilisé la période d'essai." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Aucune formule du %s ne propose de période d'essai." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai." +msgstr "" +"La formule %s n'existe pas, il n'est pas possible de commencer une période " +"d'essai." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "La formule %s ne propose pas de période d'essai." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Aucune formule du %s ne propose de période d'essai." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à " +"annuler :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Il semble que nous ayons un problème temporaire pour annuler votre période " +"d'essai. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Votre période d'essai %s a bien été annulé." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Il semble que vous ayez la dernière version." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Vous êtes tout bon !" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "La version %s vient d'être publiée." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Merci de télécharger %s." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "la dernière version de %s ici" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nouveau" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Il semble que vous ayez la dernière version." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Vous êtes tout bon !" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez " +"pas d'ici 5 minutes, merci de vérifier dans vos spams." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Site ajouté avec succès." -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Formidable" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Merci !" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"Merci pour la confirmation du changement de propriétaire. Un email vient " +"d'être envoyé à %s pour la validation finale." -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale." - -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s est le nouveau propriétaire du compte." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Félicitations" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Votre nom a été mis à jour." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Merci d'indiquer vos prénom et nom." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Votre nom a été mis à jour." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Votre %s a bien été mis à jour." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe." - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Avertissement" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Sachez que les informations de l'add-ons de %s sont issus d'un serveur " +"externe." -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours " +"d'essai gratuit." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Pas besoin de carte bancaire" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Commencer l'essai gratuit" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" +#: includes/class-freemius.php:24234 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez " +"le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "En savoir plus" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activer la licence" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Changer la licence" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Désinscription" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscription" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "Activer les fonctionnalités %s" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Désinscription" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Merci de suivre ces étapes pour finaliser la mise à jour" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Télécharger la dernière version %s" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Téléverser et activer la version téléchargée" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Comment téléverser et activer ?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activer les fonctionnalités %s" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Votre formule a bien été mise à jour." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer " +"la licence." -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." -msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits." +msgstr "" +"L'installation automatique ne fonctionne que pour les utilisateurs qui se " +"sont inscrits." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "ID du module non valide." -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "La version premium de l'add-on est déjà installée." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Version premium déjà active." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Vous n'avez pas de licence valide pour accéder à la version premium." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code." - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "La version premium de l'add-on est déjà installée." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version " +"premium de code." -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Voir les fonctionnalités payantes" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "Merci beaucoup d'utiliser %s !" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Merci beaucoup d'utiliser nos produits !" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Vous avez déjà validé notre suivi d'utilisation qui nous permet de " +"continuer à les améliorer." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s et ses add-ons" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Produits" -#: includes/class-freemius.php25852, templates/connect.php:322 -msgid "Yes" -msgstr "Oui" - -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Merci beaucoup d'utiliser %s !" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Vous avez déjà validé notre suivi d'utilisation qui nous permet de " +"continuer à améliorer le %s." + +#: includes/class-freemius.php25910, templates/connect.php:313 +msgid "Yes" +msgstr "Oui" + +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Non" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni " +"de contenu instructif, ni d'offre." -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25924 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Merci de nous indiquer si vous souhaitez que nous vous contactions pour les " +"mises à jour de sécurité et de fonctionnalités, du contenu instructif et " +"des offres spéciales :" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "La clé de licence est vide." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renouvelez votre licence" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Acheter une licence" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Il y a une %s de %s disponible." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "Nouvelle version" @@ -876,605 +1009,536 @@ msgstr "Nouvelle version" msgid "Important Upgrade Notice:" msgstr "Information importante de mise à jour :" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installation du plugin : %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations." +msgstr "" +"Impossible de se connecter au système de fichiers. Merci de confirmer vos " +"autorisations." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Le package du plugin à télécharger ne contient pas de dossier avec le bon " +"slug et iln'a pas été possible de le renommer." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Acheter" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Commencer ma %s gratuite" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installer la dernière mise à jour gratuite maintenant" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installer la mise à jour maintenant" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installer la version gratuite maintenant" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installer maintenant" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Télécharger la dernière version gratuite" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installer la dernière mise à jour gratuite maintenant" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Télécharger la dernière version" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installer la mise à jour maintenant" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activer cet add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activez la version gratuite" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activer" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Description" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Captures d'écran" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Commentaires" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Autres Informations" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Fonctionnalités & Tarifs" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Installation du Plugin" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "Formule %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Best" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Mensuel" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Annuel" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "À vie" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s Facturé" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Annuel" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Une fois" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licence 1 site" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Licences sites illimités" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Jusqu'à %s Sites" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mois" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "année" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Tarif" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Économisez %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Pas d'engagement durant %s - annuler quand vous voulez" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Après vos %s gratuits, payez seulement %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Détails" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Auteur" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Dernière mise à jour" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "Il y a %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Version de WordPress requise" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s ou plus" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible jusqu'à" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Téléchargé" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Page WordPress.org du plugin" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Site Web du plugin" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Faire une donation pour ce plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Note moyenne" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "Basé sur %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s notation" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%snotations " -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s étoile" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s étoiles" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Cliquez pour voir les avis avec une notation de %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Contributeurs" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Attention" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Ce plugin n'a pas été indiqué comme étant compatible avec votre version " +"actuelle de WordPress" + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress" - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Les add-ons payant doivent être déposés sur Freemius" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Nouvelle Version (%s) Installée" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "La nouvelle version gratuite ( %s ) a été installé" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Dernière Version Installée" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "La dernière version gratuite a été installé" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Nouvelle Version (%s) Installée" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "La nouvelle version gratuite ( %s ) a été installé" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Rétrograder votre formule" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Annuler votre abonnement" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé." - -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Veuillez noter que nous ne serons pas en mesure de garantir le maintien des " +"prix actuels pour les renouvellements/nouveaux abonnements après une " +"annulation. Si vous choisissez de renouveler l'abonnement manuellement à " +"l'avenir, après une augmentation de prix, qui se produit généralement une " +"fois par an, le prix mis à jour vous sera facturé." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Annuler la période d'essai va immédiatement bloquer les fonctionnalités " +"premium. Souhaitez-vous continuer ?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous " +"n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de " +"%s, ni au support." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Une fois la licence expirée vous pourrez toujours utiliser la version " +"gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Activer la formule %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Renouvellements automatique dans %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Expire dans %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synchroniser la licence" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Annuler la période d'essai" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Changer de formule" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Mise à jour" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Rétrograder" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratuit" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Formule" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Essai gratuit" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Détails du compte" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Désactiver la licence" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Êtes-vous de vouloir continuer ?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Annuler l'abonnement" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Synchroniser" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Nom" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Email" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "User ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "ID manquant" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Clef publique" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Clef secrête" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Clef secrète manquante" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Clef de licence" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Période d'essai" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Clef de licence" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "Non vérifié" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Expiré" +#: templates/account.php:600 +msgid "Free version" +msgstr "Version gratuite" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Version premium" -#: templates/account.php:604 -msgid "Free version" -msgstr "Version gratuite" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Expiré" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Vérifier l'email" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Télécharger la version %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Afficher" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Quel est votre %s ?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Éditer" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Télécharger la version %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sites" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Recherche par adresse" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresse" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licence" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Formule" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licence" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Cacher" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Traitement en cours" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Annulation de %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "essai" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Annulation de %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "abonnement" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"Désactiver la licence bloquera toutes les fonctionnalités premium mais vous " +"permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir " +"continuer ?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1487,25 +1551,13 @@ msgid "Add Ons for %s" msgstr "Add Ons pour %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s sec" @@ -1514,12 +1566,23 @@ msgid "Automatic Installation" msgstr "Installation automatique" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Un téléchargement et une installation automatique de %s (version premium) de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez sur le bouton d'annulation maintenant." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Un téléchargement et une installation automatique de %s (version premium) " +"de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez " +"sur le bouton d'annulation maintenant." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "L'installation a commencé et peut prendre quelques minutes pour se finir. Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas rafraichir cette page." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"L'installation a commencé et peut prendre quelques minutes pour se finir. " +"Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas " +"rafraichir cette page." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1533,172 +1596,174 @@ msgstr "Paiement" msgid "PCI compliant" msgstr "Compatible PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Autoriser & Continuer" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Renvoyer l'email d'activation" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Merci %s !" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Renvoyer l'email d'activation" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Merci %s !" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." -msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau." - -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence." +msgstr "" +"Nous sommes impatient de vous présenter l'intégration Freemius au niveau " +"réseau." #: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de licence ci-dessous et de cliquer sur le bouton d'activation." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Durant le processus de mise à jour nous avons détecté %s site(s) dans le " +"réseau que vous devez vérifier." + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Durant le processus de mise à jour nous avons détecté %d site(s) toujours " +"en attente d'activation de la licence." -#: templates/connect.php:287 +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de " +"licence ci-dessous et de cliquer sur le bouton d'activation." + +#: templates/connect.php:278 msgid "%s's paid features" msgstr "Fonctionnalités payantes de %s" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s." - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence " +"plus tard, sur votre page de compte du réseau %s." -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Clef de licence" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Vous ne trouvez pas votre clef de licence ?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Passer" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Déléguer aux administrateurs du site" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites." -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Vous n'avez pas de clef de licence ?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Vous avez une clef de licence ?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Vous n'avez pas de clef de licence ?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "Contrat de licence" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Conditions générales de service" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Email en cours d'envoi" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activation en cours" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Contrat de licence" #: templates/contact.php:78 msgid "Contact" msgstr "Contact" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Off" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "On" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debuggage" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Actions" @@ -1746,11 +1811,6 @@ msgstr "Clef" msgid "Value" msgstr "Valeur" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Versions du SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Chemin d'accès du SDK" @@ -1771,7 +1831,8 @@ msgstr "Plugins" msgid "Themes" msgstr "Thèmes" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1779,11 +1840,6 @@ msgstr "Slug" msgid "Title" msgstr "Titre" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "État de Freemius" @@ -1796,21 +1852,6 @@ msgstr "Réseau de Blog" msgid "Network User" msgstr "Réseau d'Utilisateur" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Connecté" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Bloqué" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simuler la promotion d'essai" @@ -1820,14 +1861,10 @@ msgid "Simulate Network Upgrade" msgstr "Simuler la mise à jour du réseau" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installations" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1836,11 +1873,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Supprimer" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Add Ons du module %s" @@ -1877,15 +1909,11 @@ msgstr "Activé" msgid "Blocking" msgstr "Bloquant" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Expiration" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1898,11 +1926,13 @@ msgstr "Tous les types" msgid "All Requests" msgstr "Toutes les demandes" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Fichier" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Fonction" @@ -1914,7 +1944,8 @@ msgstr "ID du processus" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Message" @@ -1931,18 +1962,15 @@ msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Support" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "API Freemius" @@ -1959,16 +1987,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1980,7 +2014,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1996,10 +2032,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licence" @@ -2031,11 +2070,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produits" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2045,12 +2079,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2058,7 +2090,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2074,7 +2108,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2082,6 +2121,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2089,8 +2129,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2098,6 +2141,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2109,7 +2153,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2118,7 +2163,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2130,7 +2179,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2142,7 +2193,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2153,11 +2207,6 @@ msgstr "Newsletter" msgid "Updates, announcements, marketing, no spam" msgstr "Mises à jour, annonces, marketing, pas de spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Mise à jour" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturation" @@ -2170,7 +2219,8 @@ msgstr "Raison sociale" msgid "Tax / VAT ID" msgstr "Code TVA" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresse ligne %d" @@ -2218,16 +2268,6 @@ msgstr "Montant" msgid "Invoice" msgstr "Facture" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Désinscription" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Inscription" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2244,11 +2284,6 @@ msgstr "Code" msgid "Length" msgstr "Longueur" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Chemin" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2269,21 +2304,18 @@ msgstr "Fin" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "Dans %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "Il y a %s" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Synchronisation des plugin et des thèmes" @@ -2292,7 +2324,8 @@ msgstr "Synchronisation des plugin et des thèmes" msgid "Total" msgstr "Total" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Dernier" @@ -2316,143 +2349,195 @@ msgstr "Type de Cron" msgid "Next" msgstr "Suivant" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Sans expiration" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Postuler pour devenir un affilié" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Suite à une violation de nos conditions d'affiliation, nous avons décidé de " +"bloquer temporairement votre compte d'affilié. Si vous avez la moindre " +"question, merci de contacter le support." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Merci d'avoir postulé à notre programme d'affiliation, malheureusement, " +"nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer " +"à nouveau d'ici 30 jours." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Votre compte affilié a été suspendu temporairement." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Merci d'avoir postulé à notre programme d'affiliation, nous regarderons " +"votre dossier durant les 14 prochains jours et nous reviendrons vers vous " +"avec d'autres informations." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans " +"votre espace affilié sur : %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez." +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s " +"sur chaque vente réussie que vous affiliez." -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Sommaire du programme" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "Commission de %s quand un client achète une nouvelle licence." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain." +msgstr "" +"Cookie de tracking de %s après la première visite pour maximiser les " +"potentiels de gain." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Commissions illimitées." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "Montant de paiement minimum %s." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal." +msgstr "" +"Les paiements se font en Dollars US et sont effectués mensuellement via " +"PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules " +"sont payées les commissions de plus de 30 jours." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliation" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Adresse email" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Nom complet" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Adresse email du compte PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Où allez-vous faire la promotion du %s ? " -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s" +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez " +"faire la promotion du %s" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Ajouter une autre adresse" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Adresses supplémentaires" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." -msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit." +msgstr "" +"Adresses supplémentaires depuis lesquelles vous ferez la promotion du " +"produit." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Méthodes de promotion" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Réseaux sociaux (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Applications mobiles" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" -msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)" +msgstr "" +"Statistiques du site web, de l'adresse email et des réseaux sociaux " +"(optionnel)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)" +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"N'hésitez pas à indiquer des statistiques pertinentes concernant votre site " +"ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre " +"d'abonnés, de followers, etc... (C'est informations resteront " +"confidentielles)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Comment allez-vous faire de la promotion ?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Merci d'indiquer en détail comment vous allez faire la promotion du %s (en " +"étant aussi précis que possible)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuler" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Devenir un affilié" @@ -2461,7 +2546,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2476,11 +2564,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2513,30 +2596,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Mise à jour" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Merci d'indiquer le code de licence que vous avez reçu par email juste " +"après l'achat :" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Mettre à jour la licence" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Valider & Activer la licence" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2557,58 +2652,78 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Il y a une nouvelle version disponible de %s. " #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr "%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la version %s, et au support." +msgstr "" +"%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la " +"version %s, et au support." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Une nouvelle version est disponible" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Envoyer le code de la licence" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à " +"jour et nous allons vous renvoyer le code de la licence." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Désactiver ou désinstaller le %s désactivera automatiquement la licence, que vous pourrez utiliser sur un autre site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Désactiver ou désinstaller le %s désactivera automatiquement la licence, " +"que vous pourrez utiliser sur un autre site." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Dans le cas où vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou tout autre site) - voulez-vous aussi annuler le %s ?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Dans le cas où vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou " +"tout autre site) - voulez-vous aussi annuler le %s ?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention d'utiliser le %s sur ce site, ou tout autre site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de " +"fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention " +"d'utiliser le %s sur ce site, ou tout autre site." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité " +"et de fonctionnalités, ainsi que d'être en mesure de contacter le support." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf " +"si vous l'activez à nouveau avec une licence premium valide." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2618,17 +2733,33 @@ msgstr "Annuler %s ?" msgid "Proceed" msgstr "Poursuivre" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Annuler %s et poursuivre" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s " +"jours de la formule %2$s." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Pour être en accord avec les directives de WordPress.org, avant que nous " +"commencions la période d'essai, nous vous demandons de nous permettre de " +"récupérer votre nom d'utilisateur et des informations non sensibles du site " +"afin de permettre au %s de communiquer avec %s pour vérifier les mises à " +"jour et valider votre période d'essai." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2654,14 +2785,6 @@ msgstr "Premium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activer la licence sur tous les sites du réseau." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Effectuer sur tous les sites dans le réseau." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Activer la licence sur tous les sites en attente." @@ -2670,19 +2793,31 @@ msgstr "Activer la licence sur tous les sites en attente." msgid "Apply on all pending sites." msgstr "Activer sur tous les sites en attente." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activer la licence sur tous les sites du réseau." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Effectuer sur tous les sites dans le réseau." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "autoriser" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "déléguer" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "passer" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Cliquez pour voir la capture d'écran %d en pleine taille" @@ -2694,39 +2829,45 @@ msgstr "Mises à jour illimitées" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s restante(s)" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Dernière licence" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Annulé" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Pas d'expiration" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Annulé" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2751,7 +2892,9 @@ msgstr "Inscription" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez." +msgstr "" +"Désolé pour le dérangement et nous sommes là pour vous aider si vous nous " +"le permettez." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2769,7 +2912,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2822,5 +2966,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Cliquer ici pour utiliser le plugin anonymement" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager la moindre information et vous pouvez juste %s l'enregistrement." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager " +"la moindre information et vous pouvez juste %s l'enregistrement." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Youpi" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s ne peut pas fonctionner sans %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s ne peut pas fonctionner sans le plugin." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oups" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Génial" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Compléter \"%s\" Activer Maintenant" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Tarifs" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Tarif" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Directement" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Période d'essai" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Félicitations" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Avertissement" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Commencer l'essai gratuit" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Acheter" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Mise à jour" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Rétrograder" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Éditer" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Afficher" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Cacher" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Passer" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Supprimer" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Mise à jour" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Désinscription" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Inscription" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Télécharger la dernière version gratuite" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Télécharger la dernière version" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Commentaires" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Autres Informations" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Fonctionnalités & Tarifs" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "Formule %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Best" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Mensuel" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Annuel" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Annuel" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Une fois" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s Facturé" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mois" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "année" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Version" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Auteur" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "Il y a %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchroniser la licence" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Formule" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Synchroniser" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Clef secrète manquante" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licence" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Email en cours d'envoi" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activation en cours" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Off" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "On" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debuggage" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Versions du SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Connecté" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Bloqué" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sites" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Expiration" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produits" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Chemin" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s restante(s)" diff --git a/languages/freemius-nl_NL.mo b/languages/freemius-nl_NL.mo index b3024ef3e2ea50d1430aaf0c758b9fd4b196f123..fa3f8e857b5f1873e8066ef895ae6ce6d6da2afb 100644 GIT binary patch delta 8741 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 diff --git a/languages/freemius-nl_NL.po b/languages/freemius-nl_NL.po index 3f1659a21..797c35c28 100644 --- a/languages/freemius-nl_NL.po +++ b/languages/freemius-nl_NL.po @@ -1,876 +1,998 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Benny Vluggen , 2017-2018 -# Leo Fajardo , 2022 -# Patrick Buntsma , 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2022\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Dutch (Netherlands) " +"(https://app.transifex.com/freemius/teams/184351/nl_NL/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;" -"fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. " +"contact op met sdk@freemius.com m.b.t. deze fout." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Fout" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Ik vond een beter %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Wat is de naam van het %s?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deactivatie" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Thema Wissel" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Overige" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ik heb de %s niet meer nodig " -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Ik had de %s alleen nodig voor een korte periode." -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "De %s maakte mijn site onbruikbaar" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "De %s werkte opeens niet meer" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Ik kan er niet langer meer voor betalen" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Welke bedrag zou je ervoor over hebben?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "De %s werkte niet" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen." -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen" +msgstr "" +"De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie " +"niet ondersteunen" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Welke feature?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "De %s werkt niet" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..." +msgstr "" +"Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat " +"we dat kunnen verbeteren voor toekomstige gebruikers ..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Het is niet waarna ik opzoek was" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Waar was je naar op zoek?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "De %s werkte niet zoals verwacht" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Wat had je verwacht?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Hoera" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s werkt niet zonder %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s werkt niet zonder de plug-in." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, -#: includes/class-freemius.php21955, includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oeps" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "Premium %s versie is succesvol geactiveerd." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Je hebt een %s licentie" -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "Premium %s versie is succesvol geactiveerd." + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als " +"premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de " +"add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie " +"kopen voordat je de plug-in activeert." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Meer informatie over %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Licentie Kopen" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "start de proefperiode" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "start de proefperiode" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Je bent slechts een stap verwijderd - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Voltooi \"%s\" Activatie Nu" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s " -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Opt-in om \"%s\" te verbeteren!" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "De upgrade van %s is succesvol voltooid." -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Uitbreiding" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plug-in" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Thema" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met " +"hetzelfde e-mailadres is reeds geregistreerd." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. " +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op " +"de Eigendom Overdragen knop. " -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Eigendom Overdragen" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Ongeldige verzameling van Site Details." -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat " +"dat het juiste adres is?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat " +"het juiste adres is?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Koop nu een licentie" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Vernieuw je licentie nu" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Koop nu een licentie" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support." -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Je account is succesvol geactiveerd met het %s plan." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "U proefperiode is met succes gestart." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Je account is succesvol geactiveerd met het %s plan." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Kon %s niet activeren." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Neem a.u.b. contact met ons op met het volgende bericht:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Start Proefperiode" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Prijzen" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Start Proefperiode" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliatie" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contacteer Ons" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Uitbreidingen" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Prijzen" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Toppie" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. " -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s Add-on werd succesvol aangekocht." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Download de meeste recente versie" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. " +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Het lijkt erop dat een van de authenticatie parameters niet klopt. Update " +"je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het " +"nogmaals. " -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Foutmelding ontvangen van de server:" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Proefperiode" +#: includes/class-freemius.php:21524 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan " +"geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze " +"kant - sorry." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft " +"het plan %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Neem hier a.u.b. contact met ons op" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Je plan is succesvol veranderd naar %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken." +msgstr "" +"Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven " +"gebruiken." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties " +"te blijven gebruiken." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support." +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan " +"alsjeblieft contact op met support." -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen." +#: includes/class-freemius.php:21595 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar " +"je zal je licentie moeten vernieuwen om weer updates en support te " +"ontvangen." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis " +"features blijven gebruiken." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. " +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder " +"interrupties te blijven gebruiken. " -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Je licentie is succesvol geactiveerd." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "Oké" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van " +"je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over " +"%s aflopen." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Je draait de %s al in proefmodus." -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "U heeft reeds een proefperiode gebruikt." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Geen van de %s plannen ondersteunt een proefperiode." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Plan %s ondersteunt geen proefperiode." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Geen van de %s plannen ondersteunt een proefperiode." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten." +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt " +"niets stop te zetten." -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van " +"uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Uw gratis %s proefperiode is succesvol opgezegd. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Het lijkt erop dat je de meest recente versie hebt." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Alles is goed!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Versie %s is vrijgegeven." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "A.u.b. %s downloaden." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "de meest recente %s versie hier" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nieuw" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Het lijkt erop dat je de meest recente versie hebt." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Alles is goed!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. " +"hebt ontvangen, kijk dan alsjeblieft in je spambox." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Site opt-in geslaagd. " -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Geweldig" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Bedankt!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een " +"e-mail verstuurd naar %s voor de definitieve goedkeuring. " -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. " - -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s is de nieuwe eigenaar van het account." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Gefeliciteerd" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Je naam is succesvol bijgewerkt." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Geef alsjeblieft je volledige naam." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Je naam is succesvol bijgewerkt." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Je hebt je %s succesvol geüpdatet." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server." - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Aankondiging" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hoi" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van " +"een externe server." -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende " +"een%d-daagse gratis proefperiode." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Geen creditcard nodig" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Start gratis proefperidoe" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" +#: includes/class-freemius.php:24234 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s " +"goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Lees meer" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activeer Licentie" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Verander Licentie" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Opt Out" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "Activeer %s features." +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Opt Out" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download de meeste recente %s versie" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Upload en activeer de gedownloade versie" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Hoe te uploaden en activeren?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activeer %s features." + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Je plan is succesvol geüpgraded." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren." -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Automatische installatie werkt alleen voor opted-in gebruikers." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Ongeldige Module-ID" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Premium add-on versie is reeds geïnstalleerd." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Premium versie reeds actief." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Je hebt geen geldige licentie voor de premium versie." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. " - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "Premium add-on versie is reeds geïnstalleerd." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Plug-in is 'Serviceware' wat betekent dat het geen premium code versie " +"bevat. " -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Bekijk betaalde kenmerken" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "Hartelijk bedankt voor het gebruik van %s!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Hartelijk bedankt voor het gebruiken van onze producten!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze " +"te blijven verbeteren." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%sen bijbehorende uitbreidingen" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Producten" -#: includes/class-freemius.php25852, templates/connect.php:322 -msgid "Yes" -msgstr "Ja" - -#: includes/class-freemius.php25853, templates/connect.php:323 -msgid "send me security & feature updates, educational content and offers." -msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Hartelijk bedankt voor het gebruik van %s!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te " +"blijven verbeteren." + +#: includes/class-freemius.php25910, templates/connect.php:313 +msgid "Yes" +msgstr "Ja" + +#: includes/class-freemius.php25911, templates/connect.php:314 +msgid "send me security & feature updates, educational content and offers." +msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." + +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Nee" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of " +"aanbiedingen." -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25924 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van " +"beveiliging & feature updates, educatieve content en zo nu en dan " +"aanbiedingen:" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "Licentiesleutel is leeg." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Vernieuw licentie" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koop licentie" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Er is een %s van %s beschikbaar." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nieuwe versie" @@ -878,605 +1000,535 @@ msgstr "nieuwe versie" msgid "Important Upgrade Notice:" msgstr "Belangrijke Upgrade Mededeling:" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installeren van plug-in: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens." +msgstr "" +"Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je " +"inloggegevens." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. " +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Het remote plug-in pakket bevat geen folder met de verwachte slug en " +"hernoemen werkte niet. " #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Koop" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Start mijn gratis %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installeer Gratis Versie Update Nu" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installeer Update Nu" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installer Gratis Versie Nu" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installeer Nu" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Download Nieuwste Gratis Versie" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installeer Gratis Versie Update Nu" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Download Nieuwste" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installeer Update Nu" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activeer deze add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activeer Gratis Versie" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activeer" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Beschrijving" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installatie" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "Veelgestelde Vragen" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Schermafbeeldingen" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Wijzigingen Log" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Reviews" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Andere Notities" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Features & Prijzen" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Plug-in Installatie" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Beste" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Maandelijks" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Jaarlijks" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Levenslang" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s gefactureerd " - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Jaarlijks" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Eenmalig" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Enkele Site Licentie" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Onbeperkte Licenties" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Tot %s Sites" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mnd" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "jaar" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Prijs" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Bespaar %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Geen verplichting voor %s - opzeggen kan altijd" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Na uw gratis %s, betaal slechts %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Versie" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Auteur" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Laatst Geüpdatet" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s geleden" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Vereiste WordPress-versie" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s of hoger" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible tot" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Gedownload" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s tijd" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s tijden" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plug-in Pagina" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Plug-in Homepage" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Doneer aan deze plug-in" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Gemiddelde Beoordeling" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "gebaseerd op %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s beoordeling" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s beoordelingen" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s ster" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s sterren" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Klik om reviews te bekijken met een beoordeling van%s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Medewerkers" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Waarschuwing" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress " +"versie." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. " -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Betaalde add-on moet op Freemius geplaatst worden." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Nieuwere Versie (%s) Geïnstalleerd" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Meest Recente Versie Geïnstalleerd" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Nieuwste Gratis Versie Geïnstalleerd" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Nieuwere Versie (%s) Geïnstalleerd" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Je plan naar beneden bijstellen" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Het abonnement annuleren" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe abonnementen na een annulering kunnen aanhouden. Als je in de toekomst besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend." - -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe " +"abonnementen na een annulering kunnen aanhouden. Als je in de toekomst " +"besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na " +"een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Het stopzetten van de proefperiode zal de toegang tot de premium features " +"onmiddellijk blokkeren. Weet je dat zeker?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen " +"toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch " +"ondersteuning." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis versie, maar je zal GEEN toegang meer hebben tot de %sfeatures." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis " +"versie, maar je zal GEEN toegang meer hebben tot de %sfeatures." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Activeer %s Plan" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Auto hernieuwd over %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Verloopt over %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sync Licentie" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Proefperiode Opzeggen" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Wijzig Plan" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Gratis Proefperiode" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Accountgegevens" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deactiveer Licentie" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Weet je zeker dat je wilt doorgaan?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Abonnement Opzeggen" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Naam" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "E-mail" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Gebruikers ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Geen ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Publieke Sleutel" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Geheime Sleutel" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Geen Geheim" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Licentiesleutel" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Proefperiode" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Licentiesleutel" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "niet geverifieerd" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Verlopen" +#: templates/account.php:600 +msgid "Free version" +msgstr "Gratis versie" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Premium versie" -#: templates/account.php:604 -msgid "Free version" -msgstr "Gratis versie" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Verlopen" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verifieer E-mail" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Download %s Versie" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Toon" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Wat is je %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerk" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Download %s Versie" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sites" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Zoek op adres" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adres" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licentie" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licentie" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Verberg" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Annuleren %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "proefperiode" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "%s wordt geannuleerd..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "abonnement" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Deactiveren van je licentie zal alle premium features blokkeren, maar geeft je de mogelijkheid de licentie op een andere site te activeren. Weet je zeker dat je wilt doorgaan?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"Deactiveren van je licentie zal alle premium features blokkeren, maar geeft " +"je de mogelijkheid de licentie op een andere site te activeren. Weet je " +"zeker dat je wilt doorgaan?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1489,25 +1541,13 @@ msgid "Add Ons for %s" msgstr "Add-ons voor %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Activeer" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s sec" @@ -1516,12 +1556,23 @@ msgid "Automatic Installation" msgstr "Automatische Installatie" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Een geautomatiseerde download en installatie van %s (betaalde versie) van %s zal starten binnen %s. Als je dit handmatig wil doen, klik dan nu op de annuleer knop." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Een geautomatiseerde download en installatie van %s (betaalde versie) van " +"%s zal starten binnen %s. Als je dit handmatig wil doen, klik dan nu op de " +"annuleer knop." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "Het installatieproces is gestart en kan enkele minuten duren om te voltooien. Wacht alsjeblieft totdat dat gebeurt is - deze pagina niet verversen." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"Het installatieproces is gestart en kan enkele minuten duren om te " +"voltooien. Wacht alsjeblieft totdat dat gebeurt is - deze pagina niet " +"verversen." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1535,172 +1586,174 @@ msgstr "Afrekenen" msgid "PCI compliant" msgstr "PCI-comform" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hoi %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Toestaan & Ga Verder" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Activatiemail opnieuw versturen" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Bedankt %s!" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Activatiemail opnieuw versturen" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Bedankt %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "We zijn verheugd om Freemius network-level integratie te introduceren." -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie nog niet geactiveerd is." - #: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de licentiesleutel hieronder in en klik op de activatie-knop." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw " +"aandacht vereisen." + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie " +"nog niet geactiveerd is." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de " +"licentiesleutel hieronder in en klik op de activatie-knop." -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s betaalde mogelijkheden" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Je kunt dat eventueel ook nu overslaan en de licentie later in je %s netwerk-niveau Account pagina activeren. " - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw aandacht vereisen." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Je kunt dat eventueel ook nu overslaan en de licentie later in je %s " +"netwerk-niveau Account pagina activeren. " -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Licentiesleutel" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Kan je je licentiesleutel niet vinden?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Sla Over" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Delegeren aan Site Beheerders" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders van de sites. " - -#: templates/connect.php:399 -msgid "License issues?" +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" +"Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders " +"van de sites. " -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" +#: templates/connect.php:392 +msgid "License issues?" msgstr "" -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Heb je geen licentiesleutel?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Heb je een licentiesleutel?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Heb je geen licentiesleutel?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Privacybeleid" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "Licentieovereenkomst" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Servicevoorwaarden" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "E-mail versturen" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activeren" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Licentieovereenkomst" #: templates/contact.php:78 msgid "Contact" msgstr "Contact" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Uit" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Aan" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Acties" @@ -1748,11 +1801,6 @@ msgstr "Sleutel" msgid "Value" msgstr "Waarde" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versies" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK Pad" @@ -1773,7 +1821,8 @@ msgstr "Plug-ins" msgid "Themes" msgstr "Thema's" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1781,11 +1830,6 @@ msgstr "Slug" msgid "Title" msgstr "Titel" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius Status" @@ -1798,21 +1842,6 @@ msgstr "Netwerk Blog" msgid "Network User" msgstr "Netwerk Gebruiker" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Verbonden" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Geblokkeerd" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simuleer Trial Actie" @@ -1822,14 +1851,10 @@ msgid "Simulate Network Upgrade" msgstr "Simuleer Netwerk Upgrade" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installaties" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1838,11 +1863,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Verwijder" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Uitbreidingen van module %s" @@ -1879,15 +1899,11 @@ msgstr "Geactiveerd" msgid "Blocking" msgstr "Geblokkeerd" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Verloopdatum" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1900,11 +1916,13 @@ msgstr "Alle Types" msgid "All Requests" msgstr "Alle Requests" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Bestand" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Functie" @@ -1916,7 +1934,8 @@ msgstr "Proces-ID" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Bericht" @@ -1933,18 +1952,15 @@ msgid "Timestamp" msgstr "Tijdstempel" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Beveiligde HTTPS %s pagina, loopt via een extern domein" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Ondersteuning" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1961,16 +1977,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1982,7 +2004,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1998,10 +2022,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licentie" @@ -2033,11 +2060,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Producten" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2047,12 +2069,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2060,7 +2080,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2076,7 +2098,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2084,6 +2111,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2091,8 +2119,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2100,6 +2131,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2111,7 +2143,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2120,7 +2153,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2132,7 +2169,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2144,7 +2183,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2155,11 +2197,6 @@ msgstr "Nieuwsbrief" msgid "Updates, announcements, marketing, no spam" msgstr "Updates, aankondigingen, marketing, geen spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Bijwerken" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturering" @@ -2172,7 +2209,8 @@ msgstr "Bedrijfsnaam" msgid "Tax / VAT ID" msgstr "Btw-nummer" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresregel %d" @@ -2220,16 +2258,6 @@ msgstr "Bedrag" msgid "Invoice" msgstr "Factuur" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Opt Out" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Opt In" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2246,11 +2274,6 @@ msgstr "Code" msgid "Length" msgstr "Lengte" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Pad" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2271,21 +2294,18 @@ msgstr "Einde" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "Binnen %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s geleden" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Synchronisatie Plug-ins & Thema's" @@ -2294,7 +2314,8 @@ msgstr "Synchronisatie Plug-ins & Thema's" msgid "Total" msgstr "Totaal" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Laatste" @@ -2318,143 +2339,189 @@ msgstr "Cron Type" msgid "Next" msgstr "Volgende" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Niet-verlopende" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Meld je aan om een affiliate partner te worden" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je samenwerkingsomgeving op: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we " +"besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele " +"vragen alsjeblieft contact op met support." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende informatie zullen sturen." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, " +"op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het " +"alsjeblieft over 30 dagen nog eens." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Je affiliate account is tijdelijk geschorst." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het alsjeblieft over 30 dagen nog eens." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We " +"zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende " +"informatie zullen sturen." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele vragen alsjeblieft contact op met support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je " +"samenwerkingsomgeving op: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Vind je de %s goed? Word dan onze ambassadeur en verdien cash ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door jou doorverwezen, geslaagde verkoop!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door " +"jou doorverwezen, geslaagde verkoop!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Programma Samenvatting" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s commissie als een klant een nieuwe licentie koopt. " -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Krijg een commissie voor automatische abonnementsverlengingen." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie na eerste bezoek om je verdienpotentieel te maximaliseren." +msgstr "" +"%s tracking cookie na eerste bezoek om je verdienpotentieel te " +"maximaliseren." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Onbeperkte commissies." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s minimum uitbetalingsbedrag." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Uitbetalingen zijn in USD en worden maandelijks uitgevoerd via PayPal" -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we alleen commissies uit die ouder dan 30 dagen zijn." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we " +"alleen commissies uit die ouder dan 30 dagen zijn." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "E-mailadres" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Volledige naam" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal account e-mailadres" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Waar ga je de %s promoten?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Voer de domeinnaam in van je website of andere websites waar vanaf je van plan bent de %ste gaan promoten." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Voer de domeinnaam in van je website of andere websites waar vanaf je van " +"plan bent de %ste gaan promoten." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Voeg nog een domein toe" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Extra Domeinen" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Extra domeinen vanaf waar je het product gaat promoten." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promotie methodes" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social media (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobiele apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Website, mail, and social media statistieken (optioneel)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Voel je alsjeblieft vrij om elke relevante website of social media statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, aantal e-mail abonnees , volgers, etc. (we zullen deze informatie vertrouwelijk houden)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Voel je alsjeblieft vrij om elke relevante website of social media " +"statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, " +"aantal e-mail abonnees , volgers, etc. (we zullen deze informatie " +"vertrouwelijk houden)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Hoe ga je ons promoten?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om %s te gaan promoten." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om " +"%s te gaan promoten." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuleer" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Wordt een affiliate" @@ -2463,7 +2530,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2478,11 +2548,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2515,30 +2580,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Bijwerken" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail direct na de aankoop:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail direct " +"na de aankoop:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Update Licentie" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Akkoord & Activeer Licentie" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2559,10 +2636,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Er is een nieuwe versie van %s beschikbaar." @@ -2575,42 +2648,64 @@ msgstr "%svoor toegang to versie %s beveiliging & features updates en support." msgid "New Version Available" msgstr "Nieuwe Versie Beschikbaar" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Verzend Licentiesleutel" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Voer hieronder het e-mailadres in dat je gebruikt hebt voor de upgrade en we zullen je jouw licentiesleutel opnieuw toesturen." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Voer hieronder het e-mailadres in dat je gebruikt hebt voor de upgrade en " +"we zullen je jouw licentiesleutel opnieuw toesturen." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Het deactiveren en deïnstalleren van de %s zal de licentie automatisch uitschakelen, die je dan kan gebruiken op een andere site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Het deactiveren en deïnstalleren van de %s zal de licentie automatisch " +"uitschakelen, die je dan kan gebruiken op een andere site." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Mocht je NIET van plan zijn om deze %s te gebruiken op deze site (of op een andere site) - wil je dan het %s ook opzeggen?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Mocht je NIET van plan zijn om deze %s te gebruiken op deze site (of op een " +"andere site) - wil je dan het %s ook opzeggen?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Annuleer %s - Ik heb niet meer enige beveiligings- en uitbreidingsupdates of ondersteuning voor %s nodig, omdat ik niet van plan ben de %sop deze of enige andere site te gebruiken." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Annuleer %s - Ik heb niet meer enige beveiligings- en uitbreidingsupdates " +"of ondersteuning voor %s nodig, omdat ik niet van plan ben de %sop deze of " +"enige andere site te gebruiken." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Annuleer %s niet - Ik wil nog steeds zowel beveiligings- en uitbreidingsupdates ontvangen als contact kunnen opnemen met Support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"Annuleer %s niet - Ik wil nog steeds zowel beveiligings- en " +"uitbreidingsupdates ontvangen als contact kunnen opnemen met Support." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Als je licentie afloopt, zul je %s niet meer kunnen gebruiken, tenzij je het opnieuw activeert met een geldige Premium-licentie." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Als je licentie afloopt, zul je %s niet meer kunnen gebruiken, tenzij je " +"het opnieuw activeert met een geldige Premium-licentie." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2620,17 +2715,32 @@ msgstr "%s annuleren?" msgid "Proceed" msgstr "Doorgaan" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Annuleer %s & Ga Door" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "U bent 1-klik verwijderd van het starten van uw %1$s-daagse gratis proefperiode van het %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"U bent 1-klik verwijderd van het starten van uw %1$s-daagse gratis " +"proefperiode van het %2$s plan." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Voordat we de proefperiode kunnen starten, vragen we je, in overeenstemming met de Wordpress.org-richtlijnen, in te stemmen je gebruikers- en niet-sensitieve site informatie door de %s periodiek te laten verzenden naar %s om te controleren op nieuwe versies en je proefversie te valideren." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Voordat we de proefperiode kunnen starten, vragen we je, in overeenstemming " +"met de Wordpress.org-richtlijnen, in te stemmen je gebruikers- en " +"niet-sensitieve site informatie door de %s periodiek te laten verzenden " +"naar %s om te controleren op nieuwe versies en je proefversie te valideren." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2656,14 +2766,6 @@ msgstr "Premium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activeer licentie op alle sites in het netwerk." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Pas toe op alle sites in het netwerk." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Activeer licentie op alle in behandeling zijnde sites." @@ -2672,19 +2774,31 @@ msgstr "Activeer licentie op alle in behandeling zijnde sites." msgid "Apply on all pending sites." msgstr "Pas toe op alle in behandeling zijnde sites." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 -msgid "allow" -msgstr "toestaan" - -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 -msgid "delegate" +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activeer licentie op alle sites in het netwerk." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Pas toe op alle sites in het netwerk." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 +msgid "allow" +msgstr "toestaan" + +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 +msgid "delegate" msgstr "deligeren" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "overslaan" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klik voor het op volle-grootte bekijken van schermafbeelding %d" @@ -2696,39 +2810,45 @@ msgstr "Onbeperkte Updates" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s beschikbaar" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Laatste licentie" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Geannuleerd" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Geen verloopdatum" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Geannuleerd" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2753,7 +2873,9 @@ msgstr "Abonnement" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Sorry voor het ongemak en we zijn er om je te helpen als je daartoe de kans geeft.." +msgstr "" +"Sorry voor het ongemak en we zijn er om je te helpen als je daartoe de kans " +"geeft.." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2771,7 +2893,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2793,7 +2916,9 @@ msgstr "Snelle terugkoppeling" #: templates/forms/deactivation/form.php:134 msgid "If you have a moment, please let us know why you are %s" -msgstr "We zouden het zeer op prijs stellen, als je even hebt, om ons alsjeblieft te laten weten waarom je gaat %s" +msgstr "" +"We zouden het zeer op prijs stellen, als je even hebt, om ons alsjeblieft " +"te laten weten waarom je gaat %s" #: templates/forms/deactivation/form.php:134 msgid "deactivating" @@ -2805,7 +2930,9 @@ msgstr "overschakelen" #: templates/forms/deactivation/form.php:448 msgid "Kindly tell us the reason so we can improve." -msgstr "Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij verbeteringen kunnen doorvoeren." +msgstr "" +"Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij " +"verbeteringen kunnen doorvoeren." #: templates/forms/deactivation/form.php:478 msgid "Snooze & %s" @@ -2824,5 +2951,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Klik hier om de plug-in anoniem te gebruiken" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Misschien heb je het gemist, maar je hoeft geen gegevens te delen en kunt de opt-in %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Misschien heb je het gemist, maar je hoeft geen gegevens te delen en kunt " +"de opt-in %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Hoera" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s werkt niet zonder %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s werkt niet zonder de plug-in." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oeps" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hoi" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Voltooi \"%s\" Activatie Nu" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Prijzen" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Prijs" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Toppie" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Proefperiode" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Gefeliciteerd" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Aankondiging" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Start gratis proefperidoe" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Koop" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Upgrade" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Downgrade" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Bewerk" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Toon" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Verberg" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Sla Over" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Verwijder" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Bijwerken" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Opt Out" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Opt In" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Download Nieuwste Gratis Versie" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Download Nieuwste" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beschrijving" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installatie" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "Veelgestelde Vragen" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Wijzigingen Log" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Reviews" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Andere Notities" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Features & Prijzen" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s Plan" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Beste" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Maandelijks" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Jaarlijks" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Jaarlijks" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Eenmalig" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s gefactureerd " + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mnd" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "jaar" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Versie" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Auteur" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s geleden" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sync Licentie" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Geen Geheim" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licentie" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activeer" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hoi %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "E-mail versturen" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activeren" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Uit" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Aan" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debugging" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK Versies" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Verbonden" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Geblokkeerd" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sites" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Verloopdatum" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Producten" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Pad" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s beschikbaar" diff --git a/languages/freemius-ru_RU.mo b/languages/freemius-ru_RU.mo index c4982fd53ce6acd0b8ef2abfa7568e98c06167b5..781c0edd5a0f5637372614f2a075417a2238fca7 100644 GIT binary patch delta 7375 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 acII2Ysv|1<{yV(6Z|m@=9gRnv9{E2(FEl{_ delta 9495 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 diff --git a/languages/freemius-ru_RU.po b/languages/freemius-ru_RU.po index 86aa6d0d9..7cc847015 100644 --- a/languages/freemius-ru_RU.po +++ b/languages/freemius-ru_RU.po @@ -1,875 +1,980 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Leo Fajardo , 2021 -# Robert Premmerce , 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2021\n" -"Language-Team: Russian (Russia) (http://www.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n" -"Language: ru_RU\n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Russian (Russia) " +"(https://app.transifex.com/freemius/teams/184351/ru_RU/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;" -"fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь " +"с sdk@freemius.com с текущей ошибкой." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Ошибка" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Я нашел лучший %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Какое название %s?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Деактивация" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Переключатель шаблона " -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Другие" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "%s больше не понадобится." -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "%s требовалась на короткое время" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s повредила мой сайт" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s внезапно перестала работать " -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Я больше не могу оплачивать это. " -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Какая стоимость была бы для Вас приемлемой? " -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Я не хочу делиться личной информацией с Вами" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s не сработала" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Я не могу понять как сделать так, чтобы оно работало" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. " +msgstr "" +"%s отличная возможность, но мне нужен определенный функционал, который вы " +"не поддерживаете. " -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Какой функционал?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s не работает" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. " +msgstr "" +"Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли " +"исправить его для дальнейшего использования. " -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Это не то, что я искал. " -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Что именно Вы ищите? " -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s не сработала как ожидалось" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Каковы были Ваши ожидания? " -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Исправление ошибок Freemius" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Ура!" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s не работает без %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s не может работать без плагина. " - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, -#: includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Упс!" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "Премиум версия %s была успешно активирована. " - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Вау!" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "У Вас есть лицензия %s." -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. " +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "Премиум версия %s была успешно активирована. " + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"Бесплатный период пользования %s закончился. Этот плагин является премиум " +"продуктом и он был деактивирован автоматически. Если Вы планируете " +"дальнейшее его использование, пожалуйста купите лицензию. " -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. " +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s является премиум продуктом. Необходимо купить лицензию перед активацией " +"плагина. " -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Больше информации о %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Купите лицензию " -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "Начать тестовый период" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "Начать тестовый период" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Вам осталось совсем немножко %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Закончить активацию %s сейчас " - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Мы усовершенствовали в %s, %s для лучшей работы " -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Обновление %s было успешно завершено" -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Функционал плагина " -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Плагин " -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Шаблон " -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. " +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Извините, нам не удалось обновить электронный адрес. Другой пользователь с " +"таким же адресом уже был зарегистрирован. " -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\"" +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" " +"Сменить права использования\"" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Сменить владельца лицензии " -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? " - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Активная лицензия выданная на этот электронный адрес не была найдена. Вы " +"уверены, что предоставили правильный электронный адрес?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что " +"предоставили правильный адрес? " -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Ваша учетная запись была успешно активирована согласно плану %s" - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Ваш тестовый период успешно начат" -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Ваша учетная запись была успешно активирована согласно плану %s" + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Невозможно активировать %s" -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Пожалуйста, напишите нам сообщение следующего содержания:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Сделать апгрейд " -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Начать тестовый период" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Цены " -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Начать тестовый период" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Партнерство " -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Личный кабинет" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Контакты " -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Настройки плагина " -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Цены" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Форум поддержки " -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Все верно!" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Ваш %s план был успешно обновлен" -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "Покупка %s плагина успешно состоялась" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Скачай последнюю версию" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку." +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Вероятно один из параметров является неверным. Обновите свой Public Key, " +"Secret Key&User ID и повторите попытку." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Ошибка сервера" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Хм..." - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. " - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Тестовый период" +#: includes/class-freemius.php:21524 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы " +"обновляли или меняли свой тарифный план, то вероятно существуют какие-то " +"трудности связанные с Вашим программным обеспечением. Извините. " -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. " +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой " +"тарифный план не меняется. " -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Пожалуйста, напишите нам сообщение здесь. " -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Ваш тарифный план был успешно изменен на %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе." +msgstr "" +"Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться " +"бесплатной версией %s на бессрочной основе." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. " +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, " +"пожалуйста свяжитесь с нашей службой поддержки. " -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. " +#: includes/class-freemius.php:21595 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться " +"всеми возможностями %s продлив Вашу лицензию. Вы также будете получать " +"доступ к обновлениям и поддержке. " -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "" -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Вероятно возникли трудности с активацией лицензии. " -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Ваша лицензия была успешно активирована. " -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. " -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Вероятно деактивация лицензии не состоялась. " -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K." -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Вы уже пользуетесь тестовой версией %s " -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Вы уже использовали Ваш тестовый период" -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Тарифные планы %s не предусматривают тестовый период. " + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Тарифного плана %s не существует, поэтому Вы не можете начать тестовый период. " +msgstr "" +"Тарифного плана %s не существует, поэтому Вы не можете начать тестовый " +"период. " -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Тарифный план %s не предусматривает тестового периода. " -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Тарифные планы %s не предусматривают тестовый период. " - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "Возможно, Ваш тестовый период уже закончился. " -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"К сожалению у нас возникли трудности с отменой Вашего тестового периода. " +"Пожалуйста, повторите попытку через несколько минут." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Ваш бесплатный тестовый период был успешно отменен. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Вероятно, Вы пользуетесь последней версией" + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Все прошло хорошо!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Релиз версии %s состоялся. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Пожалуйста, скачайте %s" -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "Последняя версия %s здесь" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Новое " -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Вероятно, Вы пользуетесь последней версией" - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Все прошло хорошо!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Письмо подтверждение было только что отправлено на %s. Если Вы не получите " +"его через 5 минут, пожалуйста, проверьте папку спам." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Отлично!" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23017 -msgid "Thank you!" +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23058 +msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. " +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Спасибо, что подтвердили изменение прав использования. Вам отправлено " +"письмо на %s для окончательного подтверждения. " -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%я является новым владельцем аккаунта" -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Поздравления! " +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Ваше имя было успешно обновлено" -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Пожалуйста, введите Ваше полное имя" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Ваше имя было успешно обновлено" - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Вы успешно обновили Ваш %s" -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. " - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Внимание!" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Привет!" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Сообщаем, что информация о дополнительных настройках %s предоставляется со " +"стороннего сервера. " -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. " +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум " +"возможностями на протяжении %d - дневного тестового периода. " -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. " -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Не требуются данные платежной карты" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Начни тестовый период!" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!" +#: includes/class-freemius.php:24234 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам " +"нравится %s, Вы можете стать нашим представителем и зарабатывать!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Узнать больше" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Активировать лицензию" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Изменить лицензию " -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Отказаться от использования" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Присоединиться" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Отказаться от использования" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Скачайте последнюю версию %s" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Загрузите и активируйте скачанную версию" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Как загрузить и активировать?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Ваш тарифный план был успешно изменен. " -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Авто установка работает только для зарегистрированных пользователей." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Неверный ID модуля" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Премиум версия плагина была установлена" + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Премиум версия уже активирована" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией" -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. " - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "Премиум версия плагина была установлена" +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию " +"кода. " -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Просмотр платных возможностей" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" +#: includes/class-freemius.php:25874 +msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "" -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +#: includes/class-freemius.php:25894 +msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25816 -msgid "Thank you so much for using our products!" +#: includes/class-freemius.php:25903 +msgid "Products" msgstr "" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25836 -msgid "%s and its add-ons" +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25845 -msgid "Products" +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." msgstr "" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "" -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25924 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "" -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -877,605 +982,523 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Установка плагина: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. " +msgstr "" +"Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои " +"данные. " -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. " +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена " +"имени не срабатывает. " #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Купить" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Начать мой бесплатный %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Провести обновления сейчас " - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Установить сейчас " -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" msgstr "" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Скачать последнюю версию" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Провести обновления сейчас " -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Активируйте этот функционал " -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Активировать бесплатную версию?" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Активировать " -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Описание " - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Установка " - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "Часто задаваемые вопросы " - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Снимки экрана " -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Журнал изменений " - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Отзывы " - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Другие заметки " - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Функционал&тарифные планы " - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Установка плагина " -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s план " - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Лучший " - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Помесячно " - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Ежегодно " - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "На бессрочный период " -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Оплачивать %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Один раз в год " - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Один раз " - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Лицензия на один сайт " -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Неограниченная лицензия " -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "до %s сайтов " -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "на один месяц" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "на один год " - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Стоимость " - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Экономия %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Без обязательств платить %s - аннулируй пользование в любое время " -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "После окончания Вашего бесплатного %s, платите всего лиш %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Детальней" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Версия " - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Автор" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Последнее обновление " -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s тому назад " - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Необходима версия WordPress " -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s или выше" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Совместима с " -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Загружен " -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s время " -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s раз " -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Страница плагинов WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Главная страница плагина " -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Инвестировать в разработку плагина " -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Средний рейтинг " -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "Основан на %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s оценка " -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s оценки " -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%звездочка " -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s звездочки " -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Нажмите, чтобы посмотреть отзывы, которые сформировали рейтинг %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Контрибьюторы " -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Предупреждение " -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress " + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Этот плагин не был тестирован с Вашей текущей версией WordPress. " -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress " - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Платный функционал должен быть заявлен в Freemius" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Функционал должен быть заявлен на WordPress.org или Freemius " -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Более новая версия %s установлена " - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Последняя версия установлена" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Более новая версия %s установлена " + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Отказ от пользования тестовым периодом автоматически блокирует доступ ко всем премиум возможностям. Вы уверены, что хотите отказаться?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Отказ от пользования тестовым периодом автоматически блокирует доступ ко " +"всем премиум возможностям. Вы уверены, что хотите отказаться?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "По окончанию срока действия Вашей лицензии, Вы сможете пользоваться бесплатной версией, но у Вас не будет доступа к возможностям %s. " +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"По окончанию срока действия Вашей лицензии, Вы сможете пользоваться " +"бесплатной версией, но у Вас не будет доступа к возможностям %s. " +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Активируйте план %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Автоматическое продление в %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Окончание срока пользования через %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Синхронизация лицензии " - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Отменить тестовый период " -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Изменить план " -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Сделать апгрейд" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Понизить план " - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Бесплатная " -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Тарифный план " - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Бесплатный период пользования " -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr " Детали" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Деактивировать лицензию " -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Вы уверены, что хотите продолжить?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Отменить подписку " -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Синхронизировать " - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Имя" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Электронный адрес " -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "User ID " -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "No ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Public Key " -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Secret Key " -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Нет секрета " +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Лицензионный ключ " -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Тестовый период " -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Лицензионный ключ " - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "не подтвержден " -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Срок действия закончился " +#: templates/account.php:600 +msgid "Free version" +msgstr "Бесплатная версия " -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Премиум версия " -#: templates/account.php:604 -msgid "Free version" -msgstr "Бесплатная версия " +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Срок действия закончился " -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Подтвердите электронный адрес " -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Скачайте версию %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Показать " - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Какой Ваш %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Редактировать " +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Скачайте версию %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Сайтов " -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Лицензия " -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Тарифный план " -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Лицензия " - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Спрятать " - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Обработка данных " -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1488,25 +1511,13 @@ msgid "Add Ons for %s" msgstr "Функционал для %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s секунд " @@ -1515,12 +1526,22 @@ msgid "Automatic Installation" msgstr "Автоматическая установка " #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Автоматическое скачивание и установка %s ( платной версии) %s начнется через %s. Если Вы хотите все сделать в ручном режиме, нажмите на кнопку \"Отменить\" сейчас. " +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Автоматическое скачивание и установка %s ( платной версии) %s начнется " +"через %s. Если Вы хотите все сделать в ручном режиме, нажмите на кнопку " +"\"Отменить\" сейчас. " #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "Процесс установки уже начат и может занять несколько минут. Пожалуйста, подождите окончания процесса и не обновляйте эту страницу. " +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"Процесс установки уже начат и может занять несколько минут. Пожалуйста, " +"подождите окончания процесса и не обновляйте эту страницу. " #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1534,172 +1555,164 @@ msgstr "Оплата " msgid "PCI compliant" msgstr "Жалоба PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Здравствуйте %s" - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Разрешить и продолжить" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Отправить письмо активации еще раз " - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Спасибо %s" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "" - -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "" - #: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "" - #. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:250 +#: templates/connect.php:241 msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#: templates/connect.php:280 -msgid "We're excited to introduce the Freemius network-level integration." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Отправить письмо активации еще раз " -#: templates/connect.php:287 -msgid "%s's paid features" -msgstr "" +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Спасибо %s" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:271 +msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" + +#: templates/connect.php:278 +msgid "%s's paid features" +msgstr "" + +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" + +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Лицензионный ключ" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Не можете найти лицензионный ключ? " -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Пропустить" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "У Вас нет лицензионного ключа?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "У Вас есть лицензионный ключ?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "У Вас нет лицензионного ключа?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Политика Конфиденциальности" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Пользовательское соглашение" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Электронное письмо отправляется Вам на почту " - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Активация " +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "" #: templates/contact.php:78 msgid "Contact" msgstr "Свяжитесь с нами" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Выключить " - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Включить " - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Устранение ошибок" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Действия " @@ -1747,11 +1760,6 @@ msgstr "Ключ " msgid "Value" msgstr "Значение " -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Версии SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "путь SDK" @@ -1772,7 +1780,8 @@ msgstr "Плагины " msgid "Themes" msgstr "Шаблоны " -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Описательная часть URL " @@ -1780,11 +1789,6 @@ msgstr "Описательная часть URL " msgid "Title" msgstr "Название " -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Cостояние Freemius " @@ -1797,21 +1801,6 @@ msgstr "" msgid "Network User" msgstr "" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Соединено " - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Заблокировано " - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" @@ -1821,14 +1810,10 @@ msgid "Simulate Network Upgrade" msgstr "" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s установок " -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Сайтов " - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "" @@ -1837,11 +1822,6 @@ msgstr "" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Удалить" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Функционал модуля %s" @@ -1878,15 +1858,11 @@ msgstr "Активирован " msgid "Blocking" msgstr "Блокирование " -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Тип" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Срок пользования " - #: templates/debug.php:660 msgid "Debug Log" msgstr "Журнал устранения ошибок " @@ -1899,11 +1875,13 @@ msgstr "Все типы" msgid "All Requests" msgstr "Все запросы " -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Файл" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Функция " @@ -1915,7 +1893,8 @@ msgstr "ID процесса " msgid "Logger" msgstr "Программа сохранения изменений " -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Сообщение " @@ -1932,18 +1911,15 @@ msgid "Timestamp" msgstr "Маркер времени " #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Безопасная страница HTTPS %s воспроизводится с внешнего ресурса " -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Поддержка " -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "мс " - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1960,16 +1936,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1981,7 +1963,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1997,10 +1981,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "" @@ -2032,11 +2019,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2046,12 +2028,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2059,7 +2039,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2075,7 +2057,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2083,6 +2070,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2090,8 +2078,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2099,6 +2090,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2110,7 +2102,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2119,7 +2112,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2131,7 +2128,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2143,7 +2142,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2154,11 +2156,6 @@ msgstr "Рассылка " msgid "Updates, announcements, marketing, no spam" msgstr "Новости, объявления, маркетинг, без спама" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Обновить " - #: templates/account/billing.php:33 msgid "Billing" msgstr "Система оплаты " @@ -2171,7 +2168,8 @@ msgstr "Название бизнеса " msgid "Tax / VAT ID" msgstr "ID налога/НДС " -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Поле для адреса %d" @@ -2219,16 +2217,6 @@ msgstr "Количество " msgid "Invoice" msgstr "Счет " -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Отписаться " - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Присоединится " - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2245,11 +2233,6 @@ msgstr "Код" msgid "Length" msgstr "Длинна " -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Путь " - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Основная часть " @@ -2270,21 +2253,18 @@ msgstr "Конец " msgid "Log" msgstr "Журнал изменений " +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "В %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s тому назад " -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "сек" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Синхронизация плагинов и шаблонов " @@ -2293,7 +2273,8 @@ msgstr "Синхронизация плагинов и шаблонов " msgid "Total" msgstr "Итого" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Последний " @@ -2317,143 +2298,187 @@ msgstr "Тип задачи" msgid "Next" msgstr "Следующий " -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Бессрочный " -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Подать заявку на партнерство " -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на %s" +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Из-за нарушения условий партнерства мы вынуждены временно заблокировать Ваш " +"аккаунт. Если у Вас возникли вопросы, пожалуйста, обратитесь в службу " +"поддержки. " -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на протяжении следующих 14 дней и свяжемся с Вами. " +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение " +"отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 " +"дней. " -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Ваш партнерский аккаунт временно недоступен. " -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 дней. " +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на " +"протяжении следующих 14 дней и свяжемся с Вами. " -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Из-за нарушения условий партнерства мы вынуждены временно заблокировать Ваш аккаунт. Если у Вас возникли вопросы, пожалуйста, обратитесь в службу поддержки. " +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на " +"%s" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Вам нравится %s? Стань нашим партнером и зарабатывай ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Порекомендуй %s новым пользователям и зарабатывай %s c каждой успешной продажи. " +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Порекомендуй %s новым пользователям и зарабатывай %s c каждой успешной " +"продажи. " -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Краткое описание программы " -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s вознаграждения, если клиент купит новую лицензию." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Получай вознаграждение за автоматические продления пользования. " -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s данные cookies предоставляются после первого посещения, чтобы максимально увеличить вероятность заработка. " +msgstr "" +"%s данные cookies предоставляются после первого посещения, чтобы " +"максимально увеличить вероятность заработка. " -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Неограниченное вознаграждение " -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s минимальная сумма выплаты " -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Выплаты производятся в долларах США через PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения выплачиваются за покупки, которые были совершены более чем 30 дней назад." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения " +"выплачиваются за покупки, которые были совершены более чем 30 дней назад." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Партнер" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Электронный адрес " -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Полное имя" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Электронный адрес аккаунта PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Где Вы намерены продвигать %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Введите домен Вашего сайта или других сайтов на которых Вы намерены продвигать %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Введите домен Вашего сайта или других сайтов на которых Вы намерены " +"продвигать %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Добавьте другое доменное имя " -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Дополнительные доменные имена " -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Дополнительные доменные имена, где Вы будете продвигать продукт. " -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Методы продвижения " -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Социальные сети ( Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Мобильные приложения " -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Вебсайт, электронный адрес и статистика социальных сетей (не обязательно)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Пожалуйста, предоставьте соответственную статистику вебсайта или страницы социальных сетей, например, количество уникальных посетителей, количество подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). " +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Пожалуйста, предоставьте соответственную статистику вебсайта или страницы " +"социальных сетей, например, количество уникальных посетителей, количество " +"подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). " -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Как Вы намерены продвигать нас?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Пожалуйста, предоставьте максимально детальную информацию о том, как Вы планируете продвигать %s." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Пожалуйста, предоставьте максимально детальную информацию о том, как Вы " +"планируете продвигать %s." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Отмена " -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Стать партнером" @@ -2462,7 +2487,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2477,11 +2505,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2514,30 +2537,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Обновить " #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Пожалуйста введите лицензионный ключ, который Вы получили на электронный адрес сразу после покупки. " +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Пожалуйста введите лицензионный ключ, который Вы получили на электронный " +"адрес сразу после покупки. " #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Обновить лицензию" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Согласиться и активировать лицензию " -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2558,10 +2593,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "" @@ -2574,41 +2605,52 @@ msgstr "" msgid "New Version Available" msgstr "" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Отправить лицензионный ключ" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Введите ниже адрес своей электронной почты, которую Вы использовали для обновлений и мы Вам отправим повторно Ваш лицензионный ключ. " +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Введите ниже адрес своей электронной почты, которую Вы использовали для " +"обновлений и мы Вам отправим повторно Ваш лицензионный ключ. " #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2619,17 +2661,33 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Вы уже на расстоянии одного клика от начала Вашего бесплатного %1$s - дневного тестового периода по тарифному плану %2$s. " +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Вы уже на расстоянии одного клика от начала Вашего бесплатного %1$s - " +"дневного тестового периода по тарифному плану %2$s. " #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "В соответствии с руководством WordPress.org, перед началом тестового периода мы просим, чтобы Вы присоединились к нашему сообществу предоставив информацию о Вашем сайте и также Ваши личные данные, тем самым разрешив %s периодически отправлять сообщения на %s для уведомлений об обновлениях и подтверждения Вашего тестового периода. " +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"В соответствии с руководством WordPress.org, перед началом тестового " +"периода мы просим, чтобы Вы присоединились к нашему сообществу предоставив " +"информацию о Вашем сайте и также Ваши личные данные, тем самым разрешив %s " +"периодически отправлять сообщения на %s для уведомлений об обновлениях и " +"подтверждения Вашего тестового периода. " #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2655,14 +2713,6 @@ msgstr "Премиум " msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "" @@ -2671,19 +2721,31 @@ msgstr "" msgid "Apply on all pending sites." msgstr "" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Кликните, чтобы посмотреть снимок %d на широком экране. " @@ -2695,39 +2757,45 @@ msgstr "Неограниченные обновления " msgid "Localhost" msgstr "Локальный хостинг " -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "Осталось %s " - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Последняя лицензия " +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Аннулирована " - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Бессрочный период пользования " -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Аннулирована " #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2752,7 +2820,9 @@ msgstr "" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Извините за неудобство. Мы будем рады помочь, если Вы нам предоставите эту возможность. " +msgstr "" +"Извините за неудобство. Мы будем рады помочь, если Вы нам предоставите эту " +"возможность. " #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2770,7 +2840,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2823,5 +2894,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Нажмите здесь, чтобы пользоваться плагином анонимно. " #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Возможно, Вы не обратили внимание, но Вы не обязаны делиться никакими данными и можете просто %s кнопку \"Присоединиться\". " +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Возможно, Вы не обратили внимание, но Вы не обязаны делиться никакими " +"данными и можете просто %s кнопку \"Присоединиться\". " + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Ура!" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s не работает без %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s не может работать без плагина. " + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Упс!" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Привет!" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Вау!" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Закончить активацию %s сейчас " + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Цены" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Стоимость " + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Все верно!" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Хм..." + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Тестовый период" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Поздравления! " + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Внимание!" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Начни тестовый период!" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Купить" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Сделать апгрейд" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Понизить план " + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Редактировать " + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Показать " + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Спрятать " + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Пропустить" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Удалить" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Обновить " + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Отписаться " + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Присоединится " + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Скачать последнюю версию" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Описание " + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Установка " + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "Часто задаваемые вопросы " + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Журнал изменений " + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Отзывы " + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Другие заметки " + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Функционал&тарифные планы " + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s план " + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Лучший " + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Помесячно " + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Ежегодно " + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Один раз в год " + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Один раз " + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Оплачивать %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "на один месяц" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "на один год " + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Версия " + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Автор" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s тому назад " + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Синхронизация лицензии " + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Тарифный план " + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Синхронизировать " + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Нет секрета " + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Лицензия " + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Здравствуйте %s" + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Электронное письмо отправляется Вам на почту " + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Активация " + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Выключить " + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Включить " + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Устранение ошибок" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Версии SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Соединено " + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Заблокировано " + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Сайтов " + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Срок пользования " + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "мс " + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Путь " + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "сек" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "Осталось %s " diff --git a/languages/freemius.pot b/languages/freemius.pot index 3bdefb198..adae08a8a 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -1,4 +1,4 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. msgid "" msgstr "" @@ -8,837 +8,845 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" +"X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: includes/class-freemius.php:1748, templates/account.php:947 +#: includes/class-freemius.php:1781, templates/account.php:943 msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 +#: includes/class-freemius.php:2013 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "" -#: includes/class-freemius.php:1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php:2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "" -#: includes/class-freemius.php:2448, templates/forms/resend-key.php:24, templates/forms/user-change.php:29 +#: includes/class-freemius.php:2481, templates/forms/resend-key.php:24, templates/forms/user-change.php:29 msgid "Other" msgstr "" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "" -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "" -#: includes/class-freemius.php:3641, templates/debug.php:24 +#: includes/class-freemius.php:3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "" -#: includes/class-freemius.php:4755 +#. translators: %s: License type (e.g. you have a professional license) +#: includes/class-freemius.php:4828 msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 +#: includes/class-freemius.php:4832 msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:4769, includes/class-freemius.php:21125, includes/class-freemius.php:24783 +#: includes/class-freemius.php:4842, includes/class-freemius.php:21166, includes/class-freemius.php:24835 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "" -#: includes/class-freemius.php:4783 +#: includes/class-freemius.php:4856 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "" -#: includes/class-freemius.php:4784 +#: includes/class-freemius.php:4857 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "" -#: includes/class-freemius.php:4786, includes/class-freemius.php:5978, includes/class-freemius.php:13730, includes/class-freemius.php:14469, includes/class-freemius.php:18281, includes/class-freemius.php:18394, includes/class-freemius.php:18571, includes/class-freemius.php:20856, includes/class-freemius.php:21955, includes/class-freemius.php:22971, includes/class-freemius.php:23101, includes/class-freemius.php:23231, templates/add-ons.php:57 +#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14567, includes/class-freemius.php:18322, includes/class-freemius.php:18435, includes/class-freemius.php:18612, includes/class-freemius.php:20897, includes/class-freemius.php:21996, includes/class-freemius.php:23012, includes/class-freemius.php:23142, includes/class-freemius.php:23285, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "" -#: includes/class-freemius.php:5065 +#: includes/class-freemius.php:5138 msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" msgstr "" -#: includes/class-freemius.php:5645 +#. translators: %s: License type (e.g. you have a professional license) +#: includes/class-freemius.php:5743 +msgid "You have a %s license." +msgstr "" + +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "" -#: includes/class-freemius.php:5657, includes/class-freemius.php:7692 +#: includes/class-freemius.php:5728, includes/class-freemius.php:7765 msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." msgid "W00t" msgstr "" -#: includes/class-freemius.php:5672 -msgid "You have a %s license." -msgstr "" - -#: includes/class-freemius.php:5961 +#: includes/class-freemius.php:6034 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "" -#: includes/class-freemius.php:5965 +#: includes/class-freemius.php:6038 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "" -#: includes/class-freemius.php:5974, templates/add-ons.php:186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php:6047, templates/add-ons.php:186, templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt-in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "" - -#: includes/class-freemius.php:6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - #. translators: %3$s: What the user is expected to receive via email (e.g.: "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 +#: includes/class-freemius.php:7053 msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" -msgstr "" - -#: includes/class-freemius.php:6989 +#: includes/class-freemius.php:7062 msgctxt "Part of the message telling the user what they should receive via email." msgid "a license key" msgstr "" -#: includes/class-freemius.php:6997 +#. translators: %s: activation link (e.g.: Click here) +#: includes/class-freemius.php:7070 msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:7005 +#: includes/class-freemius.php:7078 msgctxt "Part of an activation link message." msgid "Click here" msgstr "" -#: includes/class-freemius.php:7012 +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7085 msgctxt "Part of the message that tells the user to check their spam folder for a specific email." msgid "the product's support email address" msgstr "" -#: includes/class-freemius.php:7018 +#: includes/class-freemius.php:7091 msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." msgstr "" -#: includes/class-freemius.php:7020 +#: includes/class-freemius.php:7093 msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7044 +msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." +msgstr "" + +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "" + +#: includes/class-freemius.php:7048, templates/connect.php:209 +msgid "complete the opt-in" +msgstr "" + +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "" -#: includes/class-freemius.php:7159 +#: includes/class-freemius.php:7232 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "" -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "" -#: includes/class-freemius.php:10441, includes/class-fs-plugin-updater.php:1100, includes/class-fs-plugin-updater.php:1315, includes/class-fs-plugin-updater.php:1322, templates/auto-installation.php:32 +#: includes/class-freemius.php:10527, includes/class-fs-plugin-updater.php:1095, includes/class-fs-plugin-updater.php:1317, includes/class-fs-plugin-updater.php:1310, templates/auto-installation.php:32 msgid "Add-On" msgstr "" -#: includes/class-freemius.php:10443, templates/account.php:411, templates/account.php:419, templates/debug.php:399, templates/debug.php:619 +#: includes/class-freemius.php:10529, templates/account.php:407, templates/account.php:415, templates/debug.php:399, templates/debug.php:619 msgid "Plugin" msgstr "" -#: includes/class-freemius.php:10444, templates/account.php:412, templates/account.php:420, templates/debug.php:399, templates/debug.php:619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php:10530, templates/account.php:408, templates/account.php:416, templates/debug.php:399, templates/debug.php:619, templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "" -#: includes/class-freemius.php:13549 +#: includes/class-freemius.php:13635 msgid "An unknown error has occurred while trying to toggle the license's white-label mode." msgstr "" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php:13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php:13654, templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 +#: includes/class-freemius.php:13829 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "" -#: includes/class-freemius.php:13732 +#: includes/class-freemius.php:13830 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" +#: includes/class-freemius.php:14556 +msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14554 +msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14756 +#: includes/class-freemius.php:14860 msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php:14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14986, templates/forms/premium-versions-upgrade-handler.php:46 +msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14882, templates/forms/premium-versions-upgrade-handler.php:46 -msgid "Renew your license now" +#: includes/class-freemius.php:14974, templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." +#: includes/class-freemius.php:17686, includes/class-freemius.php:21607 +msgid "Your trial has been successfully started." msgstr "" -#: includes/class-freemius.php:17645, includes/class-freemius.php:21566 -msgid "Your trial has been successfully started." +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." msgstr "" -#: includes/class-freemius.php:18279, includes/class-freemius.php:18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:18320, includes/class-freemius.php:18433, includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "" -#: includes/class-freemius.php:18280, includes/class-freemius.php:18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php:18321, includes/class-freemius.php:18434, includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "" -#: includes/class-freemius.php:18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php:18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php:18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php:18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "" -#: includes/class-freemius.php:18937 -msgid "Start Trial" +#: includes/class-freemius.php:18980 +msgid "Pricing" msgstr "" -#: includes/class-freemius.php:18939 -msgid "Pricing" +#: includes/class-freemius.php:18978 +msgid "Start Trial" msgstr "" -#: includes/class-freemius.php:19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "" -#: includes/class-freemius.php:19049, includes/class-freemius.php:19051, templates/account.php:264, templates/debug.php:366 +#: includes/class-freemius.php:19090, includes/class-freemius.php:19092, templates/account.php:260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php:19065, includes/class-freemius.php:19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php:19106, includes/class-freemius.php:19108, includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "" -#: includes/class-freemius.php:19078, includes/class-freemius.php:19080, includes/class-freemius.php:24353, templates/account.php:134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php:19119, includes/class-freemius.php:19121, includes/class-freemius.php:24405, templates/account.php:130, templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "" -#: includes/class-freemius.php:19114 +#: includes/class-freemius.php:19155 msgctxt "ASCII arrow left icon" msgid "←" msgstr "" -#: includes/class-freemius.php:19114 +#: includes/class-freemius.php:19155 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "" -#: includes/class-freemius.php:19116, templates/pricing.php:110 +#: includes/class-freemius.php:19157, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "" -#: includes/class-freemius.php:19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php:19370, includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "" -#: includes/class-freemius.php:20351 +#: includes/class-freemius.php:20392 msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 +#: includes/class-freemius.php:20922 msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:21118 +#. translators: %s:product name, e.g. Facebook add-on was successfully... +#: includes/class-freemius.php:21159 msgid "%s Add-on was successfully purchased." msgstr "" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "" -#: includes/class-freemius.php:21239 +#: includes/class-freemius.php:21280 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php:21239, includes/class-freemius.php:21636, includes/class-freemius.php:21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php:21280, includes/class-freemius.php:21677, includes/class-freemius.php:21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "" -#: includes/class-freemius.php:21470, includes/class-freemius.php:21742, includes/class-freemius.php:21795, includes/class-freemius.php:21902 +#: includes/class-freemius.php:21511, includes/class-freemius.php:21783, includes/class-freemius.php:21836, includes/class-freemius.php:21943 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "" -#: includes/class-freemius.php:21483 +#: includes/class-freemius.php:21524 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:21484, templates/account.php:136, templates/add-ons.php:250, templates/account/partials/addon.php:51 +#: includes/class-freemius.php:21525, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "" -#: includes/class-freemius.php:21489 +#: includes/class-freemius.php:21530 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "" -#: includes/class-freemius.php:21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php:21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "" -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" -#: includes/class-freemius.php:21533 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. +#: includes/class-freemius.php:21574 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21541 +#: includes/class-freemius.php:21582 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "" -#: includes/class-freemius.php:21554 +#: includes/class-freemius.php:21595 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "" -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21621 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "" -#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. +#: includes/class-freemius.php:21623 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21628 +#: includes/class-freemius.php:21669 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "" -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "" -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "" -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "" -#: includes/class-freemius.php:21909 +#: includes/class-freemius.php:21950 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 +#: includes/class-freemius.php:21959 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:21985 -msgid "Plan %s do not exist, therefore, can't start a trial." +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:21996 -msgid "Plan %s does not support a trial period." +#: includes/class-freemius.php:22026 +msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." +#: includes/class-freemius.php:22037 +msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22097 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "" -#: includes/class-freemius.php:22092 +#: includes/class-freemius.php:22133 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22438 -msgid "Version %s was released." +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22438 -msgid "Please download %s." +#: includes/class-freemius.php:22497 +msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22445 -msgid "the latest %s version here" +#: includes/class-freemius.php:22479 +msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22450 -msgid "New" +#: includes/class-freemius.php:22479 +msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." +#: includes/class-freemius.php:22486 +msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22456 -msgid "You are all good!" +#: includes/class-freemius.php:22491 +msgid "New" msgstr "" -#: includes/class-freemius.php:22859 +#: includes/class-freemius.php:22900 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php:23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php:23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." msgstr "" -#: includes/class-freemius.php:23181 +#: includes/class-freemius.php:23225 msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "" - -#: includes/class-freemius.php:23190 +#: includes/class-freemius.php:23239 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "" -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23197 +#: includes/class-freemius.php:23247 msgctxt "as congratulations" msgid "Congrats" msgstr "" -#: includes/class-freemius.php:23214 -msgid "Please provide your full name." +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." msgstr "" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." +#: includes/class-freemius.php:23264 +msgid "Please provide your full name." msgstr "" -#: includes/class-freemius.php:23280 +#. translators: %s: User's account property (e.g. email address, name) +#: includes/class-freemius.php:23334 msgid "You have successfully updated your %s." msgstr "" -#: includes/class-freemius.php:23339 +#: includes/class-freemius.php:23398 msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 +#: includes/class-freemius.php:23511 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "" -#: includes/class-freemius.php:23460 +#: includes/class-freemius.php:23512 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php:24089 +#: includes/class-freemius.php:24141 msgctxt "exclamation" msgid "Hey" msgstr "" -#: includes/class-freemius.php:24089 +#: includes/class-freemius.php:24141 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "" -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "" -#: includes/class-freemius.php:24105, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:24157, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" -#: includes/class-freemius.php:24182 +#: includes/class-freemius.php:24234 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "" -#: includes/class-freemius.php:24377, templates/account.php:573, templates/account.php:725, templates/connect.php:221, templates/connect.php:447, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php:24429, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 msgid "Activate License" msgstr "" -#: includes/class-freemius.php:24378, templates/account.php:667, templates/account.php:724, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 +#: includes/class-freemius.php:24430, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 msgid "Change License" msgstr "" -#: includes/class-freemius.php:24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "" - -#: includes/class-freemius.php:24487, includes/class-freemius.php:24493, templates/account/partials/site.php:49, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24545, includes/class-freemius.php:24539, templates/account/partials/site.php:49, templates/account/partials/site.php:170 msgid "Opt In" msgstr "" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" +#: includes/class-freemius.php:24537, templates/account/partials/site.php:170 +msgid "Opt Out" msgstr "" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "" -#: includes/class-freemius.php:24755 +#. translators: %s: Plan title +#: includes/class-freemius.php:24807 msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 +#: includes/class-freemius.php:24979 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php:25106, includes/class-freemius.php:25139, includes/class-fs-plugin-updater.php:1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php:25158, includes/class-freemius.php:25191, includes/class-fs-plugin-updater.php:1289, includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php:25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php:25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php:25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25129 +#: includes/class-freemius.php:25181 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "" -#: includes/class-freemius.php:25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "" - -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" +#: includes/class-freemius.php:25874 +msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" +#: includes/class-freemius.php:25875 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "" -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +#: includes/class-freemius.php:25894 +msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25816 -msgid "Thank you so much for using our products!" +#: includes/class-freemius.php:25903 +msgid "Products" msgstr "" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25836 -msgid "%s and its add-ons" +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25845 -msgid "Products" +#: includes/class-freemius.php:25870 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "" -#: includes/class-freemius.php:25852, templates/connect.php:322 +#: includes/class-freemius.php:25910, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php:25853, templates/connect.php:323 +#: includes/class-freemius.php:25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25854, templates/connect.php:328 +#: includes/class-freemius.php:25912, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php:25856, templates/connect.php:330 +#: includes/class-freemius.php:25914, templates/connect.php:321 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25866 +#: includes/class-freemius.php:25924 msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php:25868, templates/connect.php:337 +#: includes/class-freemius.php:25926, templates/connect.php:328 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "" @@ -850,15 +858,15 @@ msgstr "" msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php:335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php:368, includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php:337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php:373, includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php:338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php:374, includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -866,15 +874,15 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1582 +#: includes/class-fs-plugin-updater.php:1577 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "" @@ -887,24 +895,25 @@ msgctxt "verb" msgid "Purchase" msgstr "" +#. translators: %s: N-days trial #: includes/fs-plugin-info-dialog.php:547 msgid "Start my free %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" +#: includes/fs-plugin-info-dialog.php:755 +msgid "Install Free Version Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:746, templates/account.php:656 -msgid "Install Update Now" +#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:423, templates/account/partials/addon.php:370 +msgid "Install Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:755 -msgid "Install Free Version Now" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:370, templates/account/partials/addon.php:423 -msgid "Install Now" +#: includes/fs-plugin-info-dialog.php:746, templates/account.php:652 +msgid "Install Update Now" msgstr "" #: includes/fs-plugin-info-dialog.php:772 @@ -912,558 +921,569 @@ msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:773, templates/account.php:114, templates/add-ons.php:37, templates/account/partials/addon.php:30 +#: includes/fs-plugin-info-dialog.php:773, templates/account.php:110, templates/add-ons.php:37, templates/account/partials/addon.php:30 msgctxt "as download latest version" msgid "Download Latest" msgstr "" -#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, templates/account/partials/addon.php:361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, templates/account/partials/addon.php:417, templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "" -#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:437 msgid "Activate Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:791, templates/account.php:138, templates/add-ons.php:330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php:791, templates/account.php:134, templates/add-ons.php:330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "" -#: includes/fs-plugin-info-dialog.php:1003 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Description" msgstr "" -#: includes/fs-plugin-info-dialog.php:1004 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Installation" msgstr "" -#: includes/fs-plugin-info-dialog.php:1005 +#: includes/fs-plugin-info-dialog.php:1001 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "" -#: includes/fs-plugin-info-dialog.php:1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php:1002, templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "" -#: includes/fs-plugin-info-dialog.php:1007 +#: includes/fs-plugin-info-dialog.php:1003 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "" -#: includes/fs-plugin-info-dialog.php:1008 +#: includes/fs-plugin-info-dialog.php:1004 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "" -#: includes/fs-plugin-info-dialog.php:1009 +#: includes/fs-plugin-info-dialog.php:1005 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "" -#: includes/fs-plugin-info-dialog.php:1024 +#: includes/fs-plugin-info-dialog.php:1020 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "" -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "" -#: includes/fs-plugin-info-dialog.php:1106 +#: includes/fs-plugin-info-dialog.php:1102 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "" -#: includes/fs-plugin-info-dialog.php:1132 +#: includes/fs-plugin-info-dialog.php:1128 msgctxt "e.g. the best product" msgid "Best" msgstr "" -#: includes/fs-plugin-info-dialog.php:1138, includes/fs-plugin-info-dialog.php:1158 +#: includes/fs-plugin-info-dialog.php:1134, includes/fs-plugin-info-dialog.php:1154 msgctxt "as every month" msgid "Monthly" msgstr "" -#: includes/fs-plugin-info-dialog.php:1141 +#: includes/fs-plugin-info-dialog.php:1137 msgctxt "as once a year" msgid "Annual" msgstr "" -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1158, includes/fs-plugin-info-dialog.php:1160, includes/fs-plugin-info-dialog.php:1162 +#: includes/fs-plugin-info-dialog.php:1154, includes/fs-plugin-info-dialog.php:1156, includes/fs-plugin-info-dialog.php:1158 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1160 +#: includes/fs-plugin-info-dialog.php:1156 msgctxt "as once a year" msgid "Annually" msgstr "" -#: includes/fs-plugin-info-dialog.php:1162 +#: includes/fs-plugin-info-dialog.php:1158 msgctxt "as once a year" msgid "Once" msgstr "" -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "" -#: includes/fs-plugin-info-dialog.php:1182, templates/plugin-info/features.php:82 +#: includes/fs-plugin-info-dialog.php:1178, templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "" -#: includes/fs-plugin-info-dialog.php:1189, templates/plugin-info/features.php:80 +#: includes/fs-plugin-info-dialog.php:1185, templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "" -#: includes/fs-plugin-info-dialog.php:1243 +#: includes/fs-plugin-info-dialog.php:1239 msgctxt "noun" msgid "Price" msgstr "" -#: includes/fs-plugin-info-dialog.php:1291 +#. translators: %s: Discount (e.g. discount of $5 or 10%) +#: includes/fs-plugin-info-dialog.php:1287 msgid "Save %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "" -#: includes/fs-plugin-info-dialog.php:1319, templates/account.php:125, templates/debug.php:232, templates/debug.php:269, templates/debug.php:518, templates/account/partials/addon.php:41 +#: includes/fs-plugin-info-dialog.php:1315, templates/account.php:121, templates/debug.php:232, templates/debug.php:269, templates/debug.php:518, templates/account/partials/addon.php:41 msgctxt "product version" msgid "Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1326 +#: includes/fs-plugin-info-dialog.php:1322 msgctxt "as the plugin author" msgid "Author" msgstr "" -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "" -#: includes/fs-plugin-info-dialog.php:1338, templates/account.php:544 +#. translators: %s: time period (e.g. "2 hours" ago) +#: includes/fs-plugin-info-dialog.php:1334, templates/account.php:540 msgctxt "x-ago" msgid "%s ago" msgstr "" -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1350, includes/fs-plugin-info-dialog.php:1370 +#. translators: %s: Version number. +#: includes/fs-plugin-info-dialog.php:1346, includes/fs-plugin-info-dialog.php:1366 msgid "%s or higher" msgstr "" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "" -#: includes/fs-plugin-info-dialog.php:1383 +#. translators: %s: 1 or One (Number of times downloaded) +#: includes/fs-plugin-info-dialog.php:1379 msgid "%s time" msgstr "" -#: includes/fs-plugin-info-dialog.php:1385 +#. translators: %s: Number of times downloaded +#: includes/fs-plugin-info-dialog.php:1381 msgid "%s times" msgstr "" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "" -#: includes/fs-plugin-info-dialog.php:1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php:1410, includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1432 +#. translators: %s: 1 or One +#: includes/fs-plugin-info-dialog.php:1428 msgid "%s rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1434 +#. translators: %s: Number larger than 1 +#: includes/fs-plugin-info-dialog.php:1430 msgid "%s ratings" msgstr "" -#: includes/fs-plugin-info-dialog.php:1449 +#. translators: %s: 1 or One +#: includes/fs-plugin-info-dialog.php:1445 msgid "%s star" msgstr "" -#: includes/fs-plugin-info-dialog.php:1451 +#. translators: %s: Number larger than 1 +#: includes/fs-plugin-info-dialog.php:1447 msgid "%s stars" msgstr "" -#: includes/fs-plugin-info-dialog.php:1463 +#. translators: %s: # of stars (e.g. 5 stars) +#: includes/fs-plugin-info-dialog.php:1459 msgid "Click to see reviews that provided a rating of %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 +#. translators: %s: URL to Update PHP page. +#: includes/fs-plugin-info-dialog.php:1522 msgid "Click here to learn more about updating PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php:1538, includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:1587 +msgid "Latest Version Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:1588 +msgid "Latest Free Version Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1591 -msgid "Latest Version Installed" +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1592 -msgid "Latest Free Version Installed" +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" msgstr "" -#: templates/account.php:115, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:313 +#: templates/account.php:111, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php:116, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:314 +#: templates/account.php:112, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:118, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:316 +#: templates/account.php:114, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:316 msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." msgstr "" -#: templates/account.php:119, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:317 +#: templates/account.php:115, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:317 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php:120, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36 +#: templates/account.php:116, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "" -#: templates/account.php:121, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:318 +#: templates/account.php:117, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:318 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "" -#: templates/account.php:122, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:319 +#: templates/account.php:118, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:319 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "" #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:124, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:40 +#: templates/account.php:120, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:127, templates/account/partials/addon.php:43, templates/account/partials/site.php:293 +#: templates/account.php:123, templates/account/partials/addon.php:43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:129, templates/account/partials/addon.php:45, templates/account/partials/site.php:295 +#: templates/account.php:125, templates/account/partials/addon.php:45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "" -#: templates/account.php:130 +#: templates/account.php:126 msgctxt "as synchronize license" msgid "Sync License" msgstr "" -#: templates/account.php:131, templates/account/partials/addon.php:46 +#: templates/account.php:127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "" -#: templates/account.php:132, templates/account/partials/addon.php:47 +#: templates/account.php:128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "" -#: templates/account.php:133, templates/account/partials/addon.php:48 +#: templates/account.php:129, templates/account/partials/addon.php:48 msgctxt "verb" msgid "Upgrade" msgstr "" -#: templates/account.php:135, templates/account/partials/addon.php:50, templates/account/partials/site.php:320 +#: templates/account.php:131, templates/account/partials/addon.php:50, templates/account/partials/site.php:320 msgctxt "verb" msgid "Downgrade" msgstr "" -#: templates/account.php:137, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33 +#: templates/account.php:133, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33 msgid "Free" msgstr "" -#: templates/account.php:139, templates/debug.php:412, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:54 +#: templates/account.php:135, templates/debug.php:412, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:54 msgctxt "as product pricing plan" msgid "Plan" msgstr "" -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "" -#: templates/account.php:290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php:286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php:322, templates/account/partials/addon.php:236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php:318, templates/account/partials/addon.php:236, templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "" -#: templates/account.php:345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php:341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "" -#: templates/account.php:345, templates/account/partials/addon.php:260 +#: templates/account.php:341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "" -#: templates/account.php:374, templates/account/partials/addon.php:345 +#: templates/account.php:370, templates/account/partials/addon.php:345 msgctxt "as synchronize" msgid "Sync" msgstr "" -#: templates/account.php:389, templates/debug.php:575 +#: templates/account.php:385, templates/debug.php:575 msgid "Name" msgstr "" -#: templates/account.php:395, templates/debug.php:576 +#: templates/account.php:391, templates/debug.php:576 msgid "Email" msgstr "" -#: templates/account.php:402, templates/debug.php:410, templates/debug.php:625 +#: templates/account.php:398, templates/debug.php:410, templates/debug.php:625 msgid "User ID" msgstr "" -#: templates/account.php:420, templates/account.php:738, templates/account.php:789, templates/debug.php:267, templates/debug.php:404, templates/debug.php:515, templates/debug.php:574, templates/debug.php:623, templates/debug.php:702, templates/account/payments.php:35, templates/debug/logger.php:21 +#: templates/account.php:416, templates/account.php:734, templates/account.php:785, templates/debug.php:267, templates/debug.php:404, templates/debug.php:515, templates/debug.php:574, templates/debug.php:623, templates/debug.php:702, templates/account/payments.php:35, templates/debug/logger.php:21 msgid "ID" msgstr "" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "" -#: templates/account.php:435, templates/debug.php:274, templates/debug.php:413, templates/debug.php:519, templates/debug.php:578, templates/account/partials/site.php:228 +#: templates/account.php:431, templates/debug.php:274, templates/debug.php:413, templates/debug.php:519, templates/debug.php:578, templates/account/partials/site.php:228 msgid "Public Key" msgstr "" -#: templates/account.php:441, templates/debug.php:414, templates/debug.php:520, templates/debug.php:579, templates/account/partials/site.php:241 +#: templates/account.php:437, templates/debug.php:414, templates/debug.php:520, templates/debug.php:579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "" -#: templates/account.php:444 +#: templates/account.php:440 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "" -#: templates/account.php:471, templates/account/partials/site.php:120, templates/account/partials/site.php:122 -msgid "Trial" +#: templates/account.php:494, templates/debug.php:631, templates/account/partials/site.php:262 +msgid "License Key" msgstr "" -#: templates/account.php:498, templates/debug.php:631, templates/account/partials/site.php:262 -msgid "License Key" +#: templates/account.php:467, templates/account/partials/site.php:122, templates/account/partials/site.php:120 +msgid "Trial" msgstr "" -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "" -#: templates/account.php:544, templates/account/partials/addon.php:195 -msgid "Expired" +#: templates/account.php:600 +msgid "Free version" msgstr "" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "" -#: templates/account.php:604 -msgid "Free version" +#: templates/account.php:540, templates/account/partials/addon.php:195 +msgid "Expired" msgstr "" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "" -#: templates/account.php:630 -msgid "Download %s Version" +#: templates/account.php:689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php:676 +msgid "What is your %s?" msgstr "" -#: templates/account.php:664, templates/account.php:927, templates/account/partials/site.php:250, templates/account/partials/site.php:272 +#: templates/account.php:684, templates/account/billing.php:21 msgctxt "verb" -msgid "Show" +msgid "Edit" msgstr "" -#: templates/account.php:680 -msgid "What is your %s?" +#: templates/account.php:660, templates/account.php:923, templates/account/partials/site.php:250, templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" msgstr "" -#: templates/account.php:688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" +#: templates/account.php:626 +msgid "Download %s Version" msgstr "" -#: templates/account.php:693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "" -#: templates/account.php:739, templates/debug.php:407 +#: templates/account.php:735, templates/debug.php:407 msgid "Address" msgstr "" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "" -#: templates/account.php:792 +#: templates/account.php:788 msgctxt "as software license" msgid "License" msgstr "" -#: templates/account.php:921 +#: templates/account.php:917 msgctxt "verb" msgid "Hide" msgstr "" -#: templates/account.php:943, templates/forms/data-debug-mode.php:31, templates/forms/deactivation/form.php:358, templates/forms/deactivation/form.php:389 +#: templates/account.php:939, templates/forms/data-debug-mode.php:31, templates/forms/deactivation/form.php:358, templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php:1004, templates/account.php:1021, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:178 +#: templates/account.php:1000, templates/account.php:1017, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php:1019, templates/forms/deactivation/form.php:195 +#: templates/account.php:1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php:1022, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:179 +#: templates/account.php:1018, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 +#: templates/account.php:1032 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1489,11 +1509,12 @@ msgctxt "installed add-on" msgid "Installed" msgstr "" -#: templates/admin-notice.php:13, templates/forms/license-activation.php:243, templates/forms/resend-key.php:80 +#: templates/admin-notice.php:17, templates/forms/license-activation.php:245, templates/forms/resend-key.php:80 msgctxt "as close a window" msgid "Dismiss" msgstr "" +#. translators: %s: Number of seconds #: templates/auto-installation.php:45 msgid "%s sec" msgstr "" @@ -1523,143 +1544,144 @@ msgid "PCI compliant" msgstr "" #. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 +#: templates/connect.php:118 msgctxt "greeting" msgid "Hey %s," msgstr "" -#: templates/connect.php:187 -msgid "Never miss an important update" +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version (e.g., "1.2.3") +#: templates/connect.php:186 +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "" -#: templates/connect.php:209 -msgid "Re-send activation email" +#. translators: %s: module type (plugin, theme, or add-on) +#: templates/connect.php:236 +msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:213 -msgid "Thanks %s!" +#: templates/connect.php:238 +msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." msgstr "" -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:227 +msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:200 +msgid "Re-send activation email" msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:204 +msgid "Thanks %s!" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:205 +msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php:283 +#: templates/connect.php:285 +msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +msgstr "" + +#: templates/connect.php:274 msgid "During the update process we detected %d site(s) that are still pending license activation." msgstr "" -#: templates/connect.php:285 +#: templates/connect.php:276 msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." msgstr "" -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "" -#: templates/connect.php:292 +#: templates/connect.php:283 msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "" - -#: templates/connect.php:303, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:42 +#: templates/connect.php:294, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:42 msgid "License key" msgstr "" -#: templates/connect.php:306, templates/forms/license-activation.php:22 +#: templates/connect.php:297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "" -#: templates/connect.php:369, templates/connect.php:693, templates/forms/deactivation/retry-skip.php:20 +#: templates/connect.php:360, templates/connect.php:690, templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" msgstr "" -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "If you click it, this decision will be delegated to the sites administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" +#: templates/connect.php:416 +msgid "For delivery of security & feature updates, and license management, %s needs to" msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "" -#: templates/connect.php:459 -msgid "License Agreement" +#: templates/connect.php:455 +msgid "Terms of Service" msgstr "" -#: templates/connect.php:459 -msgid "Terms of Service" +#: templates/connect.php:453 +msgid "License Agreement" msgstr "" -#: templates/connect.php:879 +#: templates/connect.php:876 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "" -#: templates/connect.php:880 +#: templates/connect.php:877 msgctxt "as activating plugin" msgid "Activating" msgstr "" @@ -1808,6 +1830,7 @@ msgstr "" msgid "Simulate Network Upgrade" msgstr "" +#. translators: %s: 'plugin' or 'theme' #: templates/debug.php:398 msgid "%s Installs" msgstr "" @@ -1919,6 +1942,7 @@ msgstr "" msgid "Timestamp" msgstr "" +#. translators: %s: Page name #: templates/secure-https-header.php:28 msgid "Secure HTTPS %s page, running from an external domain" msgstr "" @@ -1927,7 +1951,7 @@ msgstr "" msgid "Support" msgstr "" -#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62 +#: includes/debug/class-fs-debug-bar-panel.php:51, templates/debug/api-calls.php:54, templates/debug/logger.php:62 msgctxt "milliseconds" msgid "ms" msgstr "" @@ -1948,10 +1972,6 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" msgstr "" @@ -1960,6 +1980,10 @@ msgstr "" msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" msgstr "" +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." +msgstr "" + #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" msgstr "" @@ -2062,6 +2086,7 @@ msgstr "" msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:195 msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." msgstr "" @@ -2070,6 +2095,7 @@ msgstr "" msgid "View Basic %s Info" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:210 msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2078,9 +2104,7 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 -msgstr "" - +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:272 msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." msgstr "" @@ -2089,6 +2113,7 @@ msgstr "" msgid "View %s State" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:287 msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2109,6 +2134,7 @@ msgstr "" msgid "WordPress & PHP versions, site language & title" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:330 msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." msgstr "" @@ -2308,143 +2334,143 @@ msgstr "" msgid "Next" msgstr "" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." msgstr "" -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +#: templates/forms/affiliation.php:134 +msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." msgstr "" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "" -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +#: templates/forms/affiliation.php:128 +msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." msgstr "" -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." msgstr "" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "" -#: templates/forms/affiliation.php:146 +#: templates/forms/affiliation.php:151 msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" msgstr "" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "" -#: templates/forms/affiliation.php:163 +#: templates/forms/affiliation.php:168 msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." msgstr "" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "" -#: templates/forms/affiliation.php:169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php:174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "" -#: templates/forms/affiliation.php:183 +#: templates/forms/affiliation.php:188 msgid "Enter the domain of your website or other websites from where you plan to promote the %s." msgstr "" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "" -#: templates/forms/affiliation.php:214 +#: templates/forms/affiliation.php:219 msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." msgstr "" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "" -#: templates/forms/affiliation.php:221 +#: templates/forms/affiliation.php:226 msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." msgstr "" -#: templates/forms/affiliation.php:233, templates/forms/resend-key.php:22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "" @@ -2525,10 +2551,14 @@ msgstr "" msgid "Agree & Activate License" msgstr "" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2549,10 +2579,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "" @@ -2614,10 +2640,12 @@ msgstr "" msgid "Cancel %s & Proceed" msgstr "" +#. translators: %1$s: Number of trial days; %2$s: Plan name; #: templates/forms/trial-start.php:22 msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." msgstr "" +#. translators: %s: Link to freemius.com #: templates/forms/trial-start.php:28 msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "" @@ -2646,14 +2674,6 @@ msgstr "" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "" @@ -2662,6 +2682,14 @@ msgstr "" msgid "Apply on all pending sites." msgstr "" +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + #: templates/partials/network-activation.php:45, templates/partials/network-activation.php:79 msgid "allow" msgstr "" @@ -2674,7 +2702,7 @@ msgstr "" msgid "skip" msgstr "" -#: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php:67, templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "" @@ -2700,22 +2728,24 @@ msgstr "" msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" msgstr "" +#. translators: %s is replaced with the website's homepage address. #: templates/account/partials/disconnect-button.php:78 msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." msgstr "" +#: templates/account/partials/disconnect-button.php:74 +msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +msgstr "" + +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with an anchor link with the text "User Dashboard". #: templates/account/partials/disconnect-button.php:84 msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." msgstr "" diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..6028ffcdc --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8738 @@ +{ + "name": "freemius-wordpress-sdk", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "freemius-wordpress-sdk", + "version": "0.0.0", + "license": "GPL-3.0", + "devDependencies": { + "@transifex/api": "^7.0.1", + "dotenv": "^16.4.1", + "fancy-log": "^2.0.0", + "gettext-parser": "^7.0.1", + "gulp": "^4.0.2", + "gulp-sort": "^2.0.0", + "gulp-wp-pot": "^2.5.0", + "node-fetch": "^3.3.2", + "patch-package": "^8.0.0" + } + }, + "node_modules/@transifex/api": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", + "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "dev": true, + "dependencies": { + "core-js": "^3.35.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "dependencies": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "dependencies": { + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "dependencies": { + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "dependencies": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "dependencies": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "node_modules/core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "dependencies": { + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dotenv": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", + "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "dev": true, + "dependencies": { + "color-support": "^1.1.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gettext-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", + "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "dev": true, + "dependencies": { + "content-type": "^1.0.5", + "encoding": "^0.1.13", + "readable-stream": "^4.3.0", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/gettext-parser/node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/gettext-parser/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/gettext-parser/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "dependencies": { + "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "dependencies": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", + "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "dev": true, + "dependencies": { + "through2": "^2.0.1" + } + }, + "node_modules/gulp-wp-pot": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", + "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "dev": true, + "dependencies": { + "plugin-error": "^1.0.1", + "vinyl": "^2.2.1", + "wp-pot": "^1.9.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gulp-wp-pot/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/gulp-wp-pot/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/gulp-wp-pot/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-wp-pot/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "dependencies": { + "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11" + } + }, + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "dependencies": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "dependencies": { + "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "dependencies": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "dependencies": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matched": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", + "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", + "dev": true, + "dependencies": { + "glob": "^7.1.6", + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "dependencies": { + "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/patch-package": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", + "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "dev": true, + "dependencies": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^9.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "rimraf": "^2.6.3", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.0.33", + "yaml": "^2.2.2" + }, + "bin": { + "patch-package": "index.js" + }, + "engines": { + "node": ">=14", + "npm": ">5" + } + }, + "node_modules/patch-package/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-sort": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", + "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", + "dev": true + }, + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/plugin-error/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "dependencies": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "dependencies": { + "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha512-IrpJ+yoG4EOH8DFWuVg+8H1kW1Oaof0Wxe7cPcXW3x9BjkN/eVo54F15LyqemnDIUYskQWr9qvl/RihmSy6+xQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "dependencies": { + "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "dependencies": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "dependencies": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "node_modules/time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "dependencies": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "dependencies": { + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "dependencies": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "dependencies": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-fs/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/vinyl-fs/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "dependencies": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl-sourcemap/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", + "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "node_modules/wp-pot": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.10.2.tgz", + "integrity": "sha512-NJ9+dsSilghAYMiuGdURJSbKFf9Z2mH+P6ojT8Nw1Pp8KuwvHdRTFTYK73THlYzohUEXlQGpvKkz+mJb8K1ToA==", + "dev": true, + "dependencies": { + "espree": "^9.3.1", + "matched": "^5.0.1", + "path-sort": "^0.1.0", + "php-parser": "^3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "node_modules/yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + } + }, + "dependencies": { + "@transifex/api": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", + "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "dev": true, + "requires": { + "core-js": "^3.35.0" + } + }, + "@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "requires": { + "buffer-equal": "^1.0.0" + } + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true + }, + "array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "requires": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "requires": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + } + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + } + }, + "async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true + }, + "async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "requires": { + "async-done": "^1.2.2" + } + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "requires": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true + }, + "collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "requires": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "requires": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true + }, + "default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "requires": { + "kind-of": "^5.0.2" + } + }, + "default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "dotenv": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", + "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "requires": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "requires": { + "type": "^2.7.2" + }, + "dependencies": { + "type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "dev": true, + "requires": { + "color-support": "^1.1.3" + } + }, + "fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + }, + "fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "requires": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "requires": { + "micromatch": "^4.0.2" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "requires": { + "fetch-blob": "^3.1.2" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true + }, + "gettext-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", + "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "dev": true, + "requires": { + "content-type": "^1.0.5", + "encoding": "^0.1.13", + "readable-stream": "^4.3.0", + "safe-buffer": "^5.2.1" + }, + "dependencies": { + "readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + } + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + } + }, + "glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "requires": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + } + }, + "gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "dependencies": { + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + } + } + }, + "gulp-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", + "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "dev": true, + "requires": { + "through2": "^2.0.1" + } + }, + "gulp-wp-pot": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", + "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "dev": true, + "requires": { + "plugin-error": "^1.0.1", + "vinyl": "^2.2.1", + "wp-pot": "^1.9.6" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "requires": { + "glogg": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true + }, + "just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11" + } + }, + "last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "requires": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + } + }, + "lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.5" + } + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "requires": { + "invert-kv": "^1.0.0" + } + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "requires": { + "flush-write-stream": "^1.0.2" + } + }, + "liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "requires": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "dependencies": { + "findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "matched": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", + "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", + "dev": true, + "requires": { + "glob": "^7.1.6", + "picomatch": "^2.2.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true + }, + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true + }, + "node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "requires": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "requires": { + "once": "^1.3.2" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dev": true, + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true + }, + "patch-package": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", + "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "dev": true, + "requires": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^9.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "rimraf": "^2.6.3", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.0.33", + "yaml": "^2.2.2" + }, + "dependencies": { + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true + }, + "path-sort": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", + "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true + }, + "replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "requires": { + "value-or-function": "^3.0.0" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha512-IrpJ+yoG4EOH8DFWuVg+8H1kW1Oaof0Wxe7cPcXW3x9BjkN/eVo54F15LyqemnDIUYskQWr9qvl/RihmSy6+xQ==", + "dev": true + }, + "semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "requires": { + "sver-compat": "^1.5.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-function-length": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", + "dev": true, + "requires": { + "define-data-property": "^1.1.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + } + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "requires": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "requires": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + } + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "requires": { + "through2": "^2.0.3" + } + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true + }, + "undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + } + }, + "undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "requires": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "dev": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true + }, + "vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "web-streams-polyfill": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", + "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "wp-pot": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.10.2.tgz", + "integrity": "sha512-NJ9+dsSilghAYMiuGdURJSbKFf9Z2mH+P6ojT8Nw1Pp8KuwvHdRTFTYK73THlYzohUEXlQGpvKkz+mJb8K1ToA==", + "dev": true, + "requires": { + "espree": "^9.3.1", + "matched": "^5.0.1", + "path-sort": "^0.1.0", + "php-parser": "^3.0.3" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true + }, + "yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + } + } + }, + "yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + } + } + } + } +} diff --git a/package.json b/package.json index 5063bd582..9e83baced 100644 --- a/package.json +++ b/package.json @@ -7,22 +7,20 @@ "version": "0.0.0", "private": true, "main": "gulpfile.js", - "dependencies": {}, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "prune": "rimraf .codeclimate.yml .git .github .gitignore .travis.yml gulpfile.js composer.json" + "translate": "gulp translate", + "postinstall": "patch-package" }, "repository": "Freemius/wordpress-sdk.git", "devDependencies": { - "gulp": "^3.9.1", - "gulp-clean": "^0.3.2", - "gulp-fs": "0.0.2", - "gulp-gettext": "^0.3.0", - "gulp-path": "^3.0.3", - "gulp-pofill": "^1.0.0", - "gulp-rename": "^1.2.2", + "@transifex/api": "^7.0.1", + "dotenv": "^16.4.1", + "fancy-log": "^2.0.0", + "gettext-parser": "^7.0.1", + "gulp": "^4.0.2", "gulp-sort": "^2.0.0", - "gulp-transifex": "^0.1.17", - "gulp-wp-pot": "^2.0.6" + "gulp-wp-pot": "^2.5.0", + "node-fetch": "^3.3.2", + "patch-package": "^8.0.0" } } diff --git a/patches/wp-pot+1.10.2.patch b/patches/wp-pot+1.10.2.patch new file mode 100644 index 000000000..e89d85b58 --- /dev/null +++ b/patches/wp-pot+1.10.2.patch @@ -0,0 +1,48 @@ +diff --git a/node_modules/wp-pot/src/parsers/php-parser.js b/node_modules/wp-pot/src/parsers/php-parser.js +index c8f411d..319a5da 100644 +--- a/node_modules/wp-pot/src/parsers/php-parser.js ++++ b/node_modules/wp-pot/src/parsers/php-parser.js +@@ -220,6 +220,32 @@ class PHPParser { + return comment; + } + ++ /** ++ * Get method name from property lookup, going as deep as necessary. ++ * Example: $this->plugin->text_domain->translate ++ * ++ * @param {object} what ++ * @return {string} ++ * @private ++ */ ++ _getMethodNameFromPropertyLookup(what) { ++ let methodName = []; ++ ++ while(what) { ++ if (what.kind === 'propertylookup') { ++ methodName.push(what.offset.name); ++ what = what.what; ++ } else if (what.kind === 'variable') { ++ methodName.push(what.name); ++ what = null; ++ } else { ++ what = null; ++ } ++ } ++ ++ return `\$${methodName.reverse().join('->')}`; ++ } ++ + /** + * Check if ast is a valid function call + * +@@ -231,8 +257,8 @@ class PHPParser { + if (ast.kind === 'call') { + let methodName = ast.what.name; + +- if (ast.what.kind === 'propertylookup' && ast.what.what.kind === 'variable') { +- methodName = ['$', ast.what.what.name, '->', ast.what.offset.name].join(''); ++ if (ast.what.kind === 'propertylookup') { ++ methodName = this._getMethodNameFromPropertyLookup(ast.what); + } else if (ast.what.kind === 'name' && ast.what.resolution === 'fqn') { + methodName = ast.what.name.replace(/^\\/, ''); + } From 46af7d17451d624da7c3087aba87989c58625f41 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 31 Jan 2024 12:07:47 +0530 Subject: [PATCH 08/42] [build] [js] [scss] Add uniform build steps for SASS and JS. --- .gitignore | 3 +- assets/css/admin/account.css | 2 +- assets/css/admin/account.css.map | 1 - assets/css/admin/add-ons.css | 2 +- assets/css/admin/add-ons.css.map | 1 - assets/css/admin/affiliation.css | 2 +- assets/css/admin/affiliation.css.map | 1 - assets/css/admin/checkout.css | 2 +- assets/css/admin/checkout.css.map | 1 - assets/css/admin/clone-resolution.css | 2 +- assets/css/admin/clone-resolution.css.map | 1 - assets/css/admin/common.css | 2 +- assets/css/admin/common.css.map | 1 - assets/css/admin/connect.css | 2 +- assets/css/admin/connect.css.map | 1 - assets/css/admin/debug.css | 2 +- assets/css/admin/debug.css.map | 1 - assets/css/admin/dialog-boxes.css | 2 +- assets/css/admin/dialog-boxes.css.map | 1 - assets/css/admin/gdpr-optin-notice.css | 2 +- assets/css/admin/gdpr-optin-notice.css.map | 1 - assets/css/admin/optout.css | 2 +- assets/css/admin/optout.css.map | 1 - assets/css/admin/plugins.css | 2 +- assets/css/admin/plugins.css.map | 1 - assets/css/customizer.css | 2 +- assets/css/customizer.css.map | 1 - assets/js/nojquery.ba-postmessage.js | 114 +- assets/js/nojquery.ba-postmessage.min.js | 12 - assets/js/postmessage.js | 136 +- assets/scripts/index.php | 3 + assets/scripts/nojquery.ba-postmessage.js | 140 + assets/scripts/postmessage.js | 135 + assets/scss/admin/_switch.scss | 9 +- assets/scss/admin/connect.scss | 11 +- gulpfile.js | 32 + gulptasks/compilers.js | 134 + gulptasks/sass.js | 12 + gulptasks/scripts.js | 22 + includes/class-freemius.php | 2 +- package-lock.json | 10410 ++++++++++++++----- package.json | 17 +- templates/checkout.php | 2 +- templates/contact.php | 2 +- templates/powered-by.php | 2 +- templates/pricing.php | 2 +- 46 files changed, 8524 insertions(+), 2715 deletions(-) mode change 100644 => 100755 assets/css/admin/account.css delete mode 100644 assets/css/admin/account.css.map mode change 100644 => 100755 assets/css/admin/add-ons.css delete mode 100644 assets/css/admin/add-ons.css.map delete mode 100644 assets/css/admin/affiliation.css.map delete mode 100644 assets/css/admin/checkout.css.map delete mode 100644 assets/css/admin/clone-resolution.css.map mode change 100644 => 100755 assets/css/admin/common.css delete mode 100644 assets/css/admin/common.css.map delete mode 100644 assets/css/admin/connect.css.map delete mode 100644 assets/css/admin/debug.css.map delete mode 100644 assets/css/admin/dialog-boxes.css.map delete mode 100644 assets/css/admin/gdpr-optin-notice.css.map delete mode 100644 assets/css/admin/optout.css.map delete mode 100644 assets/css/admin/plugins.css.map delete mode 100644 assets/css/customizer.css.map delete mode 100755 assets/js/nojquery.ba-postmessage.min.js create mode 100644 assets/scripts/index.php create mode 100755 assets/scripts/nojquery.ba-postmessage.js create mode 100755 assets/scripts/postmessage.js create mode 100644 gulptasks/compilers.js create mode 100644 gulptasks/sass.js create mode 100644 gulptasks/scripts.js diff --git a/.gitignore b/.gitignore index 2b13bf5e9..eca15cc28 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ vendor .DS_Store error-phpstan.xml error-phpcs.log -.env \ No newline at end of file +.env +/assets/css/**/*.css.map \ No newline at end of file diff --git a/assets/css/admin/account.css b/assets/css/admin/account.css old mode 100644 new mode 100755 index 5ef5e916c..c9f5abd71 --- a/assets/css/admin/account.css +++ b/assets/css/admin/account.css @@ -1 +1 @@ -label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{color:inherit;border-left-color:#00a0d2}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{font-size:1.3em;padding:12px 15px;margin:0 0 12px 0;line-height:1.4;border-bottom:1px solid #f1f1f1}#fs_account h3 .dashicons{width:26px;height:26px;font-size:1.3em}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{position:absolute;top:17px;right:15px;font-size:.9em}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:bold}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table var,.fs-key-value-table code,.fs-key-value-table input[type=text]{color:#0073aa;font-size:16px;background:none}.fs-key-value-table input[type=text]{width:100%;font-weight:bold}.fs-field-beta_program label{margin-left:7px}label.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{max-height:200px;overflow:auto;border:1px solid #e5e5e5}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none !important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{text-align:right;color:gray;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{width:1px;white-space:nowrap}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{text-align:left;font-weight:bold}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:bold}#fs_billing_address{width:100%}#fs_billing_address tr td{width:50%;padding:5px}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:bold}#fs_billing_address input,#fs_billing_address select{display:block;width:100%;margin-top:5px}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:rgba(0,0,0,0);opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:rgba(0,0,0,0)}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:rgba(0,0,0,0)}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{border-color:rgba(0,0,0,0);color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{border-color:rgba(0,0,0,0);color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width: 639px){#fs_account .fs-header-actions{position:static;padding:0 15px 12px 15px;margin:0 0 12px 0}#fs_account .fs-header-actions li{float:none;display:inline-block}#fs_account #fs_account_details{display:block}#fs_account #fs_account_details tbody,#fs_account #fs_account_details tr,#fs_account #fs_account_details td,#fs_account #fs_account_details th{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}}/*# sourceMappingURL=account.css.map */ +label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-notice[data-id=license_not_whitelabeled].success,.fs-notice[data-id=license_whitelabeled].success{border-left-color:#00a0d2;color:inherit}.fs-notice[data-id=license_not_whitelabeled].success label.fs-plugin-title,.fs-notice[data-id=license_whitelabeled].success label.fs-plugin-title{display:none}#fs_account .postbox,#fs_account .widefat{max-width:800px}#fs_account h3{border-bottom:1px solid #f1f1f1;font-size:1.3em;line-height:1.4;margin:0 0 12px;padding:12px 15px}#fs_account h3 .dashicons{font-size:1.3em;height:26px;width:26px}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{font-size:.9em;position:absolute;right:15px;top:17px}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:700}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table code,.fs-key-value-table input[type=text],.fs-key-value-table var{background:none;color:#0073aa;font-size:16px}.fs-key-value-table input[type=text]{font-weight:700;width:100%}.fs-field-beta_program label{margin-left:7px}label.fs-tag{border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag,label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{border:1px solid #e5e5e5;max-height:200px;overflow:auto}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none!important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{color:gray;text-align:right;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{white-space:nowrap;width:1px}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{font-weight:700;text-align:left}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:700}#fs_billing_address{width:100%}#fs_billing_address tr td{padding:5px;width:50%}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:700}#fs_billing_address input,#fs_billing_address select{display:block;margin-top:5px;width:100%}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{background:none;border-color:transparent;border-bottom:1px dashed #ccc;color:#777;padding-left:0}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%}@media screen and (max-width:639px){#fs_account .fs-header-actions{margin:0 0 12px;padding:0 15px 12px;position:static}#fs_account .fs-header-actions li{display:inline-block;float:none}#fs_account #fs_account_details,#fs_account #fs_account_details tbody,#fs_account #fs_account_details td,#fs_account #fs_account_details th,#fs_account #fs_account_details tr{display:block}#fs_account #fs_account_details tr td:first-child{text-align:left}#fs_account #fs_account_details tr td:nth-child(2){padding:0 12px}#fs_account #fs_account_details tr td:nth-child(2) code{margin:0;padding:0}#fs_account #fs_account_details tr td:nth-child(2) label{margin-left:0}#fs_account #fs_account_details tr td:nth-child(3){text-align:left}#fs_account #fs_account_details tr.fs-field-plan td:nth-child(2) .button-group{float:none;margin:12px 0}} \ No newline at end of file diff --git a/assets/css/admin/account.css.map b/assets/css/admin/account.css.map deleted file mode 100644 index 9d726e230..000000000 --- a/assets/css/admin/account.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_tag.scss","../../scss/admin/account.scss","../../scss/_mixins.scss"],"names":[],"mappings":"AAAA,yBAEI,mBACA,WACA,qBACA,kBACA,YACA,eACA,iBACA,wBAEA,yCAEI,mBAEJ,yCAEI,mBAEJ,+CAEI,mBAEJ,2CAEI,mBCrBJ,sGACI,cACA,0BAEA,kJACI,aAOR,0CAGI,gBAGJ,eAEI,gBACA,kBACA,kBACA,gBACA,gCAEA,0BACI,WACA,YACA,gBAIR,wBAEI,gBACA,aACA,YAGJ,uBAEI,sBAGJ,+BAEI,kBACA,SACA,WACA,eAEA,kCAEI,SAGJ,kCAOI,WALA,uCAEI,qBAIJ,oCAEI,qBAMhB,kCACI,YAGJ,oCAEI,UACA,WAGJ,oBAEI,WAEA,yBAEI,qBAKA,sCAOI,iBALA,2CAEI,iBAKJ,2CAEI,cAIR,mCAEI,iBAGJ,8BAEI,mBAIR,8CAEI,aAGJ,yBACI,iBAGJ,sFAEI,cACA,eACA,gBAGJ,qCACI,WACA,iBAIR,6BACI,gBAGJ,aAEI,mBACA,WACA,qBACA,kBACA,YACA,eACA,iBACA,wBAEA,qBAEI,mBAEJ,wBAEI,mBAEJ,sBAEI,mBAQA,8CACI,iBACA,cACA,yBAEA,4DACI,uBAIR,+CACI,WAKA,iEAEI,iBACA,WACA,UAGJ,gEAEI,iBAMJ,+DAEI,UACA,mBAEA,4EAEI,WAShB,cAEI,YACA,gBACA,gBAGJ,cAEI,sBAGJ,iBACI,mBAGJ,oDAGI,gBACA,iBAEJ,kDAGI,iBAEJ,cAEI,iBAIR,oBACI,WAGI,0BACI,UACA,YAIA,wCACI,cAaZ,yBACI,iBAGJ,qDAGI,cACA,WACA,eC7BJ,yFACI,MDwBqB,cCvBrB,UAEJ,uGDqByB,cCpBzB,iHDoByB,cAMrB,+EAlBA,2BACA,WACA,8BACA,eACA,gBAqBA,yCACI,aAGJ,+EA7BA,2BACA,WACA,8BACA,eACA,gBCjBJ,mHACI,MD4CyB,KC3CzB,UAEJ,iIDyC6B,KCxC7B,2IDwC6B,KAK7B,2BACI,cACA,WAOR,qCAGQ,+BACI,gBACA,yBACA,kBAEA,kCACI,WACA,qBAKR,gCACI,cAEA,+IACI,cAKI,kDACI,gBAGJ,mDACI,eACA,wDACI,SACA,UAGJ,yDACI,cAIR,mDACI,gBAMJ,+EACI,WACA","file":"account.css"} \ No newline at end of file diff --git a/assets/css/admin/add-ons.css b/assets/css/admin/add-ons.css old mode 100644 new mode 100755 index 071e12d9d..cce528f39 --- a/assets/css/admin/add-ons.css +++ b/assets/css/admin/add-ons.css @@ -1 +1 @@ -.fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.3);box-shadow:0 2px 1px -1px rgba(0,0,0,.3)}#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner>ul{-moz-transition:all,.15s;-o-transition:all,.15s;-ms-transition:all,.15s;-webkit-transition:all,.15s;transition:all,.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner>ul>li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,.15s;-o-transition:all,.15s;-ms-transition:all,.15s;-webkit-transition:all,.15s;transition:all,.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner .fs-badge.fs-installed-addon-badge{font-size:1.02em;line-height:1.3em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:#adff2f;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.3);box-shadow:1px 1px 1px rgba(0,0,0,.3);text-transform:uppercase;font-size:.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button,#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button-group{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}}#TB_window,#TB_window iframe{width:821px !important}#plugin-information .fyi{width:266px !important}#plugin-information #section-holder{margin-right:299px;clear:none}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description iframe{max-width:100%}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:#adff2f;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid #006400;padding:2px;text-align:center;font-size:.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#f3f3f3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:#adff2f}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button,#plugin-information .fs-dropdown .button-group .button{position:relative;width:auto;top:0;right:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button:focus,#plugin-information .fs-dropdown .button-group .button:focus{z-index:10}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .fs-dropdown-arrow,#plugin-information .fs-dropdown .button-group .fs-dropdown-arrow{border-top:6px solid #fff;border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0);top:12px;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button){border-bottom-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button{border-bottom-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button){border-top-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active.up .fs-dropdown-arrow-button{border-top-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list,#plugin-information .fs-dropdown .fs-dropdown-list{position:absolute;right:-1px;top:100%;margin-left:auto;padding:3px 0;border:1px solid #bfbfbf;background-color:#fff;z-index:1;width:230px;text-align:left;-moz-box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);-webkit-box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);box-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12)}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li,#plugin-information .fs-dropdown .fs-dropdown-list li{margin:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li a,#plugin-information .fs-dropdown .fs-dropdown-list li a{display:block;padding:5px 10px;text-decoration:none;text-shadow:none}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover,#plugin-information .fs-dropdown .fs-dropdown-list li:hover{background-color:#0074a3;color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover a,#plugin-information .fs-dropdown .fs-dropdown-list li:hover a{color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown:not(.up) .fs-dropdown-list,#plugin-information .fs-dropdown:not(.up) .fs-dropdown-list{-moz-border-radius:3px 0 3px 3px;-webkit-border-radius:3px 0 3px 3px;border-radius:3px 0 3px 3px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.up .fs-dropdown-list,#plugin-information .fs-dropdown.up .fs-dropdown-list{-moz-border-radius:3px 3px 0 3px;-webkit-border-radius:3px 3px 0 3px;border-radius:3px 3px 0 3px}#plugin-information .fs-dropdown .button-group{width:100%}#plugin-information .fs-dropdown .button-group .button{float:none;font-size:14px;font-weight:normal;text-transform:none}#plugin-information .fs-dropdown .fs-dropdown-list{margin-top:1px}#plugin-information .fs-dropdown.up .fs-dropdown-list{top:auto;bottom:100%;margin-bottom:2px}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group{text-align:center;display:table}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button{display:table-cell}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button:not(.fs-dropdown-arrow-button){left:1px;width:100%}#plugin-information-footer>.button,#plugin-information-footer .fs-dropdown{position:relative;top:3px}#plugin-information-footer>.button.left,#plugin-information-footer .fs-dropdown.left{float:left}#plugin-information-footer>.right,#plugin-information-footer .fs-dropdown{float:right}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}}/*# sourceMappingURL=add-ons.css.map */ +.fs-badge{background:#71ae00;border-radius:3px 0 0 3px;border-right:0;box-shadow:0 2px 1px -1px rgba(0,0,0,.3);color:#fff;font-weight:700;padding:5px 10px;position:absolute;right:0;text-transform:uppercase;top:10px}#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{border:1px solid #ddd;cursor:pointer;float:left;font-size:14px;height:152px;list-style:none;margin:0 0 30px 30px;padding:0;position:relative;width:310px}#fs_addons .fs-cards-list .fs-card .fs-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;height:100%;overflow:hidden;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner>ul{left:0;position:absolute;right:0;top:0;transition:all,.15s}#fs_addons .fs-cards-list .fs-card .fs-inner>ul>li{box-sizing:border-box;display:block;line-height:18px;list-style:none;padding:0 15px;width:100%}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{background-repeat:repeat-x;background-size:100% 100%;display:block;height:100px;line-height:0;margin:0;padding:0;transition:all,.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner .fs-badge.fs-installed-addon-badge{font-size:1.02em;line-height:1.3em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{color:#000;font-weight:700;height:18px;margin:10px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;border-top:1px solid #eee;color:#777;margin:0 0 10px;padding:10px 15px 100px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{background:#adff2f;box-shadow:1px 1px 1px rgba(0,0,0,.3);display:block;font-size:.9em;font-weight:700;padding:2px 10px;position:absolute;right:0;text-transform:uppercase;top:10px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button,#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button-group{position:absolute;right:10px;top:112px}@media screen and (min-width:960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title{color:#29abe1}}#TB_window,#TB_window iframe{width:821px!important}#plugin-information .fyi{width:266px!important}#plugin-information #section-holder{clear:none;margin-right:299px}#plugin-information #section-description b,#plugin-information #section-description blockquote,#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description i,#plugin-information #section-description li,#plugin-information #section-description ol,#plugin-information #section-description p,#plugin-information #section-description ul{clear:none}#plugin-information #section-description iframe{max-width:100%}#plugin-information #section-description .fs-selling-points{border-bottom:1px solid #ddd;padding-bottom:10px}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{list-style:none outside none;padding:0}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;float:left;font-size:3em;line-height:30px;margin:0 0 0 -15px;vertical-align:middle}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px!important}#plugin-information #section-description .fs-screenshots:after{clear:both;content:"";display:table}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{box-sizing:content-box;float:left;height:225px;margin-bottom:20px;width:225px}#plugin-information #section-description .fs-screenshots ul li a{background-size:cover;border:1px solid;box-shadow:1px 1px 1px rgba(0,0,0,.2);display:block;height:100%;width:100%}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{border-bottom:1px solid #ddd;margin:-16px}#plugin-information .plugin-information-pricing .fs-plan h3{font-size:16px;margin-top:0;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;font-size:.9em;padding:0 10px;position:relative}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{background:#adff2f;border:1px solid #006400;bottom:100%;color:green;font-size:.9em;left:-1px;line-height:1em;padding:2px;position:absolute;right:-1px;text-align:center;text-transform:uppercase}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{background:#fffeec;border-bottom-color:#fffeec;cursor:default}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;color:#0073aa;margin:0;padding-bottom:0}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{font-size:1.1em;font-weight:700;text-align:center;text-transform:uppercase;width:100%}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount,#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency{background:#f3f3f3;border:1px solid #ccc;display:block;font-weight:700;margin-bottom:10px;padding:2px;text-align:center;text-transform:uppercase}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{background:#adff2f;color:green;text-transform:none}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{border-collapse:separate;border-spacing:0;width:100%}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;display:block;font-weight:400;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;color:#71ae00;padding:10px 0;text-align:center;width:100px}#plugin-information #section-features table tbody td:first-child{color:inherit;padding-left:26px;text-align:left;width:auto}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{font-size:30px;height:30px;width:30px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button,#plugin-information .fs-dropdown .button-group .button{position:relative;right:0;top:0;width:auto}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button:focus,#plugin-information .fs-dropdown .button-group .button:focus{z-index:10}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .fs-dropdown-arrow,#plugin-information .fs-dropdown .button-group .fs-dropdown-arrow{border-left:4px solid transparent;border-right:4px solid transparent;border-top:6px solid #fff;position:relative;top:12px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button){border-bottom-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button{border-bottom-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button){border-top-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active.up .fs-dropdown-arrow-button{border-top-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list,#plugin-information .fs-dropdown .fs-dropdown-list{background-color:#fff;border:1px solid #bfbfbf;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);margin-left:auto;padding:3px 0;position:absolute;right:-1px;text-align:left;top:100%;width:230px;z-index:1}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li,#plugin-information .fs-dropdown .fs-dropdown-list li{margin:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li a,#plugin-information .fs-dropdown .fs-dropdown-list li a{display:block;padding:5px 10px;text-decoration:none;text-shadow:none}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover,#plugin-information .fs-dropdown .fs-dropdown-list li:hover{background-color:#0074a3;color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover a,#plugin-information .fs-dropdown .fs-dropdown-list li:hover a{color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown:not(.up) .fs-dropdown-list,#plugin-information .fs-dropdown:not(.up) .fs-dropdown-list{border-radius:3px 0 3px 3px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.up .fs-dropdown-list,#plugin-information .fs-dropdown.up .fs-dropdown-list{border-radius:3px 3px 0 3px}#plugin-information .fs-dropdown .button-group{width:100%}#plugin-information .fs-dropdown .button-group .button{float:none;font-size:14px;font-weight:400;text-transform:none}#plugin-information .fs-dropdown .fs-dropdown-list{margin-top:1px}#plugin-information .fs-dropdown.up .fs-dropdown-list{bottom:100%;margin-bottom:2px;top:auto}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group{display:table;text-align:center}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button{display:table-cell}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button:not(.fs-dropdown-arrow-button){left:1px;width:100%}#plugin-information-footer .fs-dropdown,#plugin-information-footer>.button{position:relative;top:3px}#plugin-information-footer .fs-dropdown.left,#plugin-information-footer>.button.left{float:left}#plugin-information-footer .fs-dropdown,#plugin-information-footer>.right{float:right}@media screen and (max-width:961px){#fs_addons .fs-cards-list .fs-card{height:265px}} \ No newline at end of file diff --git a/assets/css/admin/add-ons.css.map b/assets/css/admin/add-ons.css.map deleted file mode 100644 index d31658119..000000000 --- a/assets/css/admin/add-ons.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_badge.scss","../../scss/_colors.scss","../../scss/_mixins.scss","../../scss/admin/add-ons.scss"],"names":[],"mappings":"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","file":"add-ons.css"} \ No newline at end of file diff --git a/assets/css/admin/affiliation.css b/assets/css/admin/affiliation.css index 8b2aabb54..86c92504b 100644 --- a/assets/css/admin/affiliation.css +++ b/assets/css/admin/affiliation.css @@ -1 +1 @@ -#fs_affiliation_content_wrapper #messages{margin-top:25px}#fs_affiliation_content_wrapper h3{font-size:24px;padding:0;margin-left:0}#fs_affiliation_content_wrapper ul li{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;list-style-type:none}#fs_affiliation_content_wrapper ul li:before{content:"✓";margin-right:10px;font-weight:bold}#fs_affiliation_content_wrapper p:not(.description),#fs_affiliation_content_wrapper li,#fs_affiliation_content_wrapper label{font-size:16px !important;line-height:26px !important}#fs_affiliation_content_wrapper .button{margin-top:20px;margin-bottom:7px;line-height:35px;height:40px;font-size:16px}#fs_affiliation_content_wrapper .button#cancel_button{margin-right:5px}#fs_affiliation_content_wrapper form .input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form .input-container .input-label{font-weight:bold;display:block;width:100%}#fs_affiliation_content_wrapper form .input-container.input-container-text label,#fs_affiliation_content_wrapper form .input-container.input-container-text input,#fs_affiliation_content_wrapper form .input-container.input-container-text textarea{display:block}#fs_affiliation_content_wrapper form .input-container #add_domain,#fs_affiliation_content_wrapper form .input-container .remove-domain{text-decoration:none;display:inline-block;margin-top:3px}#fs_affiliation_content_wrapper form .input-container #add_domain:focus,#fs_affiliation_content_wrapper form .input-container .remove-domain:focus{box-shadow:none}#fs_affiliation_content_wrapper form .input-container #add_domain.disabled,#fs_affiliation_content_wrapper form .input-container .remove-domain.disabled{color:#aaa;cursor:default}#fs_affiliation_content_wrapper form #extra_domains_container .description{margin-top:0;position:relative;top:-4px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain{display:inline-block;margin-right:5px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain:last-of-type{margin-bottom:0}/*# sourceMappingURL=affiliation.css.map */ +#fs_affiliation_content_wrapper #messages{margin-top:25px}#fs_affiliation_content_wrapper h3{font-size:24px;margin-left:0;padding:0}#fs_affiliation_content_wrapper ul li{box-sizing:border-box;list-style-type:none}#fs_affiliation_content_wrapper ul li:before{content:"✓";font-weight:700;margin-right:10px}#fs_affiliation_content_wrapper label,#fs_affiliation_content_wrapper li,#fs_affiliation_content_wrapper p:not(.description){font-size:16px!important;line-height:26px!important}#fs_affiliation_content_wrapper .button{font-size:16px;height:40px;line-height:35px;margin-bottom:7px;margin-top:20px}#fs_affiliation_content_wrapper .button#cancel_button{margin-right:5px}#fs_affiliation_content_wrapper form .input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form .input-container .input-label{display:block;font-weight:700;width:100%}#fs_affiliation_content_wrapper form .input-container.input-container-text input,#fs_affiliation_content_wrapper form .input-container.input-container-text label,#fs_affiliation_content_wrapper form .input-container.input-container-text textarea{display:block}#fs_affiliation_content_wrapper form .input-container #add_domain,#fs_affiliation_content_wrapper form .input-container .remove-domain{display:inline-block;margin-top:3px;text-decoration:none}#fs_affiliation_content_wrapper form .input-container #add_domain:focus,#fs_affiliation_content_wrapper form .input-container .remove-domain:focus{box-shadow:none}#fs_affiliation_content_wrapper form .input-container #add_domain.disabled,#fs_affiliation_content_wrapper form .input-container .remove-domain.disabled{color:#aaa;cursor:default}#fs_affiliation_content_wrapper form #extra_domains_container .description{margin-top:0;position:relative;top:-4px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain{display:inline-block;margin-right:5px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain:last-of-type{margin-bottom:0} \ No newline at end of file diff --git a/assets/css/admin/affiliation.css.map b/assets/css/admin/affiliation.css.map deleted file mode 100644 index 48142c8ba..000000000 --- a/assets/css/admin/affiliation.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/affiliation.scss","../../scss/_mixins.scss"],"names":[],"mappings":"CAGE,0CACE,gBAGF,mCACE,eACA,UACA,cAIA,sCC4DC,gBD3DqB,WC4DxB,mBD5DwB,WC6DhB,WD7DgB,WACpB,qBAEA,6CACE,YACA,kBACA,iBAKN,6HACE,0BACA,4BAGF,wCACE,gBACA,kBACA,iBACA,YACA,eAEA,sDACE,iBAKF,sDAaE,mBAZA,mEACE,iBACA,cACA,WAIA,sPACE,cAMJ,uIACE,qBACA,qBACA,eAEA,mJACE,gBAGF,yJACE,WACA,eAMJ,2EACE,aACA,kBACA,SAGF,4FACE,mBAEA,oGACE,qBACA,iBAEA,iHACE","file":"affiliation.css"} \ No newline at end of file diff --git a/assets/css/admin/checkout.css b/assets/css/admin/checkout.css index 1f187e661..26d74ca5d 100644 --- a/assets/css/admin/checkout.css +++ b/assets/css/admin/checkout.css @@ -1 +1 @@ -@media screen and (max-width: 782px){#wpbody-content{padding-bottom:0 !important}}/*# sourceMappingURL=checkout.css.map */ +@media screen and (max-width:782px){#wpbody-content{padding-bottom:0!important}} \ No newline at end of file diff --git a/assets/css/admin/checkout.css.map b/assets/css/admin/checkout.css.map deleted file mode 100644 index 465dc903d..000000000 --- a/assets/css/admin/checkout.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/checkout.scss"],"names":[],"mappings":"AAAA,qCACI,gBACI","file":"checkout.css"} \ No newline at end of file diff --git a/assets/css/admin/clone-resolution.css b/assets/css/admin/clone-resolution.css index 608c6e42f..bb4b2f420 100644 --- a/assets/css/admin/clone-resolution.css +++ b/assets/css/admin/clone-resolution.css @@ -1 +1 @@ -.fs-notice[data-id^=clone_resolution_options_notice]{padding:0;color:inherit !important}.fs-notice[data-id^=clone_resolution_options_notice] .fs-notice-body{padding:0;margin-bottom:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-notice-header{padding:5px 10px}.fs-notice[data-id^=clone_resolution_options_notice] ol{margin-top:0;margin-bottom:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-options-container{display:flex;flex-direction:row;padding:0 10px 10px}@media(max-width: 750px){.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-options-container{flex-direction:column}}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option{border:1px solid #ccc;padding:10px 10px 15px 10px;flex:auto;margin:5px}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option:first-child{margin-left:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option:last-child{margin-right:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option strong{font-size:1.2em;padding:2px;line-height:1.5em}.fs-notice[data-id^=clone_resolution_options_notice] a{text-decoration:none}.fs-notice[data-id^=clone_resolution_options_notice] .button{margin-right:10px}.rtl .fs-notice[data-id^=clone_resolution_options_notice] .button{margin-right:0;margin-left:10px}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-documentation-container{padding:0 10px 15px}.fs-notice[data-id=temporary_duplicate_notice] #fs_clone_resolution_error_message{border:1px solid #d3135a;background:#fee;color:#d3135a;padding:10px}.fs-notice[data-id=temporary_duplicate_notice] ol{margin-top:0}.fs-notice[data-id=temporary_duplicate_notice] a{position:relative}.fs-notice[data-id=temporary_duplicate_notice] a:focus{box-shadow:none}.fs-notice[data-id=temporary_duplicate_notice] a.disabled{color:gray}.fs-notice[data-id=temporary_duplicate_notice] a .fs-ajax-spinner{position:absolute;left:8px;right:0;top:-1px;bottom:0;margin-left:100%}/*# sourceMappingURL=clone-resolution.css.map */ +.fs-notice[data-id^=clone_resolution_options_notice]{color:inherit!important;padding:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-notice-body{margin-bottom:0;padding:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-notice-header{padding:5px 10px}.fs-notice[data-id^=clone_resolution_options_notice] ol{margin-bottom:0;margin-top:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-options-container{display:flex;flex-direction:row;padding:0 10px 10px}@media(max-width:750px){.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-options-container{flex-direction:column}}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option{border:1px solid #ccc;flex:auto;margin:5px;padding:10px 10px 15px}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option:first-child{margin-left:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option:last-child{margin-right:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-resolution-option strong{font-size:1.2em;line-height:1.5em;padding:2px}.fs-notice[data-id^=clone_resolution_options_notice] a{text-decoration:none}.fs-notice[data-id^=clone_resolution_options_notice] .button{margin-right:10px}.rtl .fs-notice[data-id^=clone_resolution_options_notice] .button{margin-left:10px;margin-right:0}.fs-notice[data-id^=clone_resolution_options_notice] .fs-clone-documentation-container{padding:0 10px 15px}.fs-notice[data-id=temporary_duplicate_notice] #fs_clone_resolution_error_message{background:#fee;border:1px solid #d3135a;color:#d3135a;padding:10px}.fs-notice[data-id=temporary_duplicate_notice] ol{margin-top:0}.fs-notice[data-id=temporary_duplicate_notice] a{position:relative}.fs-notice[data-id=temporary_duplicate_notice] a:focus{box-shadow:none}.fs-notice[data-id=temporary_duplicate_notice] a.disabled{color:gray}.fs-notice[data-id=temporary_duplicate_notice] a .fs-ajax-spinner{bottom:0;left:8px;margin-left:100%;position:absolute;right:0;top:-1px} \ No newline at end of file diff --git a/assets/css/admin/clone-resolution.css.map b/assets/css/admin/clone-resolution.css.map deleted file mode 100644 index f424a2237..000000000 --- a/assets/css/admin/clone-resolution.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/clone-resolution.scss","../../scss/_colors.scss"],"names":[],"mappings":"AAEA,qDACI,UACA,yBAEA,qEACI,UACA,gBAGJ,uEACI,iBAGJ,wDACI,aACA,gBAGJ,4FACI,aACA,mBACA,oBAEA,yBALJ,4FAMQ,uBAIR,iFACI,sBACA,4BACA,UACA,WAEA,6FACI,cAGJ,4FACI,eAGJ,wFACI,gBACA,YACA,kBAIR,uDACI,qBAGJ,6DACI,kBAEA,kEACI,eACA,iBAIR,uFACI,oBAKJ,kFACI,yBACA,gBACA,MCrDgB,QDsDhB,aAGJ,kDACI,aAGJ,iDACI,kBAEA,uDACI,gBAGJ,0DACI,WAGJ,kEACI,kBACA,SACA,QACA,SACA,SACA","file":"clone-resolution.css"} \ No newline at end of file diff --git a/assets/css/admin/common.css b/assets/css/admin/common.css old mode 100644 new mode 100755 index 4801111c7..fae281017 --- a/assets/css/admin/common.css +++ b/assets/css/admin/common.css @@ -1 +1 @@ -.fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.3);box-shadow:0 2px 1px -1px rgba(0,0,0,.3)}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{position:relative;top:0;margin-top:10px;text-align:center}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}.fs-switch{position:relative;display:inline-block;color:#ccc;text-shadow:0 1px 1px rgba(255,255,255,.8);height:18px;padding:6px 6px 5px 6px;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);background:#ececec;box-shadow:0 0 4px rgba(0,0,0,.1),inset 0 1px 3px 0 rgba(0,0,0,.1);cursor:pointer}.fs-switch span{display:inline-block;width:35px;text-transform:uppercase}.fs-switch .fs-toggle{position:absolute;top:1px;width:37px;height:25px;border:1px solid #ccc;border:1px solid rgba(0,0,0,.3);border-radius:4px;background:#fff;background-color:#fff;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ececec), color-stop(1, #fff));background-image:-webkit-linear-gradient(top, #ececec, #fff);background-image:-moz-linear-gradient(top, #ececec, #fff);background-image:-ms-linear-gradient(top, #ececec, #fff);background-image:-o-linear-gradient(top, #ececec, #fff);background-image:linear-gradient(top, bottom, #ececec, #fff);box-shadow:inset 0 1px 0 0 rgba(255,255,255,.5);z-index:999;-moz-transition:.4s cubic-bezier(0.54, 1.6, 0.5, 1);-o-transition:.4s cubic-bezier(0.54, 1.6, 0.5, 1);-ms-transition:.4s cubic-bezier(0.54, 1.6, 0.5, 1);-webkit-transition:.4s cubic-bezier(0.54, 1.6, 0.5, 1);transition:.4s cubic-bezier(0.54, 1.6, 0.5, 1)}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{top:8px;padding:4px 25px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round .fs-toggle{top:0;width:24px;height:24px;-moz-border-radius:24px;-webkit-border-radius:24px;border-radius:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{top:0;width:18px;height:18px;-moz-border-radius:18px;-webkit-border-radius:18px;border-radius:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}body.fs-loading,body.fs-loading *{cursor:wait !important}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media(max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}#fs_connect .fs-error ol,#fs_connect .fs-error .fs-api-request-error-show-details-link,#fs_connect .fs-error .fs-api-request-error-details,.fs-modal .notice-error ol,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-modal .notice-error .fs-api-request-error-details,.fs-notice.error ol,.fs-notice.error .fs-api-request-error-show-details-link,.fs-notice.error .fs-api-request-error-details{text-align:left}#fs_connect .fs-error ol,.fs-modal .notice-error ol,.fs-notice.error ol{list-style-type:disc}#fs_connect .fs-error .fs-api-request-error-show-details-link,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-notice.error .fs-api-request-error-show-details-link{text-decoration:none;color:#2271b1;box-shadow:none}#fs_connect .fs-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-details{border:1px solid #ccc;padding:5px;overflow:auto;max-height:150px}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,.3);box-shadow:0 2px 2px rgba(6,113,6,.3);opacity:.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 1250px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:"↳";padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:"↲"}.fs-submenu-item.pricing.upgrade-mode{color:#adff2f}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain;margin-bottom:-2px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}/*# sourceMappingURL=common.css.map */ +.fs-badge{background:#71ae00;border-radius:3px 0 0 3px;border-right:0;box-shadow:0 2px 1px -1px rgba(0,0,0,.3);color:#fff;font-weight:700;padding:5px 10px;position:absolute;right:0;text-transform:uppercase;top:10px}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{margin-top:10px;position:relative;text-align:center;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}.fs-switch{background:#ececec;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);box-shadow:0 0 4px rgba(0,0,0,.1),inset 0 1px 3px 0 rgba(0,0,0,.1);color:#ccc;cursor:pointer;display:inline-block;height:18px;padding:6px 6px 5px;position:relative;text-shadow:0 1px 1px hsla(0,0%,100%,.8)}.fs-switch span{display:inline-block;text-transform:uppercase;width:35px}.fs-switch .fs-toggle{background-color:#fff;background-image:linear-gradient(180deg,#ececec,#fff);border:1px solid rgba(0,0,0,.3);border-radius:4px;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.5);height:25px;position:absolute;top:1px;transition:.4s cubic-bezier(.54,1.6,.5,1);width:37px;z-index:999}.fs-switch.fs-off .fs-toggle{left:2%}.fs-switch.fs-on .fs-toggle{left:54%}.fs-switch.fs-round{border-radius:24px;padding:4px 25px;top:8px}.fs-switch.fs-round .fs-toggle{border-radius:24px;height:24px;top:0;width:24px}.fs-switch.fs-round.fs-off .fs-toggle{left:-1px}.fs-switch.fs-round.fs-on{background:#0085ba}.fs-switch.fs-round.fs-on .fs-toggle{left:25px}.fs-switch.fs-small.fs-round{padding:1px 19px}.fs-switch.fs-small.fs-round .fs-toggle{border-radius:18px;height:18px;top:0;width:18px}.fs-switch.fs-small.fs-round.fs-on .fs-toggle{left:19px}body.fs-loading,body.fs-loading *{cursor:wait!important}#fs_frame{font-size:0;line-height:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media(max-width:600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px!important}.fs-notice.success{color:green}.fs-notice.promotion{background-color:#f2fcff!important;border-color:#00a0d2!important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{color:#aaa;cursor:pointer;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{display:inline-block;margin-top:7px}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,.3);border-radius:0 0 3px 3px;bottom:auto;color:#fff;cursor:auto;font-size:12px;font-weight:700;left:10px;padding:2px 10px;position:absolute;right:auto;top:100%}div.fs-notice.promotion,div.fs-notice.success,div.fs-notice.updated{display:block!important}#fs_connect .fs-error .fs-api-request-error-details,#fs_connect .fs-error .fs-api-request-error-show-details-link,#fs_connect .fs-error ol,.fs-modal .notice-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-modal .notice-error ol,.fs-notice.error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-show-details-link,.fs-notice.error ol{text-align:left}#fs_connect .fs-error ol,.fs-modal .notice-error ol,.fs-notice.error ol{list-style-type:disc}#fs_connect .fs-error .fs-api-request-error-show-details-link,.fs-modal .notice-error .fs-api-request-error-show-details-link,.fs-notice.error .fs-api-request-error-show-details-link{box-shadow:none;color:#2271b1;text-decoration:none}#fs_connect .fs-error .fs-api-request-error-details,.fs-modal .notice-error .fs-api-request-error-details,.fs-notice.error .fs-api-request-error-details{border:1px solid #ccc;max-height:150px;overflow:auto;padding:5px}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{background:#ebfdeb;box-shadow:0 2px 2px rgba(6,113,6,.3);color:green;filter:alpha(opacity=95);left:160px;opacity:.95;padding:10px 20px;position:fixed;right:0;top:32px;z-index:9999}.fs-secure-notice:hover{filter:alpha(opacity=100);opacity:1}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width:960px){.fs-secure-notice{left:36px}}@media screen and (max-width:600px){.fs-secure-notice{display:none}}@media screen and (max-width:1250px){#fs_promo_tab{display:none}}@media screen and (max-width:782px){.fs-secure-notice{left:0;text-align:center;top:46px}}span.fs-submenu-item.fs-sub:before{content:"↳";padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:"↲"}.fs-submenu-item.pricing.upgrade-mode{color:#adff2f}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{background:url(/wp-admin/images/wpspin_light-2x.gif);background-size:contain;border:0;display:inline-block;height:20px;margin-bottom:-2px;margin-right:5px;vertical-align:sub;width:20px}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{background-color:#d54e21;border:0;color:#f9f9f9;margin-top:10px;padding:10px} \ No newline at end of file diff --git a/assets/css/admin/common.css.map b/assets/css/admin/common.css.map deleted file mode 100644 index 7a9ce61b2..000000000 --- a/assets/css/admin/common.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_badge.scss","../../scss/_colors.scss","../../scss/_mixins.scss","../../scss/admin/_themes.scss","../../scss/admin/_switch.scss","../../scss/admin/common.scss","../../scss/admin/_plugin-upgrade-notice.scss"],"names":[],"mappings":"CAAA,UAEI,kBACA,SACA,QACA,WCckB,QDblB,WACA,yBACA,iBEuCC,mBFtCD,YEuCF,sBFvCE,YEwCM,cFxCN,YACA,iBACA,eE6CC,gBF5CD,8BE6CF,mBF7CE,8BE8CM,WF9CN,8BGNI,wDACI,kBACA,QACA,MAEA,kEACI,kBACA,MACA,gBACA,kBAEA,yFACI,gBAGJ,sFACI,mBClBpB,WAEI,kBACA,qBAGA,WACA,2CACA,YACA,wBACA,sBACA,gCAEA,mBACA,mEACA,eAEA,gBAEI,qBACA,WACA,yBAGJ,sBAEI,kBACA,QACA,WACA,YACA,sBACA,gCACA,kBACA,gBFoDS,iBEnDyB,KFqDxC,8GACA,6DACA,0DACA,yDACA,wDACA,6DEzDM,gDACA,YFsIH,gBErIG,oCFsID,cEtIC,oCFuIF,eEvIE,oCFwIN,mBExIM,oCFyIE,WEzIF,oCAGJ,6BAEI,QAEJ,4BAEI,SAIJ,oBAEI,QACA,iBFVH,mBEWG,KFVN,sBEUM,KFTE,cESF,KAEA,+BAEI,MACA,MA/DE,KAgEF,OAhEE,KF+CT,mBEkBO,KFjBV,sBEiBU,KFhBF,cEgBE,KAGJ,sCAEI,UAGJ,0BAEI,WHjByB,QGmBzB,qCAEI,UAOR,6BAEI,iBAEA,wCAEI,MACA,MA5FI,KA6FJ,OA7FI,KF8Cf,mBEgDW,KF/Cd,sBE+Cc,KF9CN,cE8CM,KAGJ,8CAEI,UC/FZ,kCACI,uBAIR,UAEI,cACA,YAGJ,sBAEI,0BAEA,yBAJJ,sBAKQ,wBAIR,WAEI,kBAEA,wBAEI,8BAGJ,mBAEI,YAIJ,qBAEI,gCACA,oCAGJ,2BAEI,cACA,YAGJ,qBASI,eACA,WACA,YAEA,2BAEI,WAIJ,uBAEI,eACA,qBAIR,iCAEI,0BACA,WACA,iBACA,kBACA,SACA,YACA,WHvCH,mBGwCG,YHvCN,sBGuCM,YHtCE,cGsCF,YACA,UACA,eACA,iBACA,YAMJ,oEAII,yBAOJ,wZAGI,gBAGJ,wEACI,qBAGJ,uLACI,qBACA,cACA,gBAGJ,yJACI,sBACA,YACA,cACA,iBAMJ,0BAMI,WAIR,kBAEI,eACA,SACA,WACA,QACA,mBACA,kBACA,YACA,aHjGC,gBGkGD,2BHjGF,mBGiGE,2BHhGM,WGgGN,2BHsFA,QGrFiB,IHuFjB,yBGrFA,wBHmFA,QGjFqB,EHmFrB,0BGhFA,sCAEI,YACA,qBAIR,qCACI,kBAEI,WAIR,qCACI,kBAEI,cAIR,sCACI,cAEI,cAIR,qCACI,kBAEI,OACA,SACA,mBAIR,mCAGI,YACA,cAKA,wCAGI,YAQA,sCAEI,cAGJ,oCAEI,cAKZ,oCAEI,yBAEJ,iBAEI,SACA,WACA,YACA,iBACA,mBACA,qBACA,uDACA,wBACA,mBAIA,oBACI,gBC1PR,6BAEI,SACA,yBACA,aACA,cACA","file":"common.css"} \ No newline at end of file diff --git a/assets/css/admin/connect.css b/assets/css/admin/connect.css index 110013d42..c73ec8757 100755 --- a/assets/css/admin/connect.css +++ b/assets/css/admin/connect.css @@ -1 +1 @@ -.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .dashicons{float:none !important}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;position:absolute;background:rgba(0,0,0,.8);color:#fff !important;font-family:"arial",serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:-17px;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2);line-height:1.3em;font-weight:bold;text-align:left;text-transform:none !important}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right;left:auto;right:-17px}.fs-tooltip-trigger .fs-tooltip::after{content:" ";display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,.8) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_connect{width:484px;margin:60px auto 20px auto}#fs_connect a{color:inherit}#fs_connect a:not(.button){text-decoration:underline}#fs_connect .fs-box-container{box-shadow:0 1px 2px rgba(0,0,0,.3);border-radius:3px;overflow:hidden;padding-top:40px;background:#f0f0f1}@media screen and (max-width: 483px){#fs_connect{width:auto;margin:30px 0 0 -10px}#fs_connect .fs-box-container{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}}#fs_connect .fs-content{background:#fff;padding:30px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content h2{line-height:1.5em}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key .fs-content{padding-bottom:10px}#fs_connect.require-license-key .fs-actions{border-top:none}#fs_connect.require-license-key .fs-sites-list-container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#fff;border-width:1px 0;border-style:solid;border-color:#f1f1f1}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:" ➜"}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:""}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#fff;-moz-transition:background .5s ease;-o-transition:background .5s ease;-ms-transition:background .5s ease;-webkit-transition:background .5s ease;transition:background .5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions>.fs-trigger{font-size:.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions>.fs-trigger .fs-arrow::after{content:"→";width:20px;display:inline-block}#fs_connect .fs-permissions.fs-open>.fs-trigger .fs-arrow::after{content:"↓" !important}#fs_connect .fs-permissions ul li{padding-left:0;padding-right:0}@media screen and (max-width: 483px){#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:inherit;text-decoration:underline}#fs_connect .fs-header{padding:0;line-height:0;height:0;position:relative}#fs_connect .fs-header .fs-site-icon,#fs_connect .fs-header .fs-connect-logo{position:absolute;top:-8px;border-radius:50%}#fs_connect .fs-header .fs-site-icon{left:152px}#fs_connect .fs-header .fs-connect-logo{right:152px}#fs_connect .fs-header .fs-site-icon,#fs_connect .fs-header img,#fs_connect .fs-header object{width:50px;height:50px;border-radius:50%}#fs_connect .fs-header .fs-plugin-icon{position:absolute;overflow:hidden;top:-23px;left:50%;margin-left:-44px;border-radius:50%;z-index:1}#fs_connect .fs-header .fs-plugin-icon,#fs_connect .fs-header .fs-plugin-icon img{width:80px;height:80px}#fs_connect .fs-header .dashicons-wordpress-alt{font-size:40px;background:#01749a;color:#fff;width:40px;height:40px;padding:5px;border-radius:50%}#fs_connect .fs-header .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-header .dashicons-plus.fs-first{left:28%}#fs_connect .fs-header .dashicons-plus.fs-second{left:65%}#fs_connect .fs-header .fs-plugin-icon,#fs_connect .fs-header .fs-connect-logo,#fs_connect .fs-header .fs-site-icon{border:1px solid #efefef;padding:3px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:.85em;padding:10px 5px}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}.fs-multisite-options-container{margin-top:20px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect{border-radius:3px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#c0c7ca}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:" »"}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:""}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-header .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-header .fs-connect-logo{right:auto;left:20px}.rtl #fs_connect .fs-permissions>.fs-trigger .fs-arrow::after{content:"←"}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:#fff;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:rgba(0,0,0,0);top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:0;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}#license_issues_link{display:block;text-align:center;font-size:.9em;margin-top:10px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .dashicons{float:none !important}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;position:absolute;background:rgba(0,0,0,.8);color:#fff !important;font-family:"arial",serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:-17px;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2);line-height:1.3em;font-weight:bold;text-align:left;text-transform:none !important}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right;left:auto;right:-17px}.fs-tooltip-trigger .fs-tooltip::after{content:" ";display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,.8) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}.fs-permissions .fs-permission.fs-disabled{color:#aaa}.fs-permissions .fs-permission.fs-disabled .fs-permission-description span{color:#aaa}.fs-permissions .fs-permission .fs-switch-feedback{position:absolute;right:15px;top:52px}.fs-permissions ul{height:0;overflow:hidden;margin:0}.fs-permissions ul li{padding:17px 15px;margin:0;position:relative}.fs-permissions ul li>i.dashicons{float:left;font-size:30px;width:30px;height:30px;padding:5px}.fs-permissions ul li .fs-switch{float:right}.fs-permissions ul li .fs-permission-description{margin-left:55px}.fs-permissions ul li .fs-permission-description span{font-size:14px;font-weight:500;color:#23282d}.fs-permissions ul li .fs-permission-description .fs-tooltip{font-size:13px;font-weight:bold}.fs-permissions ul li .fs-permission-description .fs-tooltip-trigger .dashicons{margin:-1px 2px 0 2px}.fs-permissions ul li .fs-permission-description p{margin:2px 0 0 0}.fs-permissions.fs-open{background:#fff}.fs-permissions.fs-open ul{overflow:initial;height:auto;margin:20px 0 10px 0}.fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-right:10px}.fs-permissions .fs-switch-feedback.success{color:#71ae00}.rtl .fs-permissions .fs-switch-feedback{right:auto;left:15px}.rtl .fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-left:10px;margin-right:0}.rtl .fs-permissions ul li .fs-permission-description{margin-right:55px;margin-left:0}.rtl .fs-permissions ul li .fs-switch{float:left}.rtl .fs-permissions ul li i.dashicons{float:right}/*# sourceMappingURL=connect.css.map */ +#fs_connect{margin:60px auto 20px;width:484px}#fs_connect a{color:inherit}#fs_connect a:not(.button){text-decoration:underline}#fs_connect .fs-box-container{background:#f0f0f1;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.3);overflow:hidden;padding-top:40px}@media screen and (max-width:483px){#fs_connect{margin:30px 0 0 -10px;width:auto}#fs_connect .fs-box-container{box-shadow:none}}#fs_connect .fs-content{background:#fff;padding:30px 20px}#fs_connect .fs-content .fs-error{background:snow;border:1px solid #d3135a;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);color:#d3135a;margin-bottom:10px;padding:5px;text-align:center}#fs_connect .fs-content h2{line-height:1.5em}#fs_connect .fs-content p{font-size:1.2em;margin:0;padding:0}#fs_connect .fs-license-key-container{margin:10px auto 0;position:relative;width:280px}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;right:5px;top:5px}#fs_connect.require-license-key .fs-content{padding-bottom:10px}#fs_connect.require-license-key .fs-actions{border-top:none}#fs_connect.require-license-key .fs-sites-list-container td{cursor:pointer}#fs_connect #delegate_to_site_admins{border-bottom:1px dashed;float:right;font-weight:700;height:26px;line-height:37px;margin-right:15px;text-decoration:none;vertical-align:middle}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{background:#fff;border-color:#f1f1f1;border-style:solid;border-width:1px 0;padding:10px 20px}#fs_connect .fs-actions .button{font-size:16px;height:37px;line-height:35px;margin-bottom:0;padding:0 10px 1px}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-left:15px;padding-right:15px}#fs_connect .fs-actions .button.button-primary:after{content:" ➜"}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:""}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{background:#fff;padding:10px 20px;transition:background .5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{margin-top:0;text-align:center}#fs_connect .fs-permissions>.fs-trigger{display:block;font-size:.9em;text-align:center;text-decoration:none}#fs_connect .fs-permissions>.fs-trigger .fs-arrow:after{content:"→";display:inline-block;width:20px}#fs_connect .fs-permissions.fs-open>.fs-trigger .fs-arrow:after{content:"↓"!important}#fs_connect .fs-permissions ul li{padding-left:0;padding-right:0}@media screen and (max-width:483px){#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{background:#777;color:#fff;padding:8px}#fs_connect .fs-freemium-licensing p{display:block;margin:0;padding:0;text-align:center}#fs_connect .fs-freemium-licensing a{color:inherit;text-decoration:underline}#fs_connect .fs-header{height:0;line-height:0;padding:0;position:relative}#fs_connect .fs-header .fs-connect-logo,#fs_connect .fs-header .fs-site-icon{border-radius:50%;position:absolute;top:-8px}#fs_connect .fs-header .fs-site-icon{left:152px}#fs_connect .fs-header .fs-connect-logo{right:152px}#fs_connect .fs-header .fs-site-icon,#fs_connect .fs-header img,#fs_connect .fs-header object{border-radius:50%;height:50px;width:50px}#fs_connect .fs-header .fs-plugin-icon{border-radius:50%;left:50%;margin-left:-44px;overflow:hidden;position:absolute;top:-23px;z-index:1}#fs_connect .fs-header .fs-plugin-icon,#fs_connect .fs-header .fs-plugin-icon img{height:80px;width:80px}#fs_connect .fs-header .dashicons-wordpress-alt{background:#01749a;border-radius:50%;color:#fff;font-size:40px;height:40px;padding:5px;width:40px}#fs_connect .fs-header .dashicons-plus{color:#bbb;font-size:30px;margin-top:-10px;position:absolute;top:50%}#fs_connect .fs-header .dashicons-plus.fs-first{left:28%}#fs_connect .fs-header .dashicons-plus.fs-second{left:65%}#fs_connect .fs-header .fs-connect-logo,#fs_connect .fs-header .fs-plugin-icon,#fs_connect .fs-header .fs-site-icon{background:#fff;border:1px solid #efefef;padding:3px}#fs_connect .fs-terms{font-size:.85em;padding:10px 5px;text-align:center}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}#fs_marketing_optin{border:1px solid #ccc;display:none;line-height:1.5em;margin-top:10px;padding:10px}#fs_marketing_optin .fs-message{display:block;font-size:1.05em;font-weight:600;margin-bottom:5px}#fs_marketing_optin.error{background:#fee;border:1px solid #d3135a}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{display:block;margin-top:5px}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect{border-radius:3px}.rtl #fs_connect .fs-actions{background:#c0c7ca;padding:10px 20px}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:" »"}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:""}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-header .fs-site-icon{left:auto;right:20px}.rtl #fs_connect .fs-header .fs-connect-logo{left:20px;right:auto}.rtl #fs_connect .fs-permissions>.fs-trigger .fs-arrow:after{content:"←"}#fs_theme_connect_wrapper{background:rgba(0,0,0,.75);height:100%;overflow-y:auto;position:fixed;text-align:center;top:0;width:100%;z-index:99990}#fs_theme_connect_wrapper:before{content:"";display:inline-block;height:100%;vertical-align:middle}#fs_theme_connect_wrapper>button.close{background-color:transparent;border:0;color:#fff;cursor:pointer;height:40px;position:absolute;right:0;top:32px;width:40px}#fs_theme_connect_wrapper #fs_connect{display:inline-block;margin-bottom:20px;margin-top:0;text-align:left;top:0;vertical-align:middle}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{box-shadow:none;margin:0}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa}#license_issues_link{display:block;font-size:.9em;margin-top:10px;text-align:center}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .dashicons{float:none!important}.fs-tooltip-trigger .fs-tooltip{background:rgba(0,0,0,.8);border-radius:5px;bottom:100%;box-shadow:1px 1px 1px rgba(0,0,0,.2);color:#fff!important;font-family:arial,serif;font-size:12px;font-weight:700;left:-17px;line-height:1.3em;margin-bottom:5px;opacity:0;padding:10px;position:absolute;right:0;text-align:left;text-transform:none!important;transition:opacity .3s ease-in-out;visibility:hidden;z-index:999999}.rtl .fs-tooltip-trigger .fs-tooltip{left:auto;right:-17px;text-align:right}.fs-tooltip-trigger .fs-tooltip:after{border-color:rgba(0,0,0,.8) transparent transparent;border-style:solid;border-width:5px 5px 0;content:" ";display:block;height:0;left:21px;position:absolute;top:100%;width:0}.rtl .fs-tooltip-trigger .fs-tooltip:after{left:auto;right:21px}.fs-tooltip-trigger:hover .fs-tooltip{opacity:1;visibility:visible}.fs-permissions .fs-permission.fs-disabled,.fs-permissions .fs-permission.fs-disabled .fs-permission-description span{color:#aaa}.fs-permissions .fs-permission .fs-switch-feedback{position:absolute;right:15px;top:52px}.fs-permissions ul{height:0;margin:0;overflow:hidden}.fs-permissions ul li{margin:0;padding:17px 15px;position:relative}.fs-permissions ul li>i.dashicons{float:left;font-size:30px;height:30px;padding:5px;width:30px}.fs-permissions ul li .fs-switch{float:right}.fs-permissions ul li .fs-permission-description{margin-left:55px}.fs-permissions ul li .fs-permission-description span{color:#23282d;font-size:14px;font-weight:500}.fs-permissions ul li .fs-permission-description .fs-tooltip{font-size:13px;font-weight:700}.fs-permissions ul li .fs-permission-description .fs-tooltip-trigger .dashicons{margin:-1px 2px 0}.fs-permissions ul li .fs-permission-description p{margin:2px 0 0}.fs-permissions.fs-open{background:#fff}.fs-permissions.fs-open ul{height:auto;margin:20px 0 10px;overflow:initial}.fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-right:10px}.fs-permissions .fs-switch-feedback.success{color:#71ae00}.rtl .fs-permissions .fs-switch-feedback{left:15px;right:auto}.rtl .fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-left:10px;margin-right:0}.rtl .fs-permissions ul li .fs-permission-description{margin-left:0;margin-right:55px}.rtl .fs-permissions ul li .fs-switch{float:left}.rtl .fs-permissions ul li i.dashicons{float:right} \ No newline at end of file diff --git a/assets/css/admin/connect.css.map b/assets/css/admin/connect.css.map deleted file mode 100644 index 7658b2c56..000000000 --- a/assets/css/admin/connect.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_tooltip.scss","../../scss/_mixins.scss","../../scss/_colors.scss","../../scss/admin/connect.scss","../../scss/admin/_multisite-options.scss","../../scss/admin/_gdpr-consent.scss","../../scss/admin/_permissions.scss"],"names":[],"mappings":"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","file":"connect.css"} \ No newline at end of file diff --git a/assets/css/admin/debug.css b/assets/css/admin/debug.css index c56bddffe..84d9404fe 100644 --- a/assets/css/admin/debug.css +++ b/assets/css/admin/debug.css @@ -1 +1 @@ -label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-switch-label{font-size:20px;line-height:31px;margin:0 5px}#fs_log_book table{font-family:Consolas,Monaco,monospace;font-size:12px}#fs_log_book table th{color:#ccc}#fs_log_book table tr{background:#232525}#fs_log_book table tr.alternate{background:#2b2b2b}#fs_log_book table tr td.fs-col--logger{color:#5a7435}#fs_log_book table tr td.fs-col--type{color:#ffc861}#fs_log_book table tr td.fs-col--function{color:#a7b7b1;font-weight:bold}#fs_log_book table tr td.fs-col--message,#fs_log_book table tr td.fs-col--message a{color:#9a73ac !important}#fs_log_book table tr td.fs-col--file{color:#d07922}#fs_log_book table tr td.fs-col--timestamp{color:#6596be}/*# sourceMappingURL=debug.css.map */ +label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.fs-switch-label{font-size:20px;line-height:31px;margin:0 5px}#fs_log_book table{font-family:Consolas,Monaco,monospace;font-size:12px}#fs_log_book table th{color:#ccc}#fs_log_book table tr{background:#232525}#fs_log_book table tr.alternate{background:#2b2b2b}#fs_log_book table tr td.fs-col--logger{color:#5a7435}#fs_log_book table tr td.fs-col--type{color:#ffc861}#fs_log_book table tr td.fs-col--function{color:#a7b7b1;font-weight:700}#fs_log_book table tr td.fs-col--message,#fs_log_book table tr td.fs-col--message a{color:#9a73ac!important}#fs_log_book table tr td.fs-col--file{color:#d07922}#fs_log_book table tr td.fs-col--timestamp{color:#6596be} \ No newline at end of file diff --git a/assets/css/admin/debug.css.map b/assets/css/admin/debug.css.map deleted file mode 100644 index 454bb2fae..000000000 --- a/assets/css/admin/debug.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_tag.scss","../../scss/admin/debug.scss"],"names":[],"mappings":"AAAA,yBAEI,mBACA,WACA,qBACA,kBACA,YACA,eACA,iBACA,wBAEA,yCAEI,mBAEJ,yCAEI,mBAEJ,+CAEI,mBAEJ,2CAEI,mBCtBR,iBAEI,eACA,iBACA,aAIA,mBACI,sCACA,eAEA,sBACI,WAGJ,sBACI,mBAEA,gCACI,mBAIA,wCACI,cAEJ,sCACI,cAEJ,0CACI,cACA,iBAGA,oFAEI,yBAGR,sCACI,cAEJ,2CACI","file":"debug.css"} \ No newline at end of file diff --git a/assets/css/admin/dialog-boxes.css b/assets/css/admin/dialog-boxes.css index a0a228b07..c16515ac7 100644 --- a/assets/css/admin/dialog-boxes.css +++ b/assets/css/admin/dialog-boxes.css @@ -1 +1 @@ -.fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,.6)}@media(min-width: 961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:rgba(0,0,0,0);position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media(max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media(max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table,.fs-license-options-container table select,.fs-license-options-container table .fs-available-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{position:relative;top:6px;float:left;margin-right:5px}.fs-license-options-container table .fs-other-license-key-container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{width:100%;border-collapse:collapse}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{width:1%;padding-left:3px;padding-right:3px}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key{width:100%}.fs-multisite-options-container{margin-top:20px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:.3;-o-transform:.3;-ms-transform:.3;-webkit-transform:.3;transform:.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,.1) !important}/*# sourceMappingURL=dialog-boxes.css.map */ +.fs-modal{background:rgba(0,0,0,.6);display:none;height:100%;overflow:auto;position:fixed;top:0;width:100%;z-index:100000}@media(min-width:961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:transparent;left:50%;margin-left:-298px;padding-bottom:30px;position:absolute;top:-100%;width:596px;z-index:100001}@media(max-width:650px){.fs-modal .fs-modal-dialog{box-sizing:border-box;margin-left:-50%;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active,.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{background:#fefefe;border:0;padding:20px}.fs-modal .fs-modal-header{background:#fbfbfb;border-bottom:1px solid #eee;margin-bottom:-10px;padding:15px 20px;position:relative}.fs-modal .fs-modal-header h4{color:#cacaca;font-size:1.2em;font-weight:700;letter-spacing:.6px;margin:0;padding:0;text-shadow:1px 1px 1px #fff;text-transform:uppercase;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{border-radius:20px;color:#bbb;cursor:pointer;padding:3px;position:absolute;right:10px;top:12px;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{background:#aaa;color:#fff}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-size:20px;font-weight:700;margin-top:0}.fs-modal .fs-modal-footer{border-top:1px solid #eee;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{display:none;margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{left:20px;right:auto}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .internal-message,.fs-modal.fs-modal-deactivation-feedback .reason-input{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea,.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;display:none;padding:7px}@media(max-width:650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0!important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{line-height:1.5em;margin-top:0}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:700;margin-bottom:0;padding:0 25px}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;position:relative;top:5px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-license-options-container table,.fs-license-options-container table .fs-available-license-key,.fs-license-options-container table select,.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{float:left;margin-right:5px;position:relative;top:6px}.fs-license-options-container table .fs-other-license-key-container div{display:block;height:30px;overflow:hidden;position:relative;top:2px;width:auto}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{border-collapse:collapse;width:100%}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{padding-left:3px;padding-right:3px;width:1%}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key,.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width:650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-left:0;margin-right:7px}a.show-license-resend-modal{display:inline-block;margin-top:4px}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#0074a3;height:20px;position:absolute;top:0;transform:.3;width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;-o-animation-delay:.6s;-ms-animation-delay:.6s;-webkit-animation-delay:.6s;-moz-animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;-o-animation-delay:.75s;-ms-animation-delay:.75s;-webkit-animation-delay:.75s;-moz-animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;-o-animation-delay:.9s;-ms-animation-delay:.9s;-webkit-animation-delay:.9s;-moz-animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons,.fs-modal-auto-install #request-filesystem-credentials-form h2{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;max-width:100%;padding:10px 10px 5px;width:300px}.fs-modal-auto-install #request-filesystem-credentials-form fieldset,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form>div{display:block;margin:0 auto;max-width:100%;width:300px}.button-primary.warn{background:#f56a48;border-color:#ec6544 #d2593c #d2593c;box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{background:#e76444!important;border-color:#d85e40!important;color:#f5b3a1!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important} \ No newline at end of file diff --git a/assets/css/admin/dialog-boxes.css.map b/assets/css/admin/dialog-boxes.css.map deleted file mode 100644 index fd37b06d7..000000000 --- a/assets/css/admin/dialog-boxes.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_modal-common.scss","../../scss/_colors.scss","../../scss/_mixins.scss","../../scss/admin/_deactivation-feedback.scss","../../scss/admin/_subscription-cancellation.scss","../../scss/admin/_license-activation.scss","../../scss/admin/_user-change.scss","../../scss/admin/_data-debug-mode.scss","../../scss/admin/_multisite-options.scss","../../scss/admin/_license-key-resend.scss","../../scss/admin/_email-address-update.scss","../../scss/admin/_ajax-loader.scss","../../scss/admin/_auto-install.scss","../../scss/admin/_buttons.scss"],"names":[],"mappings":"AAGA,UACC,eACA,cACA,YACA,WACA,MACA,eACA,aACA,0BAEA,yBAVD,UAWE,mBAEA,eACC,eACA,qBAIF,qBAEC,sBAGD,2BACC,yBACA,kBACA,SACA,mBACA,oBACA,UACA,eACA,YAEA,yBAVD,2BAWE,iBACA,sBACA,kBACA,mBACA,WAEA,qDACC,iBAKH,iBACC,cAEA,wBACC,cAGD,kCACC,QAKD,sCACC,oBCjC4B,QDoC7B,oCACC,iBCtCuB,QD2CxB,mCACC,oBCvCyB,QD0C1B,iCACC,iBC5CoB,QDiDrB,oCACC,oBCnD0B,QDsD3B,kCACC,iBCxDqB,QD6DvB,oDAEC,SACA,mBACA,aAGE,2BACI,6BACA,mBACA,kBACA,kBACN,oBAGM,8BACI,SACA,UACA,yBACA,gBACA,iBACA,cACA,6BACA,oBACA,mCAGJ,qCACI,kBACA,WACA,SACA,eACA,WE9EP,mBF+EO,KE9EV,sBF8EU,KE7EF,cF6EE,KACA,YE+CP,gBF9CO,oBE+CL,cF/CK,oBEgDN,eFhDM,oBEiDV,mBFjDU,oBEkDF,WFlDE,oBAEA,2CACI,WACA,gBAKZ,sGAEC,qBAMJ,yBACC,gBAEA,2BACC,eAGD,4BACC,eACA,kBAGD,6BACC,gBAEA,gCACC,iBACA,eACA,aAKH,2BACC,0BACA,iBAEA,mCACC,aAEA,gDACC,SAMF,yCACC,SACA,aAGD,uCACC,aASS,0CACI,WACA,UAId,gCACC,gBAKH,kBACC,gBG/MA,kHACC,sBAEA,kQACC,WAKD,0FACC,sBACA,YACA,aAGD,yBACC,6DACC,mBAEA,0JACC,iBAGD,mEACC,cAEA,wEACC,mBACA,iBAOL,wIAEC,WACA,iBAEA,kJACC,YAIC,yDACI,wBAEA,4DACI,aACA,kBAKZ,+BACC,aC1DA,wEACC,UACA,iBACA,eACA,gBAIM,iFACI,WACA,QACA,kBAEA,sFACI,YAIR,gFACI,cACA,iBAEA,qFACI,cACA,kBCvBd,0EACC,WAOD,6IACC,WAGD,mDACC,SAIA,0EACC,kBACA,QACA,WACA,iBAGD,wEACC,gBACA,WACA,YACA,cACA,QACA,kBAEA,8EACC,SAQJ,4BACC,eC1CA,2EACC,WAMF,wCACC,WACA,yBAEA,2CACC,cACA,kBAIA,uEACC,qBAGD,sFACC,gBACA,aAIF,0EACC,WAEA,8EACC,cACA,WAEA,sKACC,mBAGD,oFACC,SACA,iBACA,kBAGD,kFACC,WAEA,wFACC,WChDJ,4FACC,WCHH,gCACI,gBACA,sBACA,YAEA,kCACI,qBAEA,wCACI,gBAGJ,2CACI,iBAIR,sDACI,cACA,UAEA,4EACI,iBAEA,iGACI,aAKZ,yDACI,aACA,cAEA,kEACI,0BACA,gBClCR,+DAEI,gBACA,kBAKA,sEAEI,YAGJ,wDAEI,cACA,mBAMJ,qEAEI,WAGJ,mEAEI,YACA,gBAEA,yBALJ,mEAMQ,gBAYJ,oGAEI,iBACA,gBAGJ,4EAEI,WACA,iBACA,cAMhB,4BAEI,eACA,qBChEI,wEACI,WAIR,0CACI,gBAGJ,2CACI,gBAGI,yDACI,WACA,aAEA,oEACI,cACA,WACA,iBClBpB,gBAEI,kBACA,YACA,YACA,YAEA,oCAEI,kBACA,MACA,iBV8BY,QU7BZ,WACA,YT6KJ,yCACA,sCACA,qCACA,oCACA,iCAIA,gCACA,6BACA,4BACA,2BACA,wBAoBA,mCACA,sCACA,uCACA,2CACA,wCApBA,mCACA,gCACA,+BACA,8BACA,2BAhEA,eS5HuB,GT6HrB,aS7HqB,GT8HtB,cS9HsB,GT+H1B,kBS/H0B,GTgIjB,UShIiB,GAKnB,sCAEI,STyLR,qBACA,wBACA,yBACA,6BACA,0BS/LI,sCAEI,UTyLR,sBACA,yBACA,0BACA,8BACA,2BS/LI,sCAEI,UTyLR,qBACA,wBACA,yBACA,6BACA,0BS/LI,sCAEI,UTyLR,sBACA,yBACA,0BACA,8BACA,2BS/LI,sCAEI,UTyLR,qBACA,wBACA,yBACA,6BACA,0BS/LI,sCAEI,UTyLR,sBACA,yBACA,0BACA,8BACA,2BS/LI,sCAEI,WTyLR,qBACA,wBACA,yBACA,6BACA,0BS/LI,sCAEI,WTyLR,sBACA,yBACA,0BACA,8BACA,2BAzIC,kCS5CD,GT6GA,eS3GuB,ST4GrB,aS5GqB,ST6GtB,cS7GsB,ST8G1B,kBS9G0B,ST+GjB,US/GiB,SACnB,iBVKY,QUFhB,KTuGA,eSrGuB,WTsGrB,aStGqB,WTuGtB,cSvGsB,WTwG1B,kBSxG0B,WTyGjB,USzGiB,WACnB,iBA7CI,MTiFN,iCS7CF,GT6GA,eS3GuB,ST4GrB,aS5GqB,ST6GtB,cS7GsB,ST8G1B,kBS9G0B,ST+GjB,US/GiB,SACnB,iBVKY,QUFhB,KTuGA,eSrGuB,WTsGrB,aStGqB,WTuGtB,cSvGsB,WTwG1B,kBSxG0B,WTyGjB,USzGiB,WACnB,iBA7CI,MTkFL,gCS9CH,GT6GA,eS3GuB,ST4GrB,aS5GqB,ST6GtB,cS7GsB,ST8G1B,kBS9G0B,ST+GjB,US/GiB,SACnB,iBVKY,QUFhB,KTuGA,eSrGuB,WTsGrB,aStGqB,WTuGtB,cSvGsB,WTwG1B,kBSxG0B,WTyGjB,USzGiB,WACnB,iBA7CI,MTmFV,qCS/CE,GT6GA,eS3GuB,ST4GrB,aS5GqB,ST6GtB,cS7GsB,ST8G1B,kBS9G0B,ST+GjB,US/GiB,SACnB,iBVKY,QUFhB,KTuGA,eSrGuB,WTsGrB,aStGqB,WTuGtB,cSvGsB,WTwG1B,kBSxG0B,WTyGjB,USzGiB,WACnB,iBA7CI,MToFF,6BShDN,GT6GA,eS3GuB,ST4GrB,aS5GqB,ST6GtB,cS7GsB,ST8G1B,kBS9G0B,ST+GjB,US/GiB,SACnB,iBVKY,QUFhB,KTuGA,eSrGuB,WTsGrB,aStGqB,WTuGtB,cSvGsB,WTwG1B,kBSxG0B,WTyGjB,USzGiB,WACnB,iBA7CI,MCKJ,0KAGI,aAGJ,4OAII,wBACA,2BACA,MAhBI,MAiBJ,eAGJ,uMAII,MAxBI,MAyBJ,eACA,cACA,cC7BZ,qBACI,2BACA,sFACA,WZgD+B,QY/C/B,qCAEA,2BACI,WZ6CmC,QY5CnC,aZsCuB,QYnC3B,2BACI,+CAGJ,4BACI,WZqCkC,QYpClC,aZ6BuB,QY5BvB,iCAGJ,8BACI,yBACA,8BACA,gCACA","file":"dialog-boxes.css"} \ No newline at end of file diff --git a/assets/css/admin/gdpr-optin-notice.css b/assets/css/admin/gdpr-optin-notice.css index 9085c7a8e..836dcd197 100644 --- a/assets/css/admin/gdpr-optin-notice.css +++ b/assets/css/admin/gdpr-optin-notice.css @@ -1 +1 @@ -.fs-notice[data-id^=gdpr_optin_actions] .underlined{text-decoration:underline}.fs-notice[data-id^=gdpr_optin_actions] ul .button,.fs-notice[data-id^=gdpr_optin_actions] ul .action-description{vertical-align:middle}.fs-notice[data-id^=gdpr_optin_actions] ul .action-description{display:inline-block;margin-left:3px}/*# sourceMappingURL=gdpr-optin-notice.css.map */ +.fs-notice[data-id^=gdpr_optin_actions] .underlined{text-decoration:underline}.fs-notice[data-id^=gdpr_optin_actions] ul .action-description,.fs-notice[data-id^=gdpr_optin_actions] ul .button{vertical-align:middle}.fs-notice[data-id^=gdpr_optin_actions] ul .action-description{display:inline-block;margin-left:3px} \ No newline at end of file diff --git a/assets/css/admin/gdpr-optin-notice.css.map b/assets/css/admin/gdpr-optin-notice.css.map deleted file mode 100644 index 6279ec52e..000000000 --- a/assets/css/admin/gdpr-optin-notice.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/gdpr-optin-notice.scss"],"names":[],"mappings":"AAEI,oDACI,0BAIA,kHACI,sBAGJ,+DACI,qBACA","file":"gdpr-optin-notice.css"} \ No newline at end of file diff --git a/assets/css/admin/optout.css b/assets/css/admin/optout.css index ae885056a..922c181bd 100644 --- a/assets/css/admin/optout.css +++ b/assets/css/admin/optout.css @@ -1 +1 @@ -.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .dashicons{float:none !important}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;position:absolute;background:rgba(0,0,0,.8);color:#fff !important;font-family:"arial",serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:-17px;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2);line-height:1.3em;font-weight:bold;text-align:left;text-transform:none !important}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right;left:auto;right:-17px}.fs-tooltip-trigger .fs-tooltip::after{content:" ";display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,.8) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}.fs-permissions .fs-permission.fs-disabled{color:#aaa}.fs-permissions .fs-permission.fs-disabled .fs-permission-description span{color:#aaa}.fs-permissions .fs-permission .fs-switch-feedback{position:absolute;right:15px;top:52px}.fs-permissions ul{height:0;overflow:hidden;margin:0}.fs-permissions ul li{padding:17px 15px;margin:0;position:relative}.fs-permissions ul li>i.dashicons{float:left;font-size:30px;width:30px;height:30px;padding:5px}.fs-permissions ul li .fs-switch{float:right}.fs-permissions ul li .fs-permission-description{margin-left:55px}.fs-permissions ul li .fs-permission-description span{font-size:14px;font-weight:500;color:#23282d}.fs-permissions ul li .fs-permission-description .fs-tooltip{font-size:13px;font-weight:bold}.fs-permissions ul li .fs-permission-description .fs-tooltip-trigger .dashicons{margin:-1px 2px 0 2px}.fs-permissions ul li .fs-permission-description p{margin:2px 0 0 0}.fs-permissions.fs-open{background:#fff}.fs-permissions.fs-open ul{overflow:initial;height:auto;margin:20px 0 10px 0}.fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-right:10px}.fs-permissions .fs-switch-feedback.success{color:#71ae00}.rtl .fs-permissions .fs-switch-feedback{right:auto;left:15px}.rtl .fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-left:10px;margin-right:0}.rtl .fs-permissions ul li .fs-permission-description{margin-right:55px;margin-left:0}.rtl .fs-permissions ul li .fs-switch{float:left}.rtl .fs-permissions ul li i.dashicons{float:right}.fs-modal-opt-out .fs-modal-footer .fs-opt-out-button{line-height:30px;margin-right:10px}.fs-modal-opt-out .fs-permissions{margin-top:0 !important}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-group-opt-out-button{float:right;line-height:1.1em}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-switch-feedback{float:right;line-height:1.1em;margin-right:10px}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-switch-feedback .fs-ajax-spinner{margin:-2px 0 0}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header-title{font-size:1.1em;font-weight:600;text-transform:uppercase;display:block;line-height:1.1em;margin:.5em 0}.fs-modal-opt-out .fs-permissions .fs-permissions-section--desc{margin-top:0}.fs-modal-opt-out .fs-permissions hr{border:0;border-top:#eee solid 1px;margin:25px 0 20px 0}.fs-modal-opt-out .fs-permissions ul{border:1px solid #c3c4c7;border-radius:3px;margin:10px 0 0 0;box-shadow:0 1px 1px rgba(0,0,0,.04)}.fs-modal-opt-out .fs-permissions ul li{border-bottom:1px solid #d7dde1;border-left:4px solid #72aee6}.rtl .fs-modal-opt-out .fs-permissions ul li{border-left:none;border-right:4px solid #72aee6}.fs-modal-opt-out .fs-permissions ul li.fs-disabled{border-left-color:rgba(114,174,230,0)}.fs-modal-opt-out .fs-permissions ul li:last-child{border-bottom:none}/*# sourceMappingURL=optout.css.map */ +.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .dashicons{float:none!important}.fs-tooltip-trigger .fs-tooltip{background:rgba(0,0,0,.8);border-radius:5px;bottom:100%;box-shadow:1px 1px 1px rgba(0,0,0,.2);color:#fff!important;font-family:arial,serif;font-size:12px;font-weight:700;left:-17px;line-height:1.3em;margin-bottom:5px;opacity:0;padding:10px;position:absolute;right:0;text-align:left;text-transform:none!important;transition:opacity .3s ease-in-out;visibility:hidden;z-index:999999}.rtl .fs-tooltip-trigger .fs-tooltip{left:auto;right:-17px;text-align:right}.fs-tooltip-trigger .fs-tooltip:after{border-color:rgba(0,0,0,.8) transparent transparent;border-style:solid;border-width:5px 5px 0;content:" ";display:block;height:0;left:21px;position:absolute;top:100%;width:0}.rtl .fs-tooltip-trigger .fs-tooltip:after{left:auto;right:21px}.fs-tooltip-trigger:hover .fs-tooltip{opacity:1;visibility:visible}.fs-permissions .fs-permission.fs-disabled,.fs-permissions .fs-permission.fs-disabled .fs-permission-description span{color:#aaa}.fs-permissions .fs-permission .fs-switch-feedback{position:absolute;right:15px;top:52px}.fs-permissions ul{height:0;margin:0;overflow:hidden}.fs-permissions ul li{margin:0;padding:17px 15px;position:relative}.fs-permissions ul li>i.dashicons{float:left;font-size:30px;height:30px;padding:5px;width:30px}.fs-permissions ul li .fs-switch{float:right}.fs-permissions ul li .fs-permission-description{margin-left:55px}.fs-permissions ul li .fs-permission-description span{color:#23282d;font-size:14px;font-weight:500}.fs-permissions ul li .fs-permission-description .fs-tooltip{font-size:13px;font-weight:700}.fs-permissions ul li .fs-permission-description .fs-tooltip-trigger .dashicons{margin:-1px 2px 0}.fs-permissions ul li .fs-permission-description p{margin:2px 0 0}.fs-permissions.fs-open{background:#fff}.fs-permissions.fs-open ul{height:auto;margin:20px 0 10px;overflow:initial}.fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-right:10px}.fs-permissions .fs-switch-feedback.success{color:#71ae00}.rtl .fs-permissions .fs-switch-feedback{left:15px;right:auto}.rtl .fs-permissions .fs-switch-feedback .fs-ajax-spinner{margin-left:10px;margin-right:0}.rtl .fs-permissions ul li .fs-permission-description{margin-left:0;margin-right:55px}.rtl .fs-permissions ul li .fs-switch{float:left}.rtl .fs-permissions ul li i.dashicons{float:right}.fs-modal-opt-out .fs-modal-footer .fs-opt-out-button{line-height:30px;margin-right:10px}.fs-modal-opt-out .fs-permissions{margin-top:0!important}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-group-opt-out-button{float:right;line-height:1.1em}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-switch-feedback{float:right;line-height:1.1em;margin-right:10px}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header .fs-switch-feedback .fs-ajax-spinner{margin:-2px 0 0}.fs-modal-opt-out .fs-permissions .fs-permissions-section--header-title{display:block;font-size:1.1em;font-weight:600;line-height:1.1em;margin:.5em 0;text-transform:uppercase}.fs-modal-opt-out .fs-permissions .fs-permissions-section--desc{margin-top:0}.fs-modal-opt-out .fs-permissions hr{border:0;border-top:1px solid #eee;margin:25px 0 20px}.fs-modal-opt-out .fs-permissions ul{border:1px solid #c3c4c7;border-radius:3px;box-shadow:0 1px 1px rgba(0,0,0,.04);margin:10px 0 0}.fs-modal-opt-out .fs-permissions ul li{border-bottom:1px solid #d7dde1;border-left:4px solid #72aee6}.rtl .fs-modal-opt-out .fs-permissions ul li{border-left:none;border-right:4px solid #72aee6}.fs-modal-opt-out .fs-permissions ul li.fs-disabled{border-left-color:rgba(114,174,230,0)}.fs-modal-opt-out .fs-permissions ul li:last-child{border-bottom:none} \ No newline at end of file diff --git a/assets/css/admin/optout.css.map b/assets/css/admin/optout.css.map deleted file mode 100644 index 6d768db75..000000000 --- a/assets/css/admin/optout.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_tooltip.scss","../../scss/_mixins.scss","../../scss/_colors.scss","../../scss/admin/_permissions.scss","../../scss/admin/optout.scss"],"names":[],"mappings":"AAEA,oBAOI,kBALA,2BAEI,YAKJ,+BACI,sBAGJ,gCAEI,UACA,kBC4JH,gBD3JG,wBC4JD,cD5JC,wBC6JF,eD7JE,wBC8JN,mBD9JM,wBC+JE,WD/JF,wBACA,kBACA,WE+DY,eF9DZ,sBACA,0BACA,eACA,aACA,eACA,YACA,kBACA,WACA,QCiBH,mBDhBG,ICiBN,sBDjBM,ICkBE,cDlBF,ICyBH,gBDxBG,2BCyBN,mBDzBM,2BC0BE,WD1BF,2BACA,kBACA,iBACA,gBACA,+BAEA,qCAEI,iBACA,UACA,YAGJ,uCAEI,YACA,cACA,QACA,SACA,mBACA,2BACA,sEACA,kBACA,SACA,UAEA,4CAEI,WACA,UAOR,sCAEI,mBACA,UGhEJ,2CACI,WAEA,2EACI,WAIR,mDACI,kBACA,WACA,SAIR,mBACI,SACA,gBACA,SAEA,sBACI,kBACA,SACA,kBAEA,kCACI,WACA,UA/BO,KAgCP,MAhCO,KAiCP,OAjCO,KAkCP,YAGJ,iCACI,YAGJ,iDACI,iBAEA,sDACI,eACA,gBACA,cAGJ,6DACI,eACA,iBAGJ,gFACI,sBAGJ,mDACI,iBAMhB,wBACI,gBAEA,2BACI,iBACA,YACA,qBAKJ,qDACI,kBAGJ,4CACI,MDlEU,QCqEd,yCAEI,WACA,UAEA,0DACI,iBACA,eAUA,sDACI,kBACA,cAGJ,sCACI,WAGJ,uCACI,YC3GZ,sDACI,iBACA,kBAIR,kCACI,wBAEA,2FACI,YACA,kBAGJ,sFACI,YACA,kBACA,kBAEA,uGACI,gBAIR,wEACI,gBACA,gBACA,yBACA,cACA,kBACA,cAGJ,gEACI,aAGJ,qCACI,SACA,0BACA,qBAGJ,qCACI,yBACA,kBACA,kBACA,qCAEA,wCACI,gCACA,8BAEA,6CACI,iBACA,+BAGJ,oDACI,sCAGJ,mDACI","file":"optout.css"} \ No newline at end of file diff --git a/assets/css/admin/plugins.css b/assets/css/admin/plugins.css index 3c786d5c7..a24b4814d 100644 --- a/assets/css/admin/plugins.css +++ b/assets/css/admin/plugins.css @@ -1 +1 @@ -label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.wp-list-table.plugins .plugin-title span.fs-tag{display:inline-block;margin-left:5px;line-height:10px}/*# sourceMappingURL=plugins.css.map */ +label.fs-tag,span.fs-tag{background:#ffba00;border-radius:3px;color:#fff;display:inline-block;font-size:11px;line-height:11px;padding:5px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.wp-list-table.plugins .plugin-title span.fs-tag{display:inline-block;line-height:10px;margin-left:5px} \ No newline at end of file diff --git a/assets/css/admin/plugins.css.map b/assets/css/admin/plugins.css.map deleted file mode 100644 index 63a05b49b..000000000 --- a/assets/css/admin/plugins.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/admin/_tag.scss","../../scss/admin/plugins.scss"],"names":[],"mappings":"AAAA,yBAEI,mBACA,WACA,qBACA,kBACA,YACA,eACA,iBACA,wBAEA,yCAEI,mBAEJ,yCAEI,mBAEJ,+CAEI,mBAEJ,2CAEI,mBCpBA,iDACI,qBACA,gBACA","file":"plugins.css"} \ No newline at end of file diff --git a/assets/css/customizer.css b/assets/css/customizer.css index bac44a70c..a317b5ba9 100644 --- a/assets/css/customizer.css +++ b/assets/css/customizer.css @@ -1 +1 @@ -#fs_customizer_upsell .fs-customizer-plan{padding:10px 20px 20px 20px;border-radius:3px;background:#fff}#fs_customizer_upsell .fs-customizer-plan h2{position:relative;margin:0;line-height:2em;text-transform:uppercase}#fs_customizer_upsell .fs-customizer-plan h2 .button-link{top:-2px}#fs_customizer_upsell .fs-feature{position:relative}#fs_customizer_upsell .dashicons-yes{color:#0085ba;font-size:2em;vertical-align:bottom;margin-left:-7px;margin-right:10px}.rtl #fs_customizer_upsell .dashicons-yes{margin-left:10px;margin-right:-7px}#fs_customizer_upsell .dashicons-editor-help{color:#bbb;cursor:help}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{opacity:0;visibility:hidden;-moz-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;position:absolute;background:#000;color:#fff;font-family:"arial",serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{text-align:right}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{content:" ";display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);position:absolute;top:100%;left:21px}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{right:21px;left:auto}#fs_customizer_upsell .dashicons-editor-help:hover .fs-feature-desc{visibility:visible;opacity:1}#fs_customizer_upsell .button-primary{display:block;text-align:center;margin-top:10px}#fs_customizer_support{display:block !important}#fs_customizer_support .button{float:right}#fs_customizer_support .button-group{width:100%;display:block;margin-top:10px}#fs_customizer_support .button-group .button{float:none;width:50%;text-align:center}#customize-theme-controls #accordion-section-freemius_upsell{border-top:1px solid #0085ba !important;border-bottom:1px solid #0085ba !important}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title{color:#fff;background-color:#0085ba;border-left:4px solid #0085ba;transition:.15s background-color ease-in-out,.15s border-color ease-in-out;outline:none;border-bottom:none !important}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:hover{background-color:#008ec2;border-left-color:#0073aa}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:after{color:#fff}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title{border-left:none;border-right:4px solid #0085ba}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title:hover{border-right-color:#0073aa}/*# sourceMappingURL=customizer.css.map */ +#fs_customizer_upsell .fs-customizer-plan{background:#fff;border-radius:3px;padding:10px 20px 20px}#fs_customizer_upsell .fs-customizer-plan h2{line-height:2em;margin:0;position:relative;text-transform:uppercase}#fs_customizer_upsell .fs-customizer-plan h2 .button-link{top:-2px}#fs_customizer_upsell .fs-feature{position:relative}#fs_customizer_upsell .dashicons-yes{color:#0085ba;font-size:2em;margin-left:-7px;margin-right:10px;vertical-align:bottom}.rtl #fs_customizer_upsell .dashicons-yes{margin-left:10px;margin-right:-7px}#fs_customizer_upsell .dashicons-editor-help{color:#bbb;cursor:help}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{background:#000;border-radius:5px;bottom:100%;box-shadow:1px 1px 1px rgba(0,0,0,.2);color:#fff;font-family:arial,serif;font-size:12px;font-weight:700;left:0;line-height:1.3em;margin-bottom:5px;opacity:0;padding:10px;position:absolute;right:0;text-align:left;transition:opacity .3s ease-in-out;visibility:hidden;z-index:999999}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{text-align:right}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc:after{border-color:#000 transparent transparent;border-style:solid;border-width:5px 5px 0;content:" ";display:block;height:0;left:21px;position:absolute;top:100%;width:0}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc:after{left:auto;right:21px}#fs_customizer_upsell .dashicons-editor-help:hover .fs-feature-desc{opacity:1;visibility:visible}#fs_customizer_upsell .button-primary{display:block;margin-top:10px;text-align:center}#fs_customizer_support{display:block!important}#fs_customizer_support .button{float:right}#fs_customizer_support .button-group{display:block;margin-top:10px;width:100%}#fs_customizer_support .button-group .button{float:none;text-align:center;width:50%}#customize-theme-controls #accordion-section-freemius_upsell{border-bottom:1px solid #0085ba!important;border-top:1px solid #0085ba!important}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title{background-color:#0085ba;border-bottom:none!important;border-left:4px solid #0085ba;color:#fff;outline:none;transition:background-color .15s ease-in-out,border-color .15s ease-in-out}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:hover{background-color:#008ec2;border-left-color:#0073aa}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:after{color:#fff}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title{border-left:none;border-right:4px solid #0085ba}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title:hover{border-right-color:#0073aa} \ No newline at end of file diff --git a/assets/css/customizer.css.map b/assets/css/customizer.css.map deleted file mode 100644 index 9bc02c889..000000000 --- a/assets/css/customizer.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../scss/customizer.scss","../scss/_mixins.scss","../scss/_colors.scss"],"names":[],"mappings":"AAGI,0CACI,4BACA,kBACA,gBAEA,6CACI,kBACA,SACA,gBACA,yBAEA,0DACI,SAKZ,kCACI,kBAGJ,qCACI,cACA,cACA,sBACA,iBACA,kBAEA,0CACI,iBACA,kBAIR,6CAEI,WACA,YAIA,8DACI,UACA,kBCgIP,gBD/HO,wBCgIL,cDhIK,wBCiIN,eDjIM,wBCkIV,mBDlIU,wBCmIF,WDnIE,wBAEA,kBACA,WARY,KASZ,WACA,0BACA,eACA,aACA,eACA,YACA,kBACA,OACA,QCZP,mBDaO,ICZV,sBDYU,ICXF,cDWE,ICJP,gBDKO,2BCJV,mBDIU,2BCHF,WDGE,2BACA,kBACA,iBACA,gBAEA,mEAEI,iBAGJ,qEACI,YACA,cACA,QACA,SACA,mBACA,2BACA,4DACA,kBACA,SACA,UAEA,0EACI,WACA,UAMR,oEACI,mBACA,UAKZ,sCACI,cACA,kBACA,gBAIR,uBAEI,yBAEA,+BACI,YAGJ,qCACI,WACA,cACA,gBAEA,6CACI,WACA,UACA,kBAKZ,6DAEI,wCACA,2CAEA,wFAEI,ME5EkB,KF6ElB,iBE5E6B,QF6E7B,8BACA,2EACA,aACA,8BAEA,8FAEI,iBEnF+B,QFoF/B,kBElFgC,QFqFpC,8FACI,ME1Fc,KFgGlB,6FAEI,iBACA,+BAEA,mGAEI,mBEnG4B","file":"customizer.css"} \ No newline at end of file diff --git a/assets/js/nojquery.ba-postmessage.js b/assets/js/nojquery.ba-postmessage.js index aedbd81ac..d3414ff13 100755 --- a/assets/js/nojquery.ba-postmessage.js +++ b/assets/js/nojquery.ba-postmessage.js @@ -25,116 +25,4 @@ * 5. The use of `$.isFunction` is replaced by a functionally-identical check. * 6. The `$:nomunge` YUI option is no longer necessary. */ - -function NoJQueryPostMessageMixin(postBinding, receiveBinding) { - - var setMessageCallback, unsetMessageCallback, currentMsgCallback, - intervalId, lastHash, cacheBust = 1; - - if (window.postMessage) { - - if (window.addEventListener) { - setMessageCallback = function(callback) { - window.addEventListener('message', callback, false); - } - - unsetMessageCallback = function(callback) { - window.removeEventListener('message', callback, false); - } - } else { - setMessageCallback = function(callback) { - window.attachEvent('onmessage', callback); - } - - unsetMessageCallback = function(callback) { - window.detachEvent('onmessage', callback); - } - } - - this[postBinding] = function(message, targetUrl, target) { - if (!targetUrl) { - return; - } - - // The browser supports window.postMessage, so call it with a targetOrigin - // set appropriately, based on the targetUrl parameter. - target.postMessage( message, targetUrl.replace( /([^:]+:\/\/[^\/]+).*/, '$1' ) ); - } - - // Since the browser supports window.postMessage, the callback will be - // bound to the actual event associated with window.postMessage. - this[receiveBinding] = function(callback, sourceOrigin, delay) { - // Unbind an existing callback if it exists. - if (currentMsgCallback) { - unsetMessageCallback(currentMsgCallback); - currentMsgCallback = null; - } - - if (!callback) { - return false; - } - - // Bind the callback. A reference to the callback is stored for ease of - // unbinding. - currentMsgCallback = setMessageCallback(function(e) { - switch(Object.prototype.toString.call(sourceOrigin)) { - case '[object String]': - if (sourceOrigin !== e.origin) { - return false; - } - break; - case '[object Function]': - if (sourceOrigin(e.origin)) { - return false; - } - break; - } - - callback(e); - }); - }; - - } else { - - this[postBinding] = function(message, targetUrl, target) { - if (!targetUrl) { - return; - } - - // The browser does not support window.postMessage, so set the location - // of the target to targetUrl#message. A bit ugly, but it works! A cache - // bust parameter is added to ensure that repeat messages trigger the - // callback. - target.location = targetUrl.replace( /#.*$/, '' ) + '#' + (+new Date) + (cacheBust++) + '&' + message; - } - - // Since the browser sucks, a polling loop will be started, and the - // callback will be called whenever the location.hash changes. - this[receiveBinding] = function(callback, sourceOrigin, delay) { - if (intervalId) { - clearInterval(intervalId); - intervalId = null; - } - - if (callback) { - delay = typeof sourceOrigin === 'number' - ? sourceOrigin - : typeof delay === 'number' - ? delay - : 100; - - intervalId = setInterval(function(){ - var hash = document.location.hash, - re = /^#?\d+&/; - if ( hash !== lastHash && re.test( hash ) ) { - lastHash = hash; - callback({ data: hash.replace( re, '' ) }); - } - }, delay ); - } - }; - - } - - return this; -} \ No newline at end of file +function NoJQueryPostMessageMixin(n,e){var t,i,o,s,a,r=1;return window.postMessage?(window.addEventListener?(t=function(n){window.addEventListener("message",n,!1)},i=function(n){window.removeEventListener("message",n,!1)}):(t=function(n){window.attachEvent("onmessage",n)},i=function(n){window.detachEvent("onmessage",n)}),this[n]=function(n,e,t){e&&t.postMessage(n,e.replace(/([^:]+:\/\/[^\/]+).*/,"$1"))},this[e]=function(n,e,s){if(o&&(i(o),o=null),!n)return!1;o=t((function(t){switch(Object.prototype.toString.call(e)){case"[object String]":if(e!==t.origin)return!1;break;case"[object Function]":if(e(t.origin))return!1}n(t)}))}):(this[n]=function(n,e,t){e&&(t.location=e.replace(/#.*$/,"")+"#"+ +new Date+r+++"&"+n)},this[e]=function(n,e,t){s&&(clearInterval(s),s=null),n&&(t="number"==typeof e?e:"number"==typeof t?t:100,s=setInterval((function(){var e=document.location.hash,t=/^#?\d+&/;e!==a&&t.test(e)&&(a=e,n({data:e.replace(t,"")}))}),t))}),this} \ No newline at end of file diff --git a/assets/js/nojquery.ba-postmessage.min.js b/assets/js/nojquery.ba-postmessage.min.js deleted file mode 100755 index ae542d4e8..000000000 --- a/assets/js/nojquery.ba-postmessage.min.js +++ /dev/null @@ -1,12 +0,0 @@ -/* - * nojquery-postmessage by Jeff Lee - * a non-jQuery fork of: - * - * jQuery postMessage - v0.5 - 9/11/2009 - * http://benalman.com/projects/jquery-postmessage-plugin/ - * - * Copyright (c) 2009 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -function NoJQueryPostMessageMixin(g,a){var b,h,e,d,f,c=1;if(window.postMessage){if(window.addEventListener){b=function(i){window.addEventListener("message",i,false)};h=function(i){window.removeEventListener("message",i,false)}}else{b=function(i){window.attachEvent("onmessage",i)};h=function(i){window.detachEvent("onmessage",i)}}this[g]=function(i,k,j){if(!k){return}j.postMessage(i,k.replace(/([^:]+:\/\/[^\/]+).*/,"$1"))};this[a]=function(k,j,i){if(e){h(e);e=null}if(!k){return false}e=b(function(l){switch(Object.prototype.toString.call(j)){case"[object String]":if(j!==l.origin){return false}break;case"[object Function]":if(j(l.origin)){return false}break}k(l)})}}else{this[g]=function(i,k,j){if(!k){return}j.location=k.replace(/#.*$/,"")+"#"+(+new Date)+(c++)+"&"+i};this[a]=function(k,j,i){if(d){clearInterval(d);d=null}if(k){i=typeof j==="number"?j:typeof i==="number"?i:100;d=setInterval(function(){var m=document.location.hash,l=/^#?\d+&/;if(m!==f&&l.test(m)){f=m;k({data:m.replace(l,"")})}},i)}}}return this}; \ No newline at end of file diff --git a/assets/js/postmessage.js b/assets/js/postmessage.js index 9ec5d12ce..609cbeed6 100755 --- a/assets/js/postmessage.js +++ b/assets/js/postmessage.js @@ -1,135 +1 @@ -(function ($, undef) { - var global = this; - - // Namespace. - global.FS = global.FS || {}; - - global.FS.PostMessage = function () - { - var - _is_child = false, - _postman = new NoJQueryPostMessageMixin('postMessage', 'receiveMessage'), - _callbacks = {}, - _base_url, - _parent_url = decodeURIComponent(document.location.hash.replace(/^#/, '')), - _parent_subdomain = _parent_url.substring(0, _parent_url.indexOf('/', ('https://' === _parent_url.substring(0, ('https://').length)) ? 8 : 7)), - _init = function () { - _postman.receiveMessage(function (e) { - var data = JSON.parse(e.data); - - if (_callbacks[data.type]) { - for (var i = 0; i < _callbacks[data.type].length; i++) { - // Execute type callbacks. - _callbacks[data.type][i](data.data); - } - } - }, _base_url); - }, - _hasParent = ('' !== _parent_url), - $window = $(window), - $html = $('html'); - - return { - init : function (url, iframes) - { - _base_url = url; - _init(); - - // Automatically receive forward messages. - FS.PostMessage.receiveOnce('forward', function (data){ - window.location = data.url; - }); - - iframes = iframes || []; - - if (iframes.length > 0) { - $window.on('scroll', function () { - for (var i = 0; i < iframes.length; i++) { - FS.PostMessage.postScroll(iframes[i]); - } - }); - } - }, - init_child : function () - { - this.init(_parent_subdomain); - - _is_child = true; - - // Post height of a child right after window is loaded. - $(window).bind('load', function () { - FS.PostMessage.postHeight(); - - // Post message that window was loaded. - FS.PostMessage.post('loaded'); - }); - }, - hasParent : function () - { - return _hasParent; - }, - postHeight : function (diff, wrapper) { - diff = diff || 0; - wrapper = wrapper || '#wrap_section'; - this.post('height', { - height: diff + $(wrapper).outerHeight(true) - }); - }, - postScroll : function (iframe) { - this.post('scroll', { - top: $window.scrollTop(), - height: ($window.height() - parseFloat($html.css('paddingTop')) - parseFloat($html.css('marginTop'))) - }, iframe); - }, - post : function (type, data, iframe) - { - console.debug('PostMessage.post', type); - - if (iframe) - { - // Post to iframe. - _postman.postMessage(JSON.stringify({ - type: type, - data: data - }), iframe.src, iframe.contentWindow); - } - else { - // Post to parent. - _postman.postMessage(JSON.stringify({ - type: type, - data: data - }), _parent_url, window.parent); - } - }, - receive: function (type, callback) - { - console.debug('PostMessage.receive', type); - - if (undef === _callbacks[type]) - _callbacks[type] = []; - - _callbacks[type].push(callback); - }, - receiveOnce: function (type, callback) - { - if (this.is_set(type)) - return; - - this.receive(type, callback); - }, - // Check if any callbacks assigned to a specified message type. - is_set: function (type) - { - return (undef != _callbacks[type]); - }, - parent_url: function () - { - return _parent_url; - }, - parent_subdomain: function () - { - return _parent_subdomain; - } - }; - }(); -})(jQuery); \ No newline at end of file +!function(e,t){var s,n,o,i,r,a,c,p,u=this;u.FS=u.FS||{},u.FS.PostMessage=(n=new NoJQueryPostMessageMixin("postMessage","receiveMessage"),o={},i=decodeURIComponent(document.location.hash.replace(/^#/,"")),r=i.substring(0,i.indexOf("/","https://"===i.substring(0,8)?8:7)),a=""!==i,c=e(window),p=e("html"),{init:function(e,t){s=e,n.receiveMessage((function(e){var t=JSON.parse(e.data);if(o[t.type])for(var s=0;s0&&c.on("scroll",(function(){for(var e=0;e 0) { + $window.on('scroll', function () { + for (var i = 0; i < iframes.length; i++) { + FS.PostMessage.postScroll(iframes[i]); + } + }); + } + }, + init_child : function () + { + this.init(_parent_subdomain); + + _is_child = true; + + // Post height of a child right after window is loaded. + $(window).bind('load', function () { + FS.PostMessage.postHeight(); + + // Post message that window was loaded. + FS.PostMessage.post('loaded'); + }); + }, + hasParent : function () + { + return _hasParent; + }, + postHeight : function (diff, wrapper) { + diff = diff || 0; + wrapper = wrapper || '#wrap_section'; + this.post('height', { + height: diff + $(wrapper).outerHeight(true) + }); + }, + postScroll : function (iframe) { + this.post('scroll', { + top: $window.scrollTop(), + height: ($window.height() - parseFloat($html.css('paddingTop')) - parseFloat($html.css('marginTop'))) + }, iframe); + }, + post : function (type, data, iframe) + { + console.debug('PostMessage.post', type); + + if (iframe) + { + // Post to iframe. + _postman.postMessage(JSON.stringify({ + type: type, + data: data + }), iframe.src, iframe.contentWindow); + } + else { + // Post to parent. + _postman.postMessage(JSON.stringify({ + type: type, + data: data + }), _parent_url, window.parent); + } + }, + receive: function (type, callback) + { + console.debug('PostMessage.receive', type); + + if (undef === _callbacks[type]) + _callbacks[type] = []; + + _callbacks[type].push(callback); + }, + receiveOnce: function (type, callback) + { + if (this.is_set(type)) + return; + + this.receive(type, callback); + }, + // Check if any callbacks assigned to a specified message type. + is_set: function (type) + { + return (undef != _callbacks[type]); + }, + parent_url: function () + { + return _parent_url; + }, + parent_subdomain: function () + { + return _parent_subdomain; + } + }; + }(); +})(jQuery); \ No newline at end of file diff --git a/assets/scss/admin/_switch.scss b/assets/scss/admin/_switch.scss index f08487b6d..f21757d57 100644 --- a/assets/scss/admin/_switch.scss +++ b/assets/scss/admin/_switch.scss @@ -1,3 +1,5 @@ +@use "sass:math"; + $switch-size: 24px; $switch-small-size: 0.75 * $switch-size; $switch-on-color: $wp-button-primary-background-color; @@ -32,11 +34,10 @@ $switch-on-color: $wp-button-primary-background-color; top: 1px; width: 37px; height: $switch-size + 1px; - border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.3); border-radius: 4px; - background: #fff; - @include linear-gradient(#ececec, #fff); + background-color: #fff; + background-image: linear-gradient(to bottom, #ececec, #fff); box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5); z-index: 999; @include transition(0.40s cubic-bezier(0.54, 1.6, 0.5, 1)); @@ -54,7 +55,7 @@ $switch-on-color: $wp-button-primary-background-color; /* Round switch */ &.fs-round { - top: $switch-size / 3; + top: math.div($switch-size, 3); padding: 4px ($switch-size + 1px); @include border-radius($switch-size); diff --git a/assets/scss/admin/connect.scss b/assets/scss/admin/connect.scss index 441996cdb..8fe13588e 100755 --- a/assets/scss/admin/connect.scss +++ b/assets/scss/admin/connect.scss @@ -1,4 +1,5 @@ @use "tooltip"; +@use "sass:math"; @import "../start"; @@ -250,11 +251,11 @@ $box_border_radius: 3px; $icon_size: 50px; $plugin_icon_size: 80px; - $wp_logo_padding: $icon_size / 10; + $wp_logo_padding: math.div($icon_size, 10); $icons_top: 10px; $icons_border_radius: 50%; $header_height: 40px; - $icon_position: (($form_width - $plugin_icon_size) / 2 - $icon_size); + $icon_position: (math.div(($form_width - $plugin_icon_size), 2) - $icon_size); .fs-header { @@ -269,7 +270,7 @@ $box_border_radius: 3px; .fs-connect-logo { position: absolute; - top: - (($icon_size - $header_height) / 2 + $icon_padding); + top: - (math.div(($icon_size - $header_height), 2) + $icon_padding); border-radius: $icons_border_radius; } @@ -297,9 +298,9 @@ $box_border_radius: 3px; position: absolute; overflow: hidden; //top: $icons_top - ($plugin_icon_size - $icon_size) / 2 - $icon_padding - $icon_border_width; - top: - (($plugin_icon_size - $header_height) / 2 + $icon_padding); + top: - (math.div(($plugin_icon_size - $header_height), 2) + $icon_padding); left: 50%; - margin-left: - ($plugin_icon_size / 2 + $icon_padding + $icon_border_width); + margin-left: - (math.div($plugin_icon_size, 2) + $icon_padding + $icon_border_width); border-radius: $icons_border_radius; z-index: 1; diff --git a/gulpfile.js b/gulpfile.js index 8d3826b9c..ef55b0ad1 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,4 +1,36 @@ require('dotenv').config(); +const {parallel, watch} = require('gulp'); +const livereload = require('gulp-livereload'); const {createTranslation} = require('./gulptasks/translate'); +const {getSdkScssCompiler, scssSources} = require('./gulptasks/sass'); +const {getSdkJSCompilers, jsSources} = require('./gulptasks/scripts'); +const DEFAULT_GULP_WATCH_OPTIONS = {ignoreInitial: false, usePolling: true}; + +/** + * Tasks related to translations of the SDK. + * This will + * 1. Create `languages/freemius.pot` file. + * 2. Upload it to Transifex. + * 3. Download latest translations from Transifex. + * 4. Build `languages/freemius-xx_XX.po` and `languages/freemius-xx_XX.mo` files. + */ exports.translate = createTranslation; + +/** + * The build task. This will build + * 1. SASS files. + * 2. JS files. + */ +exports.build = parallel( + getSdkScssCompiler(true), + ...getSdkJSCompilers(true) +); + +exports.dev = function () { + livereload.listen(); + + watch(scssSources, DEFAULT_GULP_WATCH_OPTIONS, getSdkScssCompiler(false)); + + watch(Object.values(jsSources), DEFAULT_GULP_WATCH_OPTIONS, parallel(...getSdkJSCompilers(false))); +} \ No newline at end of file diff --git a/gulptasks/compilers.js b/gulptasks/compilers.js new file mode 100644 index 000000000..bac781e94 --- /dev/null +++ b/gulptasks/compilers.js @@ -0,0 +1,134 @@ +const {src, dest} = require('gulp'); +const {createGulpEsbuild} = require('gulp-esbuild'); +const concat = require('gulp-concat'); +const plumber = require('gulp-plumber'); +const terser = require('gulp-terser'); +const sass = require('gulp-sass')(require('sass')); +const postcss = require('gulp-postcss'); +const autoprefixer = require('autoprefixer'); +const cssnano = require('cssnano'); +const sourcemaps = require('gulp-sourcemaps'); +const livereload = require('gulp-livereload'); +const log = require('fancy-log'); +const packageImporter = require('node-sass-package-importer'); + +const getEsBuildOptions = (buildSourceMap = true) => { + const esbuildOptions = { + minify: false, + target: 'es2015', + bundle: false, + }; + + if (buildSourceMap) { + esbuildOptions.sourcemap = 'inline'; + } + + return esbuildOptions; +}; + +const devEsBuild = () => + createGulpEsbuild({ + incremental: true, + pipe : true, + }); + +const prodEsBuild = () => + createGulpEsbuild({ + pipe: true, + }); + +/** + * @param {string[]|string} sourceJsFiles + * @param {string} outputLocation + * @param {string} outputFileName + * @param {boolean} isProd + */ +function getJsCompiler(sourceJsFiles, outputLocation, outputFileName, isProd) { + return function compileJS() { + let task = src(sourceJsFiles) + .pipe(plumber()) + .pipe(sourcemaps.init().on('error', log.error)) + .pipe(concat(outputFileName)) + // Save inline the source map, the terser will remove it in production. + .pipe(sourcemaps.write().on('error', log.error)); + + if (isProd) { + task = task.pipe(prodEsBuild()(getEsBuildOptions(false))); + } else { + task = task.pipe(devEsBuild()(getEsBuildOptions(true))); + } + + if (isProd) { + task = task.pipe(terser({toplevel: false})); + } else { + task = task.pipe(livereload()); + } + + task = task.pipe(dest(outputLocation)); + + return task; + }; +} + + +function getPostCssPlugins(isProd = false) { + // The postcss plugins will read from package.json for the browserslist. + const postCssPlugins = [ + // Add auto-prefixer to remove outdated vendor prefixes. + autoprefixer({remove: true}), + ]; + + if (isProd) { + postCssPlugins.push( + cssnano({ + preset: [ + 'default', + { + discardComments: { + removeAll: true, + }, + }, + ], + }), + ); + } + + return postCssPlugins; +} + +function getSCSSCompiler(sourceScssFiles, outputLocation, isProd = false) { + return function compileCss() { + let task = src(sourceScssFiles) + .pipe(plumber()); + + if (!isProd) { + task = task.pipe(sourcemaps.init()); + } + + task = task.pipe( + sass.sync({ + outputStyle: isProd ? 'compressed' : 'expanded', + importer : packageImporter(), + }) + .on('error', sass.logError), + ) + .pipe(postcss(getPostCssPlugins(isProd))); + + if (!isProd) { + task = task.pipe(sourcemaps.write('./')); + } + + task = task.pipe(dest(outputLocation)); + + if (!isProd) { + task = task.pipe(livereload()); + } + + return task; + }; +} + +module.exports = { + getJsCompiler, + getSCSSCompiler, +}; diff --git a/gulptasks/sass.js b/gulptasks/sass.js new file mode 100644 index 000000000..89fb9d4d4 --- /dev/null +++ b/gulptasks/sass.js @@ -0,0 +1,12 @@ +const {getSCSSCompiler} = require('./compilers'); + +const scssSourceDir = 'assets/scss'; + +const scssSources = [ + `${scssSourceDir}/**/*.scss`, +]; + +const cssOutPut = 'assets/css'; + +exports.getSdkScssCompiler = (isProd) => getSCSSCompiler(scssSources, cssOutPut, isProd); +exports.scssSources = scssSources; \ No newline at end of file diff --git a/gulptasks/scripts.js b/gulptasks/scripts.js new file mode 100644 index 000000000..6f5fa9b27 --- /dev/null +++ b/gulptasks/scripts.js @@ -0,0 +1,22 @@ +const {getJsCompiler} = require('./compilers'); +const jsSourceDir = 'assets/scripts'; + +const jsOutput = 'assets/js'; + +const jsSources = { + ['nojquery.ba-postmessage']: `${jsSourceDir}/nojquery.ba-postmessage.js`, + ['postmessage'] : `${jsSourceDir}/postmessage.js`, +}; + +exports.getSdkJSCompilers = (isProd) => { + return Object.entries(jsSources).map(([fileName, source]) => { + return getJsCompiler( + source, + jsOutput, + `${fileName}.js`, + isProd, + ); + }); +}; + +exports.jsSources = jsSources; \ No newline at end of file diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 020c97946..801ab1b48 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -7334,7 +7334,7 @@ function _enqueue_connect_essentials() { wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'json2' ); - fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' ); + fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.js' ); fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' ); } diff --git a/package-lock.json b/package-lock.json index 6028ffcdc..df6cdb971 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,1178 +7,1372 @@ "": { "name": "freemius-wordpress-sdk", "version": "0.0.0", + "hasInstallScript": true, "license": "GPL-3.0", "devDependencies": { "@transifex/api": "^7.0.1", + "autoprefixer": "^10.4.17", + "cssnano": "^6.0.3", "dotenv": "^16.4.1", "fancy-log": "^2.0.0", "gettext-parser": "^7.0.1", "gulp": "^4.0.2", + "gulp-concat": "^2.6.1", + "gulp-esbuild": "^0.12.0", + "gulp-livereload": "^4.0.2", + "gulp-plumber": "^1.2.1", + "gulp-postcss": "^9.1.0", + "gulp-sass": "^5.1.0", "gulp-sort": "^2.0.0", + "gulp-sourcemaps": "^3.0.0", + "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", "node-fetch": "^3.3.2", - "patch-package": "^8.0.0" + "node-sass-package-importer": "^5.3.3", + "patch-package": "^8.0.0", + "postcss": "^8.4.33", + "sass": "^1.70.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@transifex/api": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", - "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "node_modules/@esbuild/android-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "core-js": "^3.35.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=16.0.0" + "node": ">=12" } }, - "node_modules/@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", - "dev": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/@esbuild/android-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "event-target-shim": "^5.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=6.5" + "node": ">=12" } }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "node_modules/@esbuild/android-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "cpu": [ + "x64" + ], "dev": true, - "bin": { - "acorn": "bin/acorn" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.4.0" + "node": ">=12" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "cpu": [ + "arm64" + ], "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "ansi-wrap": "^0.1.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@esbuild/linux-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=12" } }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "cpu": [ + "loong64" + ], "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "buffer-equal": "^1.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", - "dev": true - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "cpu": [ + "ppc64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "make-iterator": "^1.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "cpu": [ + "s390x" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "node_modules/@esbuild/linux-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "make-iterator": "^1.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" - }, + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-initial/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-last": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "is-number": "^4.0.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-last/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "node_modules/@esbuild/win32-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "node_modules/@gulp-sourcemaps/identity-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-2.0.1.tgz", + "integrity": "sha512-Tb+nSISZku+eQ4X1lAkevcQa+jknn/OVUgZ3XCxEKIsLsqYuPoJwJOPQeaOk75X3WPftb29GWY1eqE7GLsXb1Q==", "dev": true, + "dependencies": { + "acorn": "^6.4.1", + "normalize-path": "^3.0.0", + "postcss": "^7.0.16", + "source-map": "^0.6.0", + "through2": "^3.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, - "node_modules/array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "node_modules/@gulp-sourcemaps/identity-map/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", "dev": true, - "dependencies": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.4.0" } }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "node_modules/@gulp-sourcemaps/identity-map/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/@gulp-sourcemaps/identity-map/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "node_modules/@gulp-sourcemaps/identity-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "node_modules/@gulp-sourcemaps/identity-map/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/@gulp-sourcemaps/map-sources": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz", + "integrity": "sha512-o/EatdaGt8+x2qpb0vFLC/2Gug/xYPRXb6a+ET1wGYKozKN3krDWC/zZFZAtrzxJHuDL12mwdfEFKcKMNvc55A==", + "dev": true, + "dependencies": { + "normalize-path": "^2.0.1", + "through2": "^2.0.3" }, "engines": { "node": ">= 0.10" } }, - "node_modules/async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "node_modules/@gulp-sourcemaps/map-sources/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dev": true, "dependencies": { - "async-done": "^1.2.2" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { - "node": ">= 0.10" + "node": ">=6.0.0" } }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=6.0.0" } }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true, - "bin": { - "atob": "bin/atob.js" - }, "engines": { - "node": ">= 4.5.0" + "node": ">=6.0.0" } }, - "node_modules/bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, "dependencies": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@transifex/api": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", + "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "dev": true, + "dependencies": { + "core-js": "^3.35.0" }, "engines": { - "node": ">= 0.10" + "node": ">=16.0.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", "dev": true }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.5" } }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.4.0" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } }, - "node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", "dev": true, + "dependencies": { + "ansi-wrap": "^0.1.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "node_modules/ansi-cyan": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", + "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", "dev": true, - "optional": true, "dependencies": { - "file-uri-to-path": "1.0.0" + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "dev": true, "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" + "ansi-wrap": "0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", "dev": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "remove-trailing-separator": "^1.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", "dev": true, "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "buffer-equal": "^1.0.0" }, - "optionalDependencies": { - "fsevents": "^1.2.7" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", "dev": true, "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "make-iterator": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", "dev": true, "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "make-iterator": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", "dev": true, "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", "dev": true, "dependencies": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" + "is-number": "^4.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "dev": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", "dev": true, - "bin": { - "color-support": "bin.js" + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/component-emitter": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", - "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, "engines": { - "node": ">= 0.6" + "node": ">= 0.10" } }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] }, - "node_modules/copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", "dev": true, "dependencies": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" } }, - "node_modules/core-js": { - "version": "3.35.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", - "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "bin": { + "atob": "bin/atob.js" }, "engines": { - "node": ">= 8" + "node": ">= 4.5.0" } }, - "node_modules/cross-spawn/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "isexe": "^2.0.0" + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" }, "bin": { - "node-which": "bin/node-which" + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">= 8" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", "dev": true, "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, "engines": { - "node": ">= 12" + "node": ">=0.10.0" } }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "dev": true, "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, + "is-descriptor": "^1.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true, "engines": { - "node": ">=0.10" + "node": ">=0.10.0" } }, - "node_modules/default-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", - "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, + "optional": true, "dependencies": { - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" + "file-uri-to-path": "1.0.0" } }, - "node_modules/default-resolution": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "node_modules/body": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", "dev": true, - "engines": { - "node": ">= 0.10" + "dependencies": { + "continuable-cache": "^0.3.1", + "error": "^7.0.0", + "raw-body": "~1.1.0", + "safe-json-parse": "~1.0.1" } }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "node_modules/browserslist": { + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=0.10.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/dotenv": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", - "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=0.4" }, "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, - "node_modules/each-props": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", - "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.1", - "object.defaults": "^1.1.0" - } + "node_modules/bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==", + "dev": true }, - "node_modules/each-props/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", "dev": true, "dependencies": { - "iconv-lite": "^0.6.2" + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", "dev": true, "dependencies": { - "once": "^1.4.0" + "no-case": "^2.2.0", + "upper-case": "^1.1.1" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "dependencies": { - "is-arrayish": "^0.2.1" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "node_modules/caniuse-lite": { + "version": "1.0.30001581", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz", + "integrity": "sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==", "dev": true, - "hasInstallScript": true, - "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" - }, - "engines": { - "node": ">=0.10" - } + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node_modules/change-case": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", + "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" } }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { - "node": ">=0.8.x" + "node": ">=8" } }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, "dependencies": { - "debug": "^2.3.3", + "arr-union": "^3.1.0", "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "isobject": "^3.0.0", + "static-extend": "^0.1.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/define-property": { + "node_modules/class-utils/node_modules/define-property": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", @@ -1190,7 +1384,7 @@ "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/is-descriptor": { + "node_modules/class-utils/node_modules/is-descriptor": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", @@ -1203,1563 +1397,3962 @@ "node": ">= 0.4" } }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", "dev": true, "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" } }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", "dev": true, - "dependencies": { - "type": "^2.7.2" + "engines": { + "node": ">=0.8" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", "dev": true }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" - }, + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", "dev": true, "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/extglob/node_modules/define-property": { + "node_modules/collection-visit": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, "dependencies": { - "is-descriptor": "^1.0.0" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/fancy-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", - "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "color-support": "^1.1.3" + "color-name": "~1.1.4" }, "engines": { - "node": ">=10.13.0" + "node": ">=7.0.0" } }, - "node_modules/fast-levenshtein": { + "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, "engines": { - "node": "^12.20 || >= 14.13" + "node": ">= 10" } }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", "dev": true, - "optional": true + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, + "engines": [ + "node >= 0.8" + ], "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", "dev": true, "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, + "source-map": "^0.6.1" + } + }, + "node_modules/concat-with-sourcemaps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/find-yarn-workspace-root": { + "node_modules/constant-case": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", - "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", + "integrity": "sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==", "dev": true, "dependencies": { - "micromatch": "^4.0.2" + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" } }, - "node_modules/find-yarn-workspace-root/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/find-yarn-workspace-root/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/find-yarn-workspace-root/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", "dev": true, - "engines": { - "node": ">=0.12.0" + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" } }, - "node_modules/find-yarn-workspace-root/node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8.6" + "node": ">= 8" } }, - "node_modules/find-yarn-workspace-root/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { - "is-number": "^7.0.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=8.0" + "node": ">= 8" } }, - "node_modules/findup-sync": { + "node_modules/css": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", "dev": true, "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "node_modules/css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "dev": true, "engines": { - "node": ">= 0.10" + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/fined": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", - "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "node_modules/css-node-extract": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-node-extract/-/css-node-extract-2.1.3.tgz", + "integrity": "sha512-E7CzbC0I4uAs2dI8mPCVe+K37xuja5kjIugOotpwICFL7vzhmFMAPHvS/MF9gFrmv8DDUANsxrgyT/I3OLukcw==", "dev": true, "dependencies": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^2.0.3", - "object.defaults": "^1.1.0", - "object.pick": "^1.2.0", - "parse-filepath": "^1.0.1" + "change-case": "^3.0.1", + "postcss": "^6.0.14" + } + }, + "node_modules/css-node-extract/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" }, "engines": { - "node": ">= 0.10" + "node": ">=4" } }, - "node_modules/fined/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/css-node-extract/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/flagged-respawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "node_modules/css-node-extract/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/css-node-extract/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/css-node-extract/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=4" } }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "node_modules/css-node-extract/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "node_modules/css-node-extract/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "node_modules/css-node-extract/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "for-in": "^1.0.1" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "dependencies": { - "fetch-blob": "^3.1.2" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" }, - "engines": { - "node": ">=12.20.0" + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "node_modules/css-selector-extract": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/css-selector-extract/-/css-selector-extract-3.3.6.tgz", + "integrity": "sha512-bBI8ZJKKyR9iHvxXb4t3E6WTMkis94eINopVg7y2FmmMjLXUVduD7mPEcADi4i9FX4wOypFMFpySX+0keuefxg==", "dev": true, "dependencies": { - "map-cache": "^0.2.2" + "postcss": "^6.0.14" + } + }, + "node_modules/css-selector-extract/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/css-selector-extract/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "node_modules/css-selector-extract/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" + "color-name": "1.1.3" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "node_modules/css-selector-extract/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "node_modules/css-selector-extract/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-selector-extract/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" }, "engines": { - "node": ">= 4.0" + "node": ">=4.0.0" } }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node_modules/css-selector-extract/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true + "node_modules/css-selector-extract/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, "dependencies": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "node_modules/css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/gettext-parser": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", - "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "node_modules/css/node_modules/source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, "dependencies": { - "content-type": "^1.0.5", - "encoding": "^0.1.13", - "readable-stream": "^4.3.0", - "safe-buffer": "^5.2.1" + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" } }, - "node_modules/gettext-parser/node_modules/readable-stream": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", - "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", + "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", "dev": true, "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" + "cssnano-preset-default": "^6.0.3", + "lilconfig": "^3.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/gettext-parser/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "node_modules/cssnano-preset-default": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", + "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^7.1.1", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.2", + "postcss-convert-values": "^6.0.2", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.2", + "postcss-merge-rules": "^6.0.3", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.2", + "postcss-minify-selectors": "^6.0.2", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.2", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.2", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.2", + "postcss-unique-selectors": "^6.0.2" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } }, - "node_modules/gettext-parser/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "dependencies": { - "safe-buffer": "~5.2.0" + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", "dev": true, "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "es5-ext": "^0.10.50", + "type": "^1.0.1" } }, - "node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 12" } }, - "node_modules/glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, - "engines": { - "node": ">= 0.10" + "ms": "2.0.0" } }, - "node_modules/glob-watcher": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", - "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "node_modules/debug-fabulous": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/debug-fabulous/-/debug-fabulous-1.1.0.tgz", + "integrity": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==", "dev": true, "dependencies": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "normalize-path": "^3.0.0", - "object.defaults": "^1.1.0" - }, + "debug": "3.X", + "memoizee": "0.4.X", + "object-assign": "4.X" + } + }, + "node_modules/debug-fabulous/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/debug-fabulous/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/global-modules": { + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/default-compare": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", "dev": true, "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" + "kind-of": "^5.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, + "node_modules/default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", + "integrity": "sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/dotenv": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", + "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.651", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.651.tgz", + "integrity": "sha512-jjks7Xx+4I7dslwsbaFocSwqBbGHQmuXBJUK9QBZTIrzPq3pzn6Uf2szFSP728FtLYE3ldiccmlkOM/zhGKCpA==", + "dev": true + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", + "dev": true, + "dependencies": { + "string-template": "~0.2.1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/esbuild": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "dev": true, + "dependencies": { + "color-support": "^1.1.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + }, + "node_modules/faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gettext-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", + "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "dev": true, + "dependencies": { + "content-type": "^1.0.5", + "encoding": "^0.1.13", + "readable-stream": "^4.3.0", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/gettext-parser/node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/gettext-parser/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/gettext-parser/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "dependencies": { + "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "dependencies": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha512-a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg==", + "dev": true, + "dependencies": { + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-concat/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-concat/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-esbuild": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gulp-esbuild/-/gulp-esbuild-0.12.0.tgz", + "integrity": "sha512-6el2YFJK+Wiip18G4iMl1rNuetSxpEZTLT1e6GuAsi3Q/yaeoNUgTX7nlwpbFkymGXMI4NFXisg5++PMe+fNNA==", + "dev": true, + "dependencies": { + "esbuild": "^0.19.6", + "plugin-error": "^2.0.1", + "vinyl": "^3.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/gulp-esbuild/node_modules/plugin-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-2.0.1.tgz", + "integrity": "sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gulp-livereload": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp-livereload/-/gulp-livereload-4.0.2.tgz", + "integrity": "sha512-InmaR50Xl1xB1WdEk4mrUgGHv3VhhlRLrx7u60iY5AAer90FlK95KXitPcGGQoi28zrUJM189d/h6+V470Ncgg==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "debug": "^3.1.0", + "fancy-log": "^1.3.2", + "lodash.assign": "^4.2.0", + "readable-stream": "^3.0.6", + "tiny-lr": "^1.1.1", + "vinyl": "^2.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gulp-livereload/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gulp-livereload/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gulp-livereload/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/gulp-livereload/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/gulp-livereload/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/gulp-livereload/node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-livereload/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/gulp-livereload/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/gulp-livereload/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gulp-livereload/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-livereload/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gulp-livereload/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-plumber": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz", + "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "fancy-log": "^1.3.2", + "plugin-error": "^0.1.2", + "through2": "^2.0.3" + }, + "engines": { + "node": ">=0.10", + "npm": ">=1.2.10" + } + }, + "node_modules/gulp-plumber/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/arr-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/arr-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", + "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/extend-shallow": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", + "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", + "dev": true, + "dependencies": { + "kind-of": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-plumber/node_modules/kind-of": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", + "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/plugin-error": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", + "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", + "dev": true, + "dependencies": { + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-plumber/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/gulp-postcss": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/gulp-postcss/-/gulp-postcss-9.1.0.tgz", + "integrity": "sha512-a843mcKPApfeI987uqQbc8l50xXeWIXBsiVvYxtCI5XtVAMzTi/HnU2qzQpGwkB/PAOfsLV8OsqDv2iJZ9qvdw==", + "dev": true, + "dependencies": { + "fancy-log": "^2.0.0", + "plugin-error": "^2.0.1", + "postcss-load-config": "^5.0.0", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/gulp-postcss/node_modules/plugin-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-2.0.1.tgz", + "integrity": "sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gulp-sass": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-5.1.0.tgz", + "integrity": "sha512-7VT0uaF+VZCmkNBglfe1b34bxn/AfcssquLKVDYnCDJ3xNBaW7cUuI3p3BQmoKcoKFrs9jdzUxyb+u+NGfL4OQ==", + "dev": true, + "dependencies": { + "lodash.clonedeep": "^4.5.0", + "picocolors": "^1.0.0", + "plugin-error": "^1.0.1", + "replace-ext": "^2.0.0", + "strip-ansi": "^6.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/gulp-sass/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/gulp-sass/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gulp-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", + "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "dev": true, + "dependencies": { + "through2": "^2.0.1" + } + }, + "node_modules/gulp-sourcemaps": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-3.0.0.tgz", + "integrity": "sha512-RqvUckJkuYqy4VaIH60RMal4ZtG0IbQ6PXMNkNsshEGJ9cldUPRb/YCgboYae+CLAs1HQNb4ADTKCx65HInquQ==", + "dev": true, + "dependencies": { + "@gulp-sourcemaps/identity-map": "^2.0.1", + "@gulp-sourcemaps/map-sources": "^1.0.0", + "acorn": "^6.4.1", + "convert-source-map": "^1.0.0", + "css": "^3.0.0", + "debug-fabulous": "^1.0.0", + "detect-newline": "^2.0.0", + "graceful-fs": "^4.0.0", + "source-map": "^0.6.0", + "strip-bom-string": "^1.0.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gulp-sourcemaps/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/gulp-sourcemaps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-terser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/gulp-terser/-/gulp-terser-2.1.0.tgz", + "integrity": "sha512-lQ3+JUdHDVISAlUIUSZ/G9Dz/rBQHxOiYDQ70IVWFQeh4b33TC1MCIU+K18w07PS3rq/CVc34aQO4SUbdaNMPQ==", + "dev": true, + "dependencies": { + "plugin-error": "^1.0.1", + "terser": "^5.9.0", + "through2": "^4.0.2", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gulp-terser/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gulp-terser/node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/gulp-wp-pot": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", + "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "dev": true, + "dependencies": { + "plugin-error": "^1.0.1", + "vinyl": "^2.2.1", + "wp-pot": "^1.9.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gulp-wp-pot/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-wp-pot/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "dependencies": { + "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.3" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/immutable": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", + "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", + "dev": true, + "dependencies": { + "upper-case": "^1.1.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "node_modules/klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", "dev": true, "dependencies": { - "sparkles": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" + "graceful-fs": "^4.1.11" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3" + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.10" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/gulp": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", - "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "dev": true, "dependencies": { - "glob-watcher": "^5.0.3", - "gulp-cli": "^2.2.0", - "undertaker": "^1.2.1", - "vinyl-fs": "^3.0.0" - }, - "bin": { - "gulp": "bin/gulp.js" + "readable-stream": "^2.0.5" }, "engines": { - "node": ">= 0.10" + "node": ">= 0.6.3" } }, - "node_modules/gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", "dev": true, "dependencies": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - }, - "bin": { - "gulp": "bin/gulp.js" + "invert-kv": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/gulp-cli/node_modules/fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", "dev": true, "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" + "flush-write-stream": "^1.0.2" }, "engines": { "node": ">= 0.10" } }, - "node_modules/gulp-sort": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", - "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "node_modules/liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", "dev": true, "dependencies": { - "through2": "^2.0.1" + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/gulp-wp-pot": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", - "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "plugin-error": "^1.0.1", - "vinyl": "^2.2.1", - "wp-pot": "^1.9.6" + "isobject": "^3.0.1" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/gulp-wp-pot/node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", "dev": true, "engines": { - "node": ">=0.8" + "node": ">=14" } }, - "node_modules/gulp-wp-pot/node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "node_modules/livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", "dev": true }, - "node_modules/gulp-wp-pot/node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/gulp-wp-pot/node_modules/vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", "dev": true, "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" + "is-utf8": "^0.2.0" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "node_modules/lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", + "dev": true + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", "dev": true, "dependencies": { - "glogg": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" + "lower-case": "^1.1.2" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "node_modules/lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "es5-ext": "~0.10.2" } }, - "node_modules/has-proto": { + "node_modules/make-iterator": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "kind-of": "^6.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "object-visit": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/hasown": { + "node_modules/matchdep": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", "dev": true, "dependencies": { - "function-bind": "^1.1.2" + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" }, "engines": { - "node": ">= 0.4" + "node": ">= 0.10.0" } }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", "dev": true, "dependencies": { - "parse-passwd": "^1.0.0" + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "is-extglob": "^2.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/matched": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", + "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "glob": "^7.1.6", + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "dev": true }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "node_modules/memoizee": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", + "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" } }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", - "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-binary-path": { + "node_modules/micromatch/node_modules/is-extendable": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "binary-extensions": "^1.0.0" + "is-plain-object": "^2.0.4" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", - "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "node_modules/micromatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "isobject": "^3.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "bin": { - "is-docker": "cli.js" + "dependencies": { + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "number-is-nan": "^1.0.0" + "is-plain-object": "^2.0.4" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/mixin-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "is-unc-path": "^1.0.0" + "is-plain-object": "^2.0.4" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "node_modules/nanomatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "unc-path-regex": "^0.1.2" + "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true - }, - "node_modules/is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" + "lower-case": "^1.1.1" } }, - "node_modules/isarray": { + "node_modules/node-domexception": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], "engines": { - "node": ">=0.10.0" + "node": ">=10.5.0" } }, - "node_modules/json-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", - "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "isarray": "^2.0.5", - "jsonify": "^0.0.1", - "object-keys": "^1.1.1" + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stable-stringify/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/node-sass-magic-importer": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-sass-magic-importer/-/node-sass-magic-importer-5.3.3.tgz", + "integrity": "sha512-xB4yH7laj00SBIZO9Hwke3XDSqMcz+6IM7TgcxU9Ri6m6Pn8MBWwgG5HLmgZkQX3W2osUhx+k7WSOzzunuTKVw==", "dev": true, "dependencies": { - "universalify": "^2.0.0" + "css-node-extract": "^2.1.3", + "css-selector-extract": "^3.3.6", + "findup-sync": "^4.0.0", + "glob": "^7.1.6", + "object-hash": "^2.0.3", + "postcss-scss": "^3.0.2", + "resolve": "^1.17.0" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/just-debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", - "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true - }, - "node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=6.11.1", + "npm": ">=3.0.0" } }, - "node_modules/klaw-sync": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", - "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "node_modules/node-sass-magic-importer/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.11" + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "node_modules/node-sass-magic-importer/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">=8" } }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "node_modules/node-sass-magic-importer/node_modules/findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", "dev": true, "dependencies": { - "readable-stream": "^2.0.5" + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" }, "engines": { - "node": ">= 0.6.3" + "node": ">= 8" } }, - "node_modules/lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "node_modules/node-sass-magic-importer/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "dependencies": { - "invert-kv": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.12.0" } }, - "node_modules/lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "node_modules/node-sass-magic-importer/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "flush-write-stream": "^1.0.2" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 0.10" + "node": ">=8.6" } }, - "node_modules/liftoff": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", - "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "node_modules/node-sass-magic-importer/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { - "extend": "^3.0.0", - "findup-sync": "^3.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", - "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" + "is-number": "^7.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=8.0" } }, - "node_modules/liftoff/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/node-sass-package-importer": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-sass-package-importer/-/node-sass-package-importer-5.3.3.tgz", + "integrity": "sha512-alXHd4/QzsUH6Aao8Wg5zm1uhz4Ujt9AgRG3LLjPYBlbW8lg7TtMsbCz2G+QgtdSba0A0wmZ3+8FAD+QjP5kHw==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "node-sass-magic-importer": "^5.3.3" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.11.1", + "npm": ">=3.0.0" } }, - "node_modules/load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, - "dependencies": { - "is-utf8": "^0.2.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "once": "^1.3.2" }, "engines": { - "node": ">=10" + "node": ">= 0.10" } }, - "node_modules/make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "dependencies": { - "kind-of": "^6.0.2" + "boolbase": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/make-iterator/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, "dependencies": { - "object-visit": "^1.0.0" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/matchdep": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, "dependencies": { - "findup-sync": "^2.0.0", - "micromatch": "^3.0.4", - "resolve": "^1.4.0", - "stack-trace": "0.0.10" + "is-descriptor": "^0.1.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">=0.10.0" } }, - "node_modules/matchdep/node_modules/findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dev": true, "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">= 0.4" } }, - "node_modules/matchdep/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, "dependencies": { - "is-extglob": "^2.1.0" + "is-buffer": "^1.1.5" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/matched": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", - "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", + "node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, "dependencies": { - "glob": "^7.1.6", - "picomatch": "^2.2.1" + "isobject": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": ">=0.10.0" } }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", "dev": true, "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/micromatch/node_modules/is-extendable": { + "node_modules/object.map": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/micromatch/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, "dependencies": { "isobject": "^3.0.1" @@ -2768,370 +5361,381 @@ "node": ">=0.10.0" } }, - "node_modules/micromatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" }, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "wrappy": "1" } }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { + "node_modules/ordered-read-streams": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" + "readable-stream": "^2.0.1" } }, - "node_modules/mixin-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "lcid": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/mute-stdout": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/nan": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", - "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", "dev": true, - "optional": true + "dependencies": { + "no-case": "^2.2.0" + } }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dev": true, "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8" } }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", "dev": true, "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "error-ex": "^1.2.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/nanomatch/node_modules/is-extendable": { + "node_modules/parse-node-version": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, - "node_modules/nanomatch/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/nanomatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "node_modules/patch-package": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", + "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], + "dependencies": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^9.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "rimraf": "^2.6.3", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.0.33", + "yaml": "^2.2.2" + }, + "bin": { + "patch-package": "index.js" + }, "engines": { - "node": ">=10.5.0" + "node": ">=14", + "npm": ">5" } }, - "node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "node_modules/patch-package/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" + "lru-cache": "^6.0.0" }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "bin": { + "semver": "bin/semver.js" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" + "engines": { + "node": ">=10" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", "dev": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "no-case": "^2.2.0" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true }, - "node_modules/now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "dev": true, "dependencies": { - "once": "^1.3.2" + "pinkie-promise": "^2.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=0.10.0" } }, - "node_modules/number-is-nan": { + "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", "dev": true, "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" + "path-root-regex": "^0.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "node_modules/path-sort": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", + "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", + "dev": true + }, + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "dev": true, "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "engines": { + "node": ">=8.6" }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, "dependencies": { - "isobject": "^3.0.0" + "pinkie": "^2.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "node_modules/plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.10" } }, - "node_modules/object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "node_modules/plugin-error/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "dependencies": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object.map": { + "node_modules/plugin-error/node_modules/is-extendable": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" + "is-plain-object": "^2.0.4" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "node_modules/plugin-error/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { "isobject": "^3.0.1" @@ -3140,364 +5744,520 @@ "node": ">=0.10.0" } }, - "node_modules/object.reduce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", "dev": true, "dependencies": { - "wrappy": "1" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", + "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "node_modules/postcss-convert-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", + "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", "dev": true, "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "node_modules/postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", "dev": true, - "dependencies": { - "readable-stream": "^2.0.1" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "node_modules/postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", "dev": true, - "dependencies": { - "lcid": "^1.0.0" + "engines": { + "node": "^14 || ^16 || >=18.0" }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "node_modules/postcss-load-config": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz", + "integrity": "sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" }, "engines": { - "node": ">=0.8" + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + } } }, - "node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "node_modules/postcss-merge-longhand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", + "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", "dev": true, "dependencies": { - "error-ex": "^1.2.0" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.2" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "node_modules/postcss-merge-rules": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", + "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.15" + }, "engines": { - "node": ">= 0.10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "node_modules/postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "node_modules/postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/patch-package": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", - "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "node_modules/postcss-minify-params": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", + "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", "dev": true, "dependencies": { - "@yarnpkg/lockfile": "^1.1.0", - "chalk": "^4.1.2", - "ci-info": "^3.7.0", - "cross-spawn": "^7.0.3", - "find-yarn-workspace-root": "^2.0.0", - "fs-extra": "^9.0.0", - "json-stable-stringify": "^1.0.2", - "klaw-sync": "^6.0.0", - "minimist": "^1.2.6", - "open": "^7.4.2", - "rimraf": "^2.6.3", - "semver": "^7.5.3", - "slash": "^2.0.0", - "tmp": "^0.0.33", - "yaml": "^2.2.2" - }, - "bin": { - "patch-package": "index.js" + "browserslist": "^4.22.2", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=14", - "npm": ">5" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/patch-package/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/postcss-minify-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz", + "integrity": "sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "postcss-selector-parser": "^6.0.15" }, "engines": { - "node": ">=10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true + "node_modules/postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } }, - "node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "node_modules/postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", "dev": true, "dependencies": { - "pinkie-promise": "^2.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "node_modules/postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", "dev": true, "dependencies": { - "path-root-regex": "^0.1.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-sort": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", - "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", - "dev": true - }, - "node_modules/path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "node_modules/postcss-normalize-unicode": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", + "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/php-parser": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", - "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8.6" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "node_modules/postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", "dev": true, + "dependencies": { + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "node_modules/postcss-reduce-initial": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", + "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", "dev": true, "dependencies": { - "pinkie": "^2.0.0" + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } - }, - "node_modules/plugin-error": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", - "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + }, + "node_modules/postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", "dev": true, "dependencies": { - "ansi-colors": "^1.0.1", - "arr-diff": "^4.0.0", - "arr-union": "^3.1.0", - "extend-shallow": "^3.0.2" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/plugin-error/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "node_modules/postcss-scss": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-3.0.5.tgz", + "integrity": "sha512-3e0qYk87eczfzg5P73ZVuuxEGCBfatRhPze6KrSaIbEKVtmnFI1RYp1Fv+AyZi+w8kcNRSPeNX6ap4b65zEkiA==", "dev": true, "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "postcss": "^8.2.7" }, "engines": { - "node": ">=0.10.0" + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" } }, - "node_modules/plugin-error/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/plugin-error/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/postcss-svgo": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz", + "integrity": "sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "postcss-value-parser": "^4.2.0", + "svgo": "^3.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "node_modules/postcss-unique-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz", + "integrity": "sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==", "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.15" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, "node_modules/pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", @@ -3543,6 +6303,46 @@ "pump": "^2.0.0" } }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, + "node_modules/raw-body": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", + "dev": true, + "dependencies": { + "bytes": "1", + "string_decoder": "0.10" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/raw-body/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + }, "node_modules/read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", @@ -3712,6 +6512,15 @@ "node": ">=0.10" } }, + "node_modules/replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, "node_modules/replace-homedir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", @@ -3817,6 +6626,12 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, + "node_modules/safe-json-parse": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", + "integrity": "sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==", + "dev": true + }, "node_modules/safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", @@ -3832,6 +6647,167 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, + "node_modules/sass": { + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/sass/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/sass/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/sass/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sass/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sass/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/sass/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, "node_modules/semver": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", @@ -3853,6 +6829,16 @@ "node": ">= 0.10" } }, + "node_modules/sentence-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", + "integrity": "sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -3923,6 +6909,20 @@ "node": ">=8" } }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", @@ -3932,6 +6932,15 @@ "node": ">=6" } }, + "node_modules/snake-case": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", + "integrity": "sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -4035,6 +7044,15 @@ "node": ">=0.10.0" } }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", @@ -4049,6 +7067,25 @@ "urix": "^0.1.0" } }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map-url": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", @@ -4205,6 +7242,16 @@ "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", "dev": true }, + "node_modules/streamx": { + "version": "2.15.6", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.6.tgz", + "integrity": "sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==", + "dev": true, + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -4214,6 +7261,12 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/string-template": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==", + "dev": true + }, "node_modules/string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -4240,6 +7293,31 @@ "node": ">=0.10.0" } }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stylehacks": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", + "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", + "dev": true, + "dependencies": { + "browserslist": "^4.22.2", + "postcss-selector-parser": "^6.0.15" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -4258,22 +7336,90 @@ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "dependencies": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/svgo": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz", + "integrity": "sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/svgo" } }, - "node_modules/sver-compat": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "node_modules/swap-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", + "integrity": "sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==", "dev": true, "dependencies": { - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "node_modules/teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "dev": true, + "dependencies": { + "streamx": "^2.12.5" } }, + "node_modules/terser": { + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -4303,6 +7449,55 @@ "node": ">=0.10.0" } }, + "node_modules/timers-ext": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", + "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", + "dev": true, + "dependencies": { + "es5-ext": "~0.10.46", + "next-tick": "1" + } + }, + "node_modules/tiny-lr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", + "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", + "dev": true, + "dependencies": { + "body": "^5.1.0", + "debug": "^3.1.0", + "faye-websocket": "~0.10.0", + "livereload-js": "^2.3.0", + "object-assign": "^4.1.0", + "qs": "^6.4.0" + } + }, + "node_modules/tiny-lr/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/tiny-lr/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/title-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", + "integrity": "sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.0.3" + } + }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -4572,6 +7767,51 @@ "yarn": "*" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/upper-case-first": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz", + "integrity": "sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==", + "dev": true, + "dependencies": { + "upper-case": "^1.1.1" + } + }, "node_modules/urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -4625,6 +7865,22 @@ "node": ">= 0.10" } }, + "node_modules/vinyl": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz", + "integrity": "sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g==", + "dev": true, + "dependencies": { + "clone": "^2.1.2", + "clone-stats": "^1.0.0", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/vinyl-fs": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", @@ -4653,21 +7909,6 @@ "node": ">= 0.10" } }, - "node_modules/vinyl-fs/node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/vinyl-fs/node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, "node_modules/vinyl-fs/node_modules/replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", @@ -4712,21 +7953,6 @@ "node": ">= 0.10" } }, - "node_modules/vinyl-sourcemap/node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/vinyl-sourcemap/node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, "node_modules/vinyl-sourcemap/node_modules/normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", @@ -4765,6 +7991,15 @@ "node": ">= 0.10" } }, + "node_modules/vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", + "dev": true, + "dependencies": { + "source-map": "^0.5.1" + } + }, "node_modules/web-streams-polyfill": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", @@ -4774,6 +8009,29 @@ "node": ">= 8" } }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -4882,31 +8140,315 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + } + }, + "dependencies": { + "@esbuild/aix-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "dev": true, + "optional": true + }, + "@gulp-sourcemaps/identity-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-2.0.1.tgz", + "integrity": "sha512-Tb+nSISZku+eQ4X1lAkevcQa+jknn/OVUgZ3XCxEKIsLsqYuPoJwJOPQeaOk75X3WPftb29GWY1eqE7GLsXb1Q==", + "dev": true, + "requires": { + "acorn": "^6.4.1", + "normalize-path": "^3.0.0", + "postcss": "^7.0.16", + "source-map": "^0.6.0", + "through2": "^3.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + } + } + }, + "@gulp-sourcemaps/map-sources": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz", + "integrity": "sha512-o/EatdaGt8+x2qpb0vFLC/2Gug/xYPRXb6a+ET1wGYKozKN3krDWC/zZFZAtrzxJHuDL12mwdfEFKcKMNvc55A==", + "dev": true, + "requires": { + "normalize-path": "^2.0.1", + "through2": "^2.0.3" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/yargs-parser/node_modules/camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/yargs/node_modules/camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } - } - }, - "dependencies": { + }, "@transifex/api": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", @@ -4916,6 +8458,12 @@ "core-js": "^3.35.0" } }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true + }, "@yarnpkg/lockfile": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", @@ -4952,6 +8500,15 @@ "ansi-wrap": "^0.1.0" } }, + "ansi-cyan": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", + "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, "ansi-gray": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", @@ -4961,6 +8518,15 @@ "ansi-wrap": "0.1.0" } }, + "ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", @@ -5163,6 +8729,20 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true }, + "autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, "bach": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", @@ -5234,6 +8814,24 @@ "file-uri-to-path": "1.0.0" } }, + "body": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", + "dev": true, + "requires": { + "continuable-cache": "^0.3.1", + "error": "^7.0.0", + "raw-body": "~1.1.0", + "safe-json-parse": "~1.0.1" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -5262,6 +8860,18 @@ "to-regex": "^3.0.1" } }, + "browserslist": { + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + } + }, "buffer": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", @@ -5284,6 +8894,12 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==", + "dev": true + }, "cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", @@ -5312,6 +8928,34 @@ "set-function-length": "^1.1.1" } }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001581", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz", + "integrity": "sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==", + "dev": true + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -5322,6 +8966,32 @@ "supports-color": "^7.1.0" } }, + "change-case": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", + "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", + "dev": true, + "requires": { + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" + } + }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", @@ -5392,12 +9062,24 @@ "wrap-ansi": "^2.0.0" } }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, "clone-buffer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", "dev": true }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, "cloneable-readable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", @@ -5457,6 +9139,18 @@ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, + "colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, "component-emitter": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", @@ -5481,65 +9175,405 @@ "typedarray": "^0.0.6" } }, + "concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "constant-case": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", + "integrity": "sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==", + "dev": true, + "requires": { + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" + } + }, "content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true }, + "continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==", + "dev": true + }, "convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "requires": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + } + } + }, + "css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "dev": true + }, + "css-node-extract": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-node-extract/-/css-node-extract-2.1.3.tgz", + "integrity": "sha512-E7CzbC0I4uAs2dI8mPCVe+K37xuja5kjIugOotpwICFL7vzhmFMAPHvS/MF9gFrmv8DDUANsxrgyT/I3OLukcw==", + "dev": true, + "requires": { + "change-case": "^3.0.1", + "postcss": "^6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + } + }, + "css-selector-extract": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/css-selector-extract/-/css-selector-extract-3.3.6.tgz", + "integrity": "sha512-bBI8ZJKKyR9iHvxXb4t3E6WTMkis94eINopVg7y2FmmMjLXUVduD7mPEcADi4i9FX4wOypFMFpySX+0keuefxg==", + "dev": true, + "requires": { + "postcss": "^6.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "requires": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true }, - "copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "cssnano": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", + "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", "dev": true, "requires": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" + "cssnano-preset-default": "^6.0.3", + "lilconfig": "^3.0.0" } }, - "core-js": { - "version": "3.35.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", - "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", - "dev": true - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "cssnano-preset-default": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", + "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "dev": true, + "requires": { + "css-declaration-sorter": "^7.1.1", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.2", + "postcss-convert-values": "^6.0.2", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.2", + "postcss-merge-rules": "^6.0.3", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.2", + "postcss-minify-selectors": "^6.0.2", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.2", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.2", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.2", + "postcss-unique-selectors": "^6.0.2" + } + }, + "cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", "dev": true }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "css-tree": "~2.2.0" }, "dependencies": { - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "requires": { - "isexe": "^2.0.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" } + }, + "mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true } } }, @@ -5568,6 +9602,34 @@ "ms": "2.0.0" } }, + "debug-fabulous": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/debug-fabulous/-/debug-fabulous-1.1.0.tgz", + "integrity": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==", + "dev": true, + "requires": { + "debug": "3.X", + "memoizee": "0.4.X", + "object-assign": "4.X" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", @@ -5633,6 +9695,58 @@ "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", "dev": true }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==", + "dev": true + }, + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0" + } + }, + "domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "requires": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + } + }, + "dot-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", + "integrity": "sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, "dotenv": { "version": "16.4.1", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", @@ -5672,6 +9786,12 @@ } } }, + "electron-to-chromium": { + "version": "1.4.651", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.651.tgz", + "integrity": "sha512-jjks7Xx+4I7dslwsbaFocSwqBbGHQmuXBJUK9QBZTIrzPq3pzn6Uf2szFSP728FtLYE3ldiccmlkOM/zhGKCpA==", + "dev": true + }, "encoding": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", @@ -5690,6 +9810,21 @@ "once": "^1.4.0" } }, + "entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true + }, + "error": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", + "dev": true, + "requires": { + "string-template": "~0.2.1" + } + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -5743,6 +9878,49 @@ "es6-symbol": "^3.1.1" } }, + "esbuild": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, "eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", @@ -5760,6 +9938,16 @@ "eslint-visitor-keys": "^3.4.1" } }, + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, "event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", @@ -5885,12 +10073,27 @@ "color-support": "^1.1.3" } }, + "fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, "fast-levenshtein": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", "dev": true }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, "fetch-blob": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", @@ -6060,6 +10263,12 @@ "fetch-blob": "^3.1.2" } }, + "fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true + }, "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", @@ -6308,32 +10517,288 @@ "vinyl-fs": "^3.0.0" } }, - "gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "dependencies": { + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + } + } + }, + "gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha512-a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg==", + "dev": true, + "requires": { + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "gulp-esbuild": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/gulp-esbuild/-/gulp-esbuild-0.12.0.tgz", + "integrity": "sha512-6el2YFJK+Wiip18G4iMl1rNuetSxpEZTLT1e6GuAsi3Q/yaeoNUgTX7nlwpbFkymGXMI4NFXisg5++PMe+fNNA==", + "dev": true, + "requires": { + "esbuild": "^0.19.6", + "plugin-error": "^2.0.1", + "vinyl": "^3.0.0" + }, + "dependencies": { + "plugin-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-2.0.1.tgz", + "integrity": "sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1" + } + } + } + }, + "gulp-livereload": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp-livereload/-/gulp-livereload-4.0.2.tgz", + "integrity": "sha512-InmaR50Xl1xB1WdEk4mrUgGHv3VhhlRLrx7u60iY5AAer90FlK95KXitPcGGQoi28zrUJM189d/h6+V470Ncgg==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "debug": "^3.1.0", + "fancy-log": "^1.3.2", + "lodash.assign": "^4.2.0", + "readable-stream": "^3.0.6", + "tiny-lr": "^1.1.1", + "vinyl": "^2.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "gulp-plumber": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz", + "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==", "dev": true, "requires": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", + "chalk": "^1.1.3", "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" + "plugin-error": "^0.1.2", + "through2": "^2.0.3" }, "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true + }, + "arr-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" + } + }, + "arr-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", + "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", + "dev": true + }, + "array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "extend-shallow": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", + "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", + "dev": true, + "requires": { + "kind-of": "^1.1.0" + } + }, "fancy-log": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", @@ -6345,6 +10810,85 @@ "parse-node-version": "^1.0.0", "time-stamp": "^1.0.0" } + }, + "kind-of": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", + "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", + "dev": true + }, + "plugin-error": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", + "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", + "dev": true, + "requires": { + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true + } + } + }, + "gulp-postcss": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/gulp-postcss/-/gulp-postcss-9.1.0.tgz", + "integrity": "sha512-a843mcKPApfeI987uqQbc8l50xXeWIXBsiVvYxtCI5XtVAMzTi/HnU2qzQpGwkB/PAOfsLV8OsqDv2iJZ9qvdw==", + "dev": true, + "requires": { + "fancy-log": "^2.0.0", + "plugin-error": "^2.0.1", + "postcss-load-config": "^5.0.0", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "dependencies": { + "plugin-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-2.0.1.tgz", + "integrity": "sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1" + } + } + } + }, + "gulp-sass": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-5.1.0.tgz", + "integrity": "sha512-7VT0uaF+VZCmkNBglfe1b34bxn/AfcssquLKVDYnCDJ3xNBaW7cUuI3p3BQmoKcoKFrs9jdzUxyb+u+NGfL4OQ==", + "dev": true, + "requires": { + "lodash.clonedeep": "^4.5.0", + "picocolors": "^1.0.0", + "plugin-error": "^1.0.1", + "replace-ext": "^2.0.0", + "strip-ansi": "^6.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } } } }, @@ -6357,6 +10901,73 @@ "through2": "^2.0.1" } }, + "gulp-sourcemaps": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-3.0.0.tgz", + "integrity": "sha512-RqvUckJkuYqy4VaIH60RMal4ZtG0IbQ6PXMNkNsshEGJ9cldUPRb/YCgboYae+CLAs1HQNb4ADTKCx65HInquQ==", + "dev": true, + "requires": { + "@gulp-sourcemaps/identity-map": "^2.0.1", + "@gulp-sourcemaps/map-sources": "^1.0.0", + "acorn": "^6.4.1", + "convert-source-map": "^1.0.0", + "css": "^3.0.0", + "debug-fabulous": "^1.0.0", + "detect-newline": "^2.0.0", + "graceful-fs": "^4.0.0", + "source-map": "^0.6.0", + "strip-bom-string": "^1.0.0", + "through2": "^2.0.0" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "gulp-terser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/gulp-terser/-/gulp-terser-2.1.0.tgz", + "integrity": "sha512-lQ3+JUdHDVISAlUIUSZ/G9Dz/rBQHxOiYDQ70IVWFQeh4b33TC1MCIU+K18w07PS3rq/CVc34aQO4SUbdaNMPQ==", + "dev": true, + "requires": { + "plugin-error": "^1.0.1", + "terser": "^5.9.0", + "through2": "^4.0.2", + "vinyl-sourcemaps-apply": "^0.2.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + } + } + }, "gulp-wp-pot": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", @@ -6368,18 +10979,6 @@ "wp-pot": "^1.9.6" }, "dependencies": { - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, "replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", @@ -6411,6 +11010,15 @@ "glogg": "^1.0.0" } }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -6479,6 +11087,16 @@ "function-bind": "^1.1.2" } }, + "header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.3" + } + }, "homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", @@ -6494,6 +11112,12 @@ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -6509,6 +11133,12 @@ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, + "immutable": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", + "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", + "dev": true + }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -6647,6 +11277,15 @@ "is-extglob": "^2.1.1" } }, + "is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", + "dev": true, + "requires": { + "lower-case": "^1.1.0" + } + }, "is-negated-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", @@ -6679,6 +11318,12 @@ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, "is-relative": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", @@ -6697,6 +11342,15 @@ "unc-path-regex": "^0.1.2" } }, + "is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", + "dev": true, + "requires": { + "upper-case": "^1.1.0" + } + }, "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", @@ -6869,6 +11523,18 @@ } } }, + "lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true + }, + "livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", + "dev": true + }, "load-json-file": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", @@ -6893,6 +11559,45 @@ } } }, + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", + "dev": true, + "requires": { + "lower-case": "^1.1.2" + } + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -6902,6 +11607,15 @@ "yallist": "^4.0.0" } }, + "lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "dev": true, + "requires": { + "es5-ext": "~0.10.2" + } + }, "make-iterator": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", @@ -6979,6 +11693,28 @@ "picomatch": "^2.2.1" } }, + "mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "memoizee": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", + "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", + "dev": true, + "requires": { + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" + } + }, "micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", @@ -7100,6 +11836,12 @@ "dev": true, "optional": true }, + "nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true + }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", @@ -7125,57 +11867,153 @@ "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true + }, + "node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "requires": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + } + }, + "node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node-sass-magic-importer": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-sass-magic-importer/-/node-sass-magic-importer-5.3.3.tgz", + "integrity": "sha512-xB4yH7laj00SBIZO9Hwke3XDSqMcz+6IM7TgcxU9Ri6m6Pn8MBWwgG5HLmgZkQX3W2osUhx+k7WSOzzunuTKVw==", + "dev": true, + "requires": { + "css-node-extract": "^2.1.3", + "css-selector-extract": "^3.3.6", + "findup-sync": "^4.0.0", + "glob": "^7.1.6", + "object-hash": "^2.0.3", + "postcss-scss": "^3.0.2", + "resolve": "^1.17.0" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" } }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" } }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "isobject": "^3.0.1" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } } } }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true - }, - "node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "node-sass-package-importer": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/node-sass-package-importer/-/node-sass-package-importer-5.3.3.tgz", + "integrity": "sha512-alXHd4/QzsUH6Aao8Wg5zm1uhz4Ujt9AgRG3LLjPYBlbW8lg7TtMsbCz2G+QgtdSba0A0wmZ3+8FAD+QjP5kHw==", "dev": true, "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" + "node-sass-magic-importer": "^5.3.3" } }, "normalize-package-data": { @@ -7196,6 +12034,12 @@ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, "now-and-later": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", @@ -7205,12 +12049,27 @@ "once": "^1.3.2" } }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, "number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", "dev": true }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, "object-copy": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", @@ -7252,6 +12111,18 @@ } } }, + "object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true + }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", @@ -7363,6 +12234,15 @@ "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, "parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", @@ -7395,6 +12275,16 @@ "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true }, + "pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", + "dev": true, + "requires": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + }, "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", @@ -7435,6 +12325,15 @@ } } }, + "path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", @@ -7506,6 +12405,12 @@ "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", "dev": true }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -7530,55 +12435,346 @@ "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, "requires": { - "pinkie": "^2.0.0" + "pinkie": "^2.0.0" + } + }, + "plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "postcss": { + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", + "dev": true, + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-colormin": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", + "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-convert-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", + "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "dev": true + }, + "postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "dev": true + }, + "postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "dev": true + }, + "postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "dev": true + }, + "postcss-load-config": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz", + "integrity": "sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==", + "dev": true, + "requires": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + } + }, + "postcss-merge-longhand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", + "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.2" + } + }, + "postcss-merge-rules": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", + "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.15" + } + }, + "postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "dev": true, + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-params": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", + "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz", + "integrity": "sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.15" + } + }, + "postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "dev": true + }, + "postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-unicode": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", + "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "dev": true, + "requires": { + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-reduce-initial": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", + "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-scss": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-3.0.5.tgz", + "integrity": "sha512-3e0qYk87eczfzg5P73ZVuuxEGCBfatRhPze6KrSaIbEKVtmnFI1RYp1Fv+AyZi+w8kcNRSPeNX6ap4b65zEkiA==", + "dev": true, + "requires": { + "postcss": "^8.2.7" + } + }, + "postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz", + "integrity": "sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.2.0" } }, - "plugin-error": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", - "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "postcss-unique-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz", + "integrity": "sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==", "dev": true, "requires": { - "ansi-colors": "^1.0.1", - "arr-diff": "^4.0.0", - "arr-union": "^3.1.0", - "extend-shallow": "^3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "postcss-selector-parser": "^6.0.15" } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "pretty-hrtime": { @@ -7620,6 +12816,39 @@ "pump": "^2.0.0" } }, + "qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, + "raw-body": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", + "dev": true, + "requires": { + "bytes": "1", + "string_decoder": "0.10" + }, + "dependencies": { + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + } + } + }, "read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", @@ -7755,6 +12984,12 @@ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, + "replace-ext": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", + "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", + "dev": true + }, "replace-homedir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", @@ -7835,6 +13070,12 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, + "safe-json-parse": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", + "integrity": "sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==", + "dev": true + }, "safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", @@ -7850,6 +13091,118 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, + "sass": { + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, "semver": { "version": "4.3.6", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", @@ -7865,6 +13218,16 @@ "sver-compat": "^1.5.0" } }, + "sentence-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", + "integrity": "sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" + } + }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -7922,12 +13285,32 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, "slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", "dev": true }, + "snake-case": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", + "integrity": "sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==", + "dev": true, + "requires": { + "no-case": "^2.2.0" + } + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -8013,6 +13396,12 @@ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, "source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", @@ -8026,6 +13415,24 @@ "urix": "^0.1.0" } }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, "source-map-url": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", @@ -8158,6 +13565,16 @@ "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", "dev": true }, + "streamx": { + "version": "2.15.6", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.6.tgz", + "integrity": "sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==", + "dev": true, + "requires": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -8167,6 +13584,12 @@ "safe-buffer": "~5.1.0" } }, + "string-template": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==", + "dev": true + }, "string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -8187,6 +13610,22 @@ "ansi-regex": "^2.0.0" } }, + "strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "dev": true + }, + "stylehacks": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", + "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", + "dev": true, + "requires": { + "browserslist": "^4.22.2", + "postcss-selector-parser": "^6.0.15" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -8212,6 +13651,60 @@ "es6-symbol": "^3.1.1" } }, + "svgo": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz", + "integrity": "sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==", + "dev": true, + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + } + }, + "swap-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", + "integrity": "sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==", + "dev": true, + "requires": { + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "dev": true, + "requires": { + "streamx": "^2.12.5" + } + }, + "terser": { + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", + "dev": true, + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -8238,6 +13731,57 @@ "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", "dev": true }, + "timers-ext": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", + "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", + "dev": true, + "requires": { + "es5-ext": "~0.10.46", + "next-tick": "1" + } + }, + "tiny-lr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", + "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", + "dev": true, + "requires": { + "body": "^5.1.0", + "debug": "^3.1.0", + "faye-websocket": "~0.10.0", + "livereload-js": "^2.3.0", + "object-assign": "^4.1.0", + "qs": "^6.4.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "title-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", + "integrity": "sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==", + "dev": true, + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.0.3" + } + }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -8454,6 +13998,31 @@ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true }, + "update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "upper-case-first": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz", + "integrity": "sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==", + "dev": true, + "requires": { + "upper-case": "^1.1.1" + } + }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -8497,6 +14066,19 @@ "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", "dev": true }, + "vinyl": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz", + "integrity": "sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "clone-stats": "^1.0.0", + "remove-trailing-separator": "^1.1.0", + "replace-ext": "^2.0.0", + "teex": "^1.0.1" + } + }, "vinyl-fs": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", @@ -8522,18 +14104,6 @@ "vinyl-sourcemap": "^1.1.0" }, "dependencies": { - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, "replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", @@ -8571,18 +14141,6 @@ "vinyl": "^2.0.0" }, "dependencies": { - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, "normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", @@ -8614,12 +14172,38 @@ } } }, + "vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", + "dev": true, + "requires": { + "source-map": "^0.5.1" + } + }, "web-streams-polyfill": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", "dev": true }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", diff --git a/package.json b/package.json index 9e83baced..f51de1a73 100644 --- a/package.json +++ b/package.json @@ -9,18 +9,33 @@ "main": "gulpfile.js", "scripts": { "translate": "gulp translate", + "build": "gulp build", + "dev": "gulp dev", "postinstall": "patch-package" }, "repository": "Freemius/wordpress-sdk.git", "devDependencies": { "@transifex/api": "^7.0.1", + "autoprefixer": "^10.4.17", + "cssnano": "^6.0.3", "dotenv": "^16.4.1", "fancy-log": "^2.0.0", "gettext-parser": "^7.0.1", "gulp": "^4.0.2", + "gulp-concat": "^2.6.1", + "gulp-esbuild": "^0.12.0", + "gulp-livereload": "^4.0.2", + "gulp-plumber": "^1.2.1", + "gulp-postcss": "^9.1.0", + "gulp-sass": "^5.1.0", "gulp-sort": "^2.0.0", + "gulp-sourcemaps": "^3.0.0", + "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", "node-fetch": "^3.3.2", - "patch-package": "^8.0.0" + "node-sass-package-importer": "^5.3.3", + "patch-package": "^8.0.0", + "postcss": "^8.4.33", + "sass": "^1.70.0" } } diff --git a/templates/checkout.php b/templates/checkout.php index 3e8da5184..e43d842e9 100755 --- a/templates/checkout.php +++ b/templates/checkout.php @@ -39,7 +39,7 @@ wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'json2' ); - fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' ); + fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.js' ); fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' ); fs_enqueue_local_style( 'fs_common', '/admin/common.css' ); diff --git a/templates/contact.php b/templates/contact.php index 5fdd6e3c1..79495effa 100755 --- a/templates/contact.php +++ b/templates/contact.php @@ -39,7 +39,7 @@ wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'json2' ); - fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' ); + fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.js' ); fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' ); fs_enqueue_local_style( 'fs_checkout', '/admin/common.css' ); diff --git a/templates/powered-by.php b/templates/powered-by.php index fc10b0bf8..e925b0cfc 100755 --- a/templates/powered-by.php +++ b/templates/powered-by.php @@ -36,7 +36,7 @@ if ( ! $fs->is_whitelabeled() && ! $fs->apply_filters( 'hide_freemius_powered_by', false ) ) { wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'json2' ); - fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' ); + fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.js' ); fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' ); ?>
diff --git a/templates/pricing.php b/templates/pricing.php index 842e4fe7d..05879a52d 100644 --- a/templates/pricing.php +++ b/templates/pricing.php @@ -39,7 +39,7 @@ wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'json2' ); - fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' ); + fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.js' ); fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' ); fs_enqueue_local_style( 'fs_common', '/admin/common.css' ); From 3e7ab3692b77cd09454a380e74f23361d719bc2a Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 31 Jan 2024 12:51:53 +0530 Subject: [PATCH 09/42] [ci] [doc] Add translation and build checking in the CI + Add methods to contributing.md file. --- .github/workflows/ci.yml | 35 +++++++++++++++++++++++++++++++---- CONTRIBUTING.md | 18 ++++++++++++++++++ gulpfile.js | 7 ++++++- gulptasks/translate.js | 2 ++ languages/freemius.pot | 2 +- package.json | 1 + 6 files changed, 59 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 976c868a7..774ca6599 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ # Run CI tests via Github. -name: PHPCS and Static Analysis. +name: Static Analysis and Build on: pull_request: @@ -8,9 +8,9 @@ on: - master jobs: - run: + staticAnalysis: runs-on: ubuntu-latest - name: PHPCS + name: PHP Static Analysis continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false @@ -43,4 +43,31 @@ jobs: run: composer phpstan - name: Run PHPCS - run: composer phpcs:ci \ No newline at end of file + run: composer phpcs:ci + + canBuild: + runs-on: ubuntu-latest + name: Can Build + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 'lts/*' + + - name: Log debug information + run: | + node --version + npm --version + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Create POT file + run: npm run pot \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2ae327ffd..26ce28b36 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,4 +37,22 @@ Now, you can run the following commands: ```bash # Run the script to extract translations and generate the POT file. npm run translate +``` + +## Development and Build + +To compile SASS and JS during development, run + +```bash +npm run dev +``` + +This will watch for changes and compile changed files. The system is also hooked with +live-reload, so you don't need to refresh the page to see the changes. Simply install the +[LiveReload browser extension](https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab) and enable it. + +To build the SDK for production, run + +```bash +npm run build ``` \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index ef55b0ad1..a25dcebfa 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,7 +1,7 @@ require('dotenv').config(); const {parallel, watch} = require('gulp'); const livereload = require('gulp-livereload'); -const {createTranslation} = require('./gulptasks/translate'); +const {createTranslation, createPot} = require('./gulptasks/translate'); const {getSdkScssCompiler, scssSources} = require('./gulptasks/sass'); const {getSdkJSCompilers, jsSources} = require('./gulptasks/scripts'); @@ -17,6 +17,11 @@ const DEFAULT_GULP_WATCH_OPTIONS = {ignoreInitial: false, usePolling: true}; */ exports.translate = createTranslation; +/** + * Create `languages/freemius.pot` file. Used mainly by the CI to make sure POT can be created. + */ +exports.pot = createPot; + /** * The build task. This will build * 1. SASS files. diff --git a/gulptasks/translate.js b/gulptasks/translate.js index f88346075..061e8583d 100644 --- a/gulptasks/translate.js +++ b/gulptasks/translate.js @@ -113,3 +113,5 @@ async function syncWithTransifex() { } exports.createTranslation = series(translatePHP, syncWithTransifex); + +exports.createPot = translatePHP; diff --git a/languages/freemius.pot b/languages/freemius.pot index adae08a8a..36db178c3 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"POT-Creation-Date: 2024-01-31 07:21+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" diff --git a/package.json b/package.json index f51de1a73..d645ad0a9 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "main": "gulpfile.js", "scripts": { "translate": "gulp translate", + "pot": "gulp pot", "build": "gulp build", "dev": "gulp dev", "postinstall": "patch-package" From c91a6aa15bd6d9ffd26fcb73c0e420bf1501534e Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 31 Jan 2024 13:07:33 +0530 Subject: [PATCH 10/42] [export] [git] Add irrelevant files to the export-ignore. --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index 95596f330..e564c05ee 100644 --- a/.gitattributes +++ b/.gitattributes @@ -15,6 +15,12 @@ phpcs.xml export-ignore phpcompat.xml export-ignore phpstan.neon export-ignore .editorconfig export-ignore +/assets/scripts/ export-ignore +/patches/ export-ignore +/gulptasks/ export-ignore +.example.env export-ignore +CONTRIBUTING.md export-ignore +package-lock.json export-ignore # Declare files that will always have CRLF line endings on checkout. #*.php text eol=crlf From 43510ee2af2094fe3cc839f7cdf5b762be50d861 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 31 Jan 2024 13:58:39 +0530 Subject: [PATCH 11/42] [dep] [node-fetch] Remove node-fetch since it is already present in current LTS. --- package-lock.json | 139 ---------------------------------------------- package.json | 1 - 2 files changed, 140 deletions(-) diff --git a/package-lock.json b/package-lock.json index df6cdb971..7f986ccc1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,7 +27,6 @@ "gulp-sourcemaps": "^3.0.0", "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", - "node-fetch": "^3.3.2", "node-sass-package-importer": "^5.3.3", "patch-package": "^8.0.0", "postcss": "^8.4.33", @@ -2068,15 +2067,6 @@ "type": "^1.0.1" } }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -2693,29 +2683,6 @@ "node": ">=0.4.0" } }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, - "engines": { - "node": "^12.20 || >= 14.13" - } - }, "node_modules/file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", @@ -2901,18 +2868,6 @@ "node": ">=0.10.0" } }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dev": true, - "dependencies": { - "fetch-blob": "^3.1.2" - }, - "engines": { - "node": ">=12.20.0" - } - }, "node_modules/fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", @@ -4993,43 +4948,6 @@ "lower-case": "^1.1.1" } }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], - "engines": { - "node": ">=10.5.0" - } - }, - "node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dev": true, - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, "node_modules/node-releases": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", @@ -8000,15 +7918,6 @@ "source-map": "^0.5.1" } }, - "node_modules/web-streams-polyfill": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", - "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -9587,12 +9496,6 @@ "type": "^1.0.1" } }, - "data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "dev": true - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -10094,16 +9997,6 @@ "websocket-driver": ">=0.5.1" } }, - "fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "dev": true, - "requires": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - } - }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", @@ -10254,15 +10147,6 @@ "for-in": "^1.0.1" } }, - "formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dev": true, - "requires": { - "fetch-blob": "^3.1.2" - } - }, "fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", @@ -11912,23 +11796,6 @@ "lower-case": "^1.1.1" } }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true - }, - "node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dev": true, - "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - } - }, "node-releases": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", @@ -14181,12 +14048,6 @@ "source-map": "^0.5.1" } }, - "web-streams-polyfill": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", - "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", - "dev": true - }, "websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", diff --git a/package.json b/package.json index d645ad0a9..f09b1ae28 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,6 @@ "gulp-sourcemaps": "^3.0.0", "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", - "node-fetch": "^3.3.2", "node-sass-package-importer": "^5.3.3", "patch-package": "^8.0.0", "postcss": "^8.4.33", From 3ecbea759882569631df937488a6825b3d53a7d6 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Wed, 6 Mar 2024 17:09:36 +0530 Subject: [PATCH 12/42] [readme] [update] Add link to the contributing file. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8260aff18..cd292dda8 100644 --- a/README.md +++ b/README.md @@ -280,3 +280,7 @@ The free version is the one that you should give your users to download. Therefo Copyright (c) Freemius®, Inc. Licensed under the GNU general public license (version 3). + +## Contributing + +Please see our [contributing guide](CONTRIBUTING.md). From 0f6b0f1e57bfd5b9699e0eb41ff0c962261ff29c Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 31 Mar 2024 15:06:57 +0530 Subject: [PATCH 13/42] [translation] [update] Add informative log and a manual confirmation before uploading + Remove safety check + Bring node-fetch back since it is experimental and showing warnings. --- gulptasks/transifex.js | 60 ++++++++++++++--- gulptasks/translate.js | 13 +++- languages/freemius-de_DE.po | 2 +- languages/freemius-es_ES.po | 2 +- languages/freemius-fr_FR.po | 2 +- languages/freemius-nl_NL.po | 2 +- languages/freemius-ru_RU.po | 2 +- languages/freemius.pot | 2 +- package-lock.json | 126 ++++++++++++++++++++++++++++++++++++ package.json | 3 + 10 files changed, 196 insertions(+), 18 deletions(-) diff --git a/gulptasks/transifex.js b/gulptasks/transifex.js index 0095e1f63..bb1633394 100644 --- a/gulptasks/transifex.js +++ b/gulptasks/transifex.js @@ -7,6 +7,10 @@ const {transifexApi} = require('@transifex/api'); const fs = require('node:fs'); const log = require('fancy-log'); +const prompts = require('prompts'); +const {po} = require('gettext-parser'); +const chalk = require('chalk'); +const fetch = require('node-fetch'); // @todo - Remove once fetch is stabilized in NodeJS. transifexApi.setup({ auth: process.env.TRANSIFEX_API @@ -16,18 +20,13 @@ const SOURCE_SLUG = 'freemius-enpo'; const SOURCE_NAME = 'freemius-en.po'; async function getOrganization() { - // Safety check, unless we feel 100% confident, this wouldn't break the existing resources. - if ('wordpress-sdk' === process.env.TRANSIFEX_ORGANIZATION) { - throw new Error('Can not use the production organization yet!'); - } - const organization = await transifexApi.Organization.get({slug: process.env.TRANSIFEX_ORGANIZATION}); if (!organization) { throw new Error(`Organization "${process.env.TRANSIFEX_ORGANIZATION}" not found!`); } - log(`Using organization "${organization.attributes.name}"`); + log(`Using organization "${chalk.bold.bgBlack.yellow(organization.attributes.name)}"`); return organization; } @@ -44,7 +43,7 @@ async function getProject(organization) { throw new Error(`Project "${process.env.TRANSIFEX_PROJECT}" not found!`); } - log(`Using project "${project.attributes.name}"`); + log(`Using project "${chalk.bold.bgBlack.yellow(project.attributes.name)}"`); return project; } @@ -78,10 +77,10 @@ async function getResourceStringForUpload(project, name, slug, i18nFormat) { try { resource = await resources.get({slug}); - log(`Resource "${name}" already exists, updating...`) + log(`Resource "${chalk.bold.bgBlack.yellow(name)}" already exists, updating...`) } catch (e) { // No resources yet - log(`Creating resource "${name}"`); + log(`Creating resource "${chalk.bold.bgBlack.yellow(name)}"`); resource = await transifexApi.Resource.create({ name, slug, @@ -93,10 +92,34 @@ async function getResourceStringForUpload(project, name, slug, i18nFormat) { return resource; } +function getLinesCount(parsedPot) { + let sentenceCount = 0; + let wordCount = 0; + + Object.values(parsedPot.translations).forEach((messages) => { + Object.keys((messages)).forEach((source) => { + if ('' === source) { + return; + } + + sentenceCount += 1; + wordCount += source.split(' ').length; + }); + }); + + return {sentenceCount, wordCount}; +} + async function uploadEnglishPoToTransifex(poPath) { const {organization, project} = await getOrgAndProject(); const content = fs.readFileSync(poPath, {encoding: 'utf-8'}); + // Get total number of lines in the file + const parsedPot = po.parse(content); + + // Get total lines count from the parsedPot + const {sentenceCount, wordCount} = getLinesCount(parsedPot); + const i18nFormat = await transifexApi.i18n_formats.get({ organization, name: 'PO' @@ -104,6 +127,25 @@ async function uploadEnglishPoToTransifex(poPath) { const resource = await getResourceStringForUpload(project, SOURCE_NAME, SOURCE_SLUG, i18nFormat); + log(`ATTENTION: ${chalk.bold.red('UPLOADING')}!!`); + log(`You are about to upload the freemius-en.po file to the production organization!.`); + log(`In ${chalk.bgYellow.black('Transifex')} freemius-en.po file has ${chalk.bold.magenta(resource.attributes.string_count)} lines and ${chalk.bold.cyan(resource.attributes.word_count)} words.`); + log(`In ${chalk.bgYellow.black('Local')} freemius-en.po file has ${chalk.bold.magenta(sentenceCount)} lines and ${chalk.bold.cyan(wordCount)} words.`); + log(`Please make sure you have already tested the content of the file.`); + log(chalk.bold.red('Any data loss could be permanent.')); + + const confirmation = await prompts({ + type: 'confirm', + message: `Do you want to upload the file freemius-en.po to Transifex?`, + initial: false, + name: 'value', + }); + + if (!confirmation.value) { + log('Aborting upload'); + return false; + } + await transifexApi.ResourceStringsAsyncUpload.upload({ resource, content, diff --git a/gulptasks/translate.js b/gulptasks/translate.js index 061e8583d..e71989024 100644 --- a/gulptasks/translate.js +++ b/gulptasks/translate.js @@ -5,6 +5,7 @@ const path = require('node:path'); const log = require('fancy-log'); const fs = require('node:fs'); const {po, mo} = require('gettext-parser'); +const chalk = require('chalk'); const {uploadEnglishPoToTransifex, getTranslation} = require('./transifex'); const root = path.resolve(__dirname, '..'); @@ -94,20 +95,26 @@ function updateTranslationFiles(languageCode, translation) { async function syncWithTransifex() { log('Updaing Transifex source...'); const resource = await uploadEnglishPoToTransifex(freemiusPotPath); + + if (false === resource) { + log.error('Failed to upload the English po file to Transifex.'); + return; + } + log('Transifex updated.'); // Loop over LANGUAGE_CODE and download and update every one of them for (const code of LANGUAGE_CODES) { - log(`Updating ${code}...`); + log(`Updating ${chalk.cyan(code)}...`); try { const translation = await getTranslation(code, resource); // Update the po file in the file system updateTranslationFiles(code, translation); - log(`Updated ${code}.`); + log(`Updated ${chalk.cyan(code)}.`); } catch (e) { - log.error(`Failed to get translation of ${code}, skipping...`); + log.error(`Failed to get translation of ${chalk.red(code)}, skipping...`); } } } diff --git a/languages/freemius-de_DE.po b/languages/freemius-de_DE.po index 7d9703b52..cc8036dd9 100644 --- a/languages/freemius-de_DE.po +++ b/languages/freemius-de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"POT-Creation-Date: 2024-03-31 08:37+0000\n" "Last-Translator: Swashata Ghosh, 2024\n" "Language-Team: German (Germany) " "(https://app.transifex.com/freemius/teams/184351/de_DE/)\n" diff --git a/languages/freemius-es_ES.po b/languages/freemius-es_ES.po index 1a342ebae..6ae961c78 100644 --- a/languages/freemius-es_ES.po +++ b/languages/freemius-es_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"POT-Creation-Date: 2024-03-31 08:37+0000\n" "Last-Translator: Swashata Ghosh, 2024\n" "Language-Team: Spanish (Spain) " "(https://app.transifex.com/freemius/teams/184351/es_ES/)\n" diff --git a/languages/freemius-fr_FR.po b/languages/freemius-fr_FR.po index 7710d9dd0..3abe75736 100644 --- a/languages/freemius-fr_FR.po +++ b/languages/freemius-fr_FR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"POT-Creation-Date: 2024-03-31 08:37+0000\n" "Last-Translator: Swashata Ghosh, 2024\n" "Language-Team: French (France) " "(https://app.transifex.com/freemius/teams/184351/fr_FR/)\n" diff --git a/languages/freemius-nl_NL.po b/languages/freemius-nl_NL.po index 797c35c28..9490bfec3 100644 --- a/languages/freemius-nl_NL.po +++ b/languages/freemius-nl_NL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"POT-Creation-Date: 2024-03-31 08:37+0000\n" "Last-Translator: Swashata Ghosh, 2024\n" "Language-Team: Dutch (Netherlands) " "(https://app.transifex.com/freemius/teams/184351/nl_NL/)\n" diff --git a/languages/freemius-ru_RU.po b/languages/freemius-ru_RU.po index 7cc847015..ae9987df4 100644 --- a/languages/freemius-ru_RU.po +++ b/languages/freemius-ru_RU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"POT-Creation-Date: 2024-03-31 08:37+0000\n" "Last-Translator: Swashata Ghosh, 2024\n" "Language-Team: Russian (Russia) " "(https://app.transifex.com/freemius/teams/184351/ru_RU/)\n" diff --git a/languages/freemius.pot b/languages/freemius.pot index 36db178c3..ebbfc2931 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-01-31 07:21+0000\n" +"POT-Creation-Date: 2024-03-31 09:35+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" diff --git a/package-lock.json b/package-lock.json index 7f986ccc1..3fd901f11 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,6 +12,7 @@ "devDependencies": { "@transifex/api": "^7.0.1", "autoprefixer": "^10.4.17", + "chalk": "^4.1.2", "cssnano": "^6.0.3", "dotenv": "^16.4.1", "fancy-log": "^2.0.0", @@ -27,9 +28,11 @@ "gulp-sourcemaps": "^3.0.0", "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", + "node-fetch": "^2.7.0", "node-sass-package-importer": "^5.3.3", "patch-package": "^8.0.0", "postcss": "^8.4.33", + "prompts": "^2.4.2", "sass": "^1.70.0" } }, @@ -4392,6 +4395,15 @@ "graceful-fs": "^4.1.11" } }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/last-run": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", @@ -4948,6 +4960,26 @@ "lower-case": "^1.1.1" } }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, "node_modules/node-releases": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", @@ -6200,6 +6232,19 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/pump": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", @@ -6841,6 +6886,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, "node_modules/slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", @@ -7542,6 +7593,12 @@ "node": ">= 0.10" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "node_modules/type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -7918,6 +7975,12 @@ "source-map": "^0.5.1" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -7941,6 +8004,16 @@ "node": ">=0.8.0" } }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -11343,6 +11416,12 @@ "graceful-fs": "^4.1.11" } }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, "last-run": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", @@ -11796,6 +11875,15 @@ "lower-case": "^1.1.1" } }, + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, "node-releases": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", @@ -12662,6 +12750,16 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, "pump": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", @@ -13163,6 +13261,12 @@ "object-inspect": "^1.9.0" } }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, "slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", @@ -13749,6 +13853,12 @@ "through2": "^2.0.3" } }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -14048,6 +14158,12 @@ "source-map": "^0.5.1" } }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -14065,6 +14181,16 @@ "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", diff --git a/package.json b/package.json index f09b1ae28..c529de911 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "devDependencies": { "@transifex/api": "^7.0.1", "autoprefixer": "^10.4.17", + "chalk": "^4.1.2", "cssnano": "^6.0.3", "dotenv": "^16.4.1", "fancy-log": "^2.0.0", @@ -33,9 +34,11 @@ "gulp-sourcemaps": "^3.0.0", "gulp-terser": "^2.1.0", "gulp-wp-pot": "^2.5.0", + "node-fetch": "^2.7.0", "node-sass-package-importer": "^5.3.3", "patch-package": "^8.0.0", "postcss": "^8.4.33", + "prompts": "^2.4.2", "sass": "^1.70.0" } } From 3f436e5651dc8dfb06cfb18ab4875d8fb47e761a Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Tue, 28 Mar 2023 21:28:56 +0800 Subject: [PATCH 14/42] [account] [addon] [license] [php-8.1] Fixed an issue with the expiration label of lifetime add-on licenses. --- start.php | 2 +- templates/account/partials/addon.php | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/start.php b/start.php index 8d07fd670..ba7511cb2 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.6.2.3'; + $this_sdk_version = '2.6.2.4'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/account/partials/addon.php b/templates/account/partials/addon.php index 9f3fd1224..af9b94c2a 100644 --- a/templates/account/partials/addon.php +++ b/templates/account/partials/addon.php @@ -31,7 +31,7 @@ $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug ); $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug ); /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */ - $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug ); + $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s.', 'downgrade-x-confirm', $slug ); $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug ); $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug ); $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug ); @@ -240,19 +240,19 @@ true ); - $human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) ); - $downgrade_confirmation_message = sprintf( - $downgrade_x_confirm_text, - ( $fs_addon->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ), - $plan->title, - $human_readable_license_expiration - ); - $after_downgrade_message = ! $license->is_block_features ? sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs_addon->get_module_label( true ) ) : sprintf( $after_downgrade_blocking_text, $plan->title ); if ( ! $license->is_lifetime() && $is_active_subscription ) { + $human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) ); + $downgrade_confirmation_message = sprintf( + $downgrade_x_confirm_text, + ( $fs_addon->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ), + $plan->title, + $human_readable_license_expiration + ); + $buttons[] = fs_ui_get_action_button( $fs->get_id(), 'account', From ad1ce456ef0768b78749326eb762c52fe4ba8581 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Tue, 4 Apr 2023 23:44:21 +0800 Subject: [PATCH 15/42] [license] [php-8.1] Also fixed an issue with the logic that checks, using a license entity, whether the associated first payment is pending. --- includes/entities/class-fs-plugin-license.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/entities/class-fs-plugin-license.php b/includes/entities/class-fs-plugin-license.php index e945e51ed..82a94379b 100755 --- a/includes/entities/class-fs-plugin-license.php +++ b/includes/entities/class-fs-plugin-license.php @@ -289,6 +289,10 @@ function is_features_enabled() { * @return bool */ function is_first_payment_pending() { + if ( $this->is_lifetime() ) { + return false; + } + return ( WP_FS__TIME_24_HOURS_IN_SEC >= strtotime( $this->expiration ) - strtotime( $this->created ) ); } From 13bbba61f211ac032b9d64b6b81c30629153b8fa Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Sun, 31 Mar 2024 12:52:09 +0300 Subject: [PATCH 16/42] [php82] Suppress dynamic properties missing warning for PHP versions 8.2+. (#688) Co-authored-by: Laurence Bahiirwa --- includes/entities/class-fs-site.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/entities/class-fs-site.php b/includes/entities/class-fs-site.php index 19cca0496..f9012d056 100755 --- a/includes/entities/class-fs-site.php +++ b/includes/entities/class-fs-site.php @@ -13,6 +13,7 @@ /** * @property int $blog_id */ + #[AllowDynamicProperties] class FS_Site extends FS_Scope_Entity { /** * @var number From 44e5e1ca5cc682cb54a55de3899a331a974d8d6b Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Fri, 15 Mar 2024 03:26:43 +0800 Subject: [PATCH 17/42] [garbage-collector] Fixed an issue related to modified slugs. --- includes/class-fs-garbage-collector.php | 44 ++++++++++++++++++++----- start.php | 2 +- 2 files changed, 37 insertions(+), 9 deletions(-) diff --git a/includes/class-fs-garbage-collector.php b/includes/class-fs-garbage-collector.php index 1d40d821c..76fd192f0 100755 --- a/includes/class-fs-garbage-collector.php +++ b/includes/class-fs-garbage-collector.php @@ -59,7 +59,9 @@ function clean() { $options = $this->load_options(); $has_updated_option = false; - $products_to_clean = $this->get_products_to_clean(); + $filtered_products = $this->get_filtered_products(); + $products_to_clean = $filtered_products['products_to_clean']; + $active_products_by_id_map = $filtered_products['active_products_by_id_map']; foreach( $products_to_clean as $product ) { $slug = $product->slug; @@ -85,10 +87,25 @@ function clean() { } else if ( array_key_exists( "{$slug}:{$this->_type}", $option ) ) { /* admin_notices */ unset( $option[ "{$slug}:{$this->_type}" ] ); $updated = true; - } else if ( isset( $product->id ) && array_key_exists( $product->id, $option ) ) { /* all_licenses */ - unset( $option[ $product->id ] ); - $updated = true; - } else if ( isset( $product->file ) && array_key_exists( $product->file, $option ) ) { /* file_slug_map */ + } else if ( isset( $product->id ) && array_key_exists( $product->id, $option ) ) { /* all_licenses, add-ons, and id_slug_type_path_map */ + $is_inactive_by_id = ! isset( $active_products_by_id_map[ $product->id ] ); + $is_inactive_by_slug = ( + 'id_slug_type_path_map' === $option_name && + ( + ! isset( $option[ $product->id ]['slug'] ) || + $slug === $option[ $product->id ]['slug'] + ) + ); + + if ( $is_inactive_by_id || $is_inactive_by_slug ) { + unset( $option[ $product->id ] ); + $updated = true; + } + } else if ( /* file_slug_map */ + isset( $product->file ) && + array_key_exists( $product->file, $option ) && + $slug === $option[ $product->file ] + ) { unset( $option[ $product->file ] ); $updated = true; } @@ -145,6 +162,12 @@ private function get_products() { if ( ! isset( $products[ $slug ] ) ) { $products[ $slug ] = (object) $product_data; } + + // This is needed to handle a scenario in which there are duplicate sets of data for the same product, but one of them needs to be removed. + $products[ $slug ] = clone $products[ $slug ]; + + // The reason for having the line above. This also handles a scenario in which the slug is either empty or not empty but incorrect. + $products[ $slug ]->slug = $slug; } $this->update_gc_timestamp( $products ); @@ -152,8 +175,9 @@ private function get_products() { return $products; } - private function get_products_to_clean() { - $products_to_clean = array(); + private function get_filtered_products() { + $products_to_clean = array(); + $active_products_by_id_map = array(); $products = $this->get_products(); @@ -163,6 +187,7 @@ private function get_products_to_clean() { } if ( $this->is_product_active( $slug ) ) { + $active_products_by_id_map[ $product_data->id ] = true; continue; } @@ -178,7 +203,10 @@ private function get_products_to_clean() { } } - return $products_to_clean; + return array( + 'products_to_clean' => $products_to_clean, + 'active_products_by_id_map' => $active_products_by_id_map, + ); } /** diff --git a/start.php b/start.php index ba7511cb2..7ad9d4449 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.6.2.4'; + $this_sdk_version = '2.6.2.5'; #region SDK Selection Logic -------------------------------------------------------------------- From 00b596f3c089c59c8f836d4b4c22a9bebae0a42d Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 31 Mar 2024 17:05:17 +0530 Subject: [PATCH 18/42] [translation] [build] [update] Add all available languages to the build tool. --- gulptasks/translate.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gulptasks/translate.js b/gulptasks/translate.js index e71989024..cc4ab816d 100644 --- a/gulptasks/translate.js +++ b/gulptasks/translate.js @@ -13,19 +13,19 @@ const languagesFolder = path.resolve(root, './languages'); const freemiusPotPath = path.resolve(languagesFolder, './freemius.pot'); const LANGUAGE_CODES = [ - // 'cs_CZ', - // 'da_DK', + 'cs_CZ', + 'da_DK', 'de_DE', 'es_ES', 'fr_FR', - // 'he_IL', - // 'hu_HU', - // 'it_IT', - // 'js', + 'he_IL', + 'hu_HU', + 'it_IT', + 'ja', 'nl_NL', 'ru_RU', - // 'ta', - // 'zh_CN', + 'ta', + 'zh_CN', ]; function translatePHP() { From 7e3b11e81623e5d747f2b83a7e1bb8a1679d6db0 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 31 Mar 2024 17:37:42 +0530 Subject: [PATCH 19/42] [version] [compile] [languages] Version 2.7.0 --- languages/freemius-cs_CZ.mo | Bin 36563 -> 36388 bytes languages/freemius-cs_CZ.po | 2783 +++++++++++++++++++------------- languages/freemius-da_DK.mo | Bin 69088 -> 31821 bytes languages/freemius-da_DK.po | 2996 ++++++++++++++++++++--------------- languages/freemius-de_DE.mo | Bin 69463 -> 69290 bytes languages/freemius-de_DE.po | 309 ++-- languages/freemius-es_ES.mo | Bin 53110 -> 52957 bytes languages/freemius-es_ES.po | 309 ++-- languages/freemius-fr_FR.mo | Bin 46758 -> 46836 bytes languages/freemius-fr_FR.po | 305 ++-- languages/freemius-he_IL.mo | Bin 40497 -> 38272 bytes languages/freemius-he_IL.po | 2600 +++++++++++++++++------------- languages/freemius-hu_HU.mo | Bin 26759 -> 24994 bytes languages/freemius-hu_HU.po | 2515 +++++++++++++++++------------ languages/freemius-it_IT.mo | Bin 59634 -> 58062 bytes languages/freemius-it_IT.po | 2862 ++++++++++++++++++++------------- languages/freemius-ja.mo | Bin 48367 -> 46050 bytes languages/freemius-ja.po | 2541 ++++++++++++++++------------- languages/freemius-nl_NL.mo | Bin 45228 -> 45298 bytes languages/freemius-nl_NL.po | 307 ++-- languages/freemius-ru_RU.mo | Bin 47036 -> 47106 bytes languages/freemius-ru_RU.po | 306 ++-- languages/freemius-ta.mo | Bin 77216 -> 74201 bytes languages/freemius-ta.po | 2705 ++++++++++++++++++------------- languages/freemius-zh_CN.mo | Bin 55459 -> 61924 bytes languages/freemius-zh_CN.po | 2692 ++++++++++++++++--------------- languages/freemius.pot | 273 ++-- start.php | 2 +- 28 files changed, 13443 insertions(+), 10062 deletions(-) diff --git a/languages/freemius-cs_CZ.mo b/languages/freemius-cs_CZ.mo index 8dd3c06700bb3b0f13c99ef0d0ff75ef8ffd06fc..dc311a4e7852680e600920b0cf1b794277a02427 100644 GIT binary patch delta 11696 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 delta 11825 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 diff --git a/languages/freemius-cs_CZ.po b/languages/freemius-cs_CZ.po index bf506fc60..485772d0d 100644 --- a/languages/freemius-cs_CZ.po +++ b/languages/freemius-cs_CZ.po @@ -1,1456 +1,1501 @@ -# Copyright (C) 2022 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Karolína Vyskočilová , 2019-2022 +# Karolína Vyskočilová , 2019-2023 msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Karolína Vyskočilová , 2019-2022\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n" -"Language: cs_CZ\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Karolína Vyskočilová , 2019-2023\n" +"Language-Team: Czech (Czech Republic) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;" -"fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Aktualizováním na Beta verzi nahradíte nainstalovanou verzi %s nejnovějším vydáním Beta verze - používejte s opatrností a ne na produkčních webech. Varovali jsme vás." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Aktualizováním na Beta verzi nahradíte nainstalovanou verzi %s nejnovějším " +"vydáním Beta verze - používejte s opatrností a ne na produkčních webech. " +"Varovali jsme vás." -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Chcete pokračovat v aktualizaci?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK nemohl najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK nemohl najít hlavní soubor pluginu. S aktuální chybou se " +"obraťte se na sdk@freemius.com." -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Chyba" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "našel jsem lepší %s" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Jak se %s jmenuje?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "" +msgstr "dočasná %s - ladím problém na webu" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deaktivace" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Změna šablony" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "jiné" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "již nepotřebuji %s" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "potřeboval jsem %s jen dočasně" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s rozbil můj web" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s náhle přestal pracovat" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "je drahý a nemohu si ho už dovolit" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Jakou cenu byste byli ochotni platit?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Nechci s vámi sdílet své informace" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s nefungoval" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Nedokázal jsem jej zprovoznit" -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Jaká funkce?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s nefunguje" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..." +msgstr "" +"Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další " +"uživatele..." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Není to to, co jsem hledal" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Co jste hledali?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s nefungoval podle očekávání" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Co jste očekávali?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!" - -#: includes/class-freemius.php:4446 -msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -msgstr "Zkontaktujeme vaší hostingovou společnost a zkusíme vyřešit tento problém. Na %s dostanete upozornění, jakmile budeme vědět něco nového." - -#: includes/class-freemius.php:4453 -msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -msgstr "Výborně, nainstalujte prosím cURL a povolte ji v souboru php.ini. Dále vyhledejte v souboru php.ini direktivu 'disable_functions ' a odeberte všechny zakázané metody začínající na \"curl_\". Chcete-li se ujistit, že byla úspěšně aktivována, použijte 'phpinfo() '. Jakmile je aktivován, deaktivujte %s a znovu jej aktivujte." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Ano - udělejte, co potřebujete" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "Ne - jen deaktivovat" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, includes/class-freemius.php6334, includes/class-freemius.php13998, includes/class-freemius.php14747, includes/class-freemius.php18513, includes/class-freemius.php18618, includes/class-freemius.php18795, includes/class-freemius.php21078, -#: includes/class-freemius.php21456, includes/class-freemius.php21470, includes/class-freemius.php22158, includes/class-freemius.php23174, includes/class-freemius.php23304, includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Jejda" - -#: includes/class-freemius.php:4683 -msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -msgstr "" - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Zakoupili jste licenci %s." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr "" - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, includes/class-freemius.php17889, includes/class-freemius.php17900, includes/class-freemius.php21347, includes/class-freemius.php21738, includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Jupí" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s nelze spustit bez %s." - -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s nelze spustit bez tohoto pluginu." - -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php:6000 -msgid "Premium %s version was successfully activated." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Cože?" - -#: includes/class-freemius.php:6027 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Máte licenci „%s“." -#: includes/class-freemius.php:6317 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s bezplatná zkušební verze byla úspěšně zrušena. Jelikož toto rozšíření nenabízí bezplatnou verzi, bylo automaticky deaktivováno. Chcete-li jej v budoucnu používat, budete si muset zakoupit licenci." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "" + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"%s bezplatná zkušební verze byla úspěšně zrušena. Jelikož toto rozšíření " +"nenabízí bezplatnou verzi, bylo automaticky deaktivováno. Chcete-li jej v " +"budoucnu používat, budete si muset zakoupit licenci." -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve " +"zakoupit licenci." -#: includes/class-freemius.php6330, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Více informací o %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Koupit licenci" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "%s, abyste mohli aktivovat licenci, až ji obdržíte." + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "" + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "spustit zkušební verzi" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Jste jen na krok od - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Dokončit aktivaci „%s“" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Udělali jsme několik vylepšení %s, %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Aktualizace %s byla úspěšně dokončena." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, includes/class-fs-plugin-updater.php1305, includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Doplněk" -#: includes/class-freemius.php10711, templates/account.php411, templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, templates/account.php420, templates/debug.php395, templates/debug.php615, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Šablona" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13836, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Uživatelská nástěnka" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě." -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." -msgstr "Neplatné ID uživatele nebo emailová adresa." +msgstr "Neplatné ID uživatele nebo e-mailová adresa." -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Omlouváme se, ale aktualizaci e-mailu jsem nemohli dokončit. Uživatel s " +"vámi zadaným e-mailem už je registrován." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." msgstr "" -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Změnit vlastnictví" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je " +"to správná adresa?" -#: includes/class-freemius.php15148, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Koupit licenci nyní" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php15160, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Obnovte svou licenci teď" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Koupit licenci teď" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace." +msgstr "" +"%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní " +"aktualizace." -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Účet byl úspěšně aktivován s %s plánem." - -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "Vaše zkušebí verze byla úspěšně spuštěna." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, includes/class-freemius.php:18793 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "Účet byl úspěšně aktivován s %s plánem." + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Nelze aktivovat %s." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, includes/class-freemius.php:18794 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Kontaktujte nás prosím s následující zprávou:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Došlo k neznámé chybě." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Začít Trial" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18988 msgid "Pricing" -msgstr "Ceník" +msgstr "" + +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "Začít zkušební verzi" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Účet" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19114, includes/class-freemius.php19116, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Support" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, includes/class-freemius.php24556, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Doplňky" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Ceník" - -#: includes/class-freemius.php19551, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Fórum podpory" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Váš e-mail byl úspěšně ověřen - jste skvělý!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "Rozšíření %s bylo úspěšně zakoupeno." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Stáhnout nejnovější verzi" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1$s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2$s" +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" -#: includes/class-freemius.php21455, includes/class-freemius.php21469, includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Chyba přijatá ze serveru:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "" - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php21714, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Trial" - -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "" -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Kontaktujte nás prosím zde" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Vaše licence byla úspěšně aktivována." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Váš plán byl úspěšně aktualizován." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." -msgstr "Váše předplatné bylo úspěšně změněn na %s." +msgstr "Váše předplatné bylo úspěšně změněno na %s." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení." +msgstr "Vaše licence vypršela. Stále však můžete používat %s zdarma bez omezení." + +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s " +"používat bez omezení." + +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na " +"naší podporu." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Vaše licence vypršela. Stále však můžete používat všechny funkce verze %s, " +"ale pro získání technické podpory a nejnovějších aktualizací budete muset " +"obnovit svou licenci." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Platnost bezplatné zkušební verze vypršela. Stále můžete pokračovat v " +"používání všech našich bezplatných funkcí." -#: includes/class-freemius.php:21791 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Vaše licence vypršela. Stále však můžete používat všechny funkce verze %s, ale pro získání technické podpory a nejnovějších aktualizací budete muset obnovit svou licenci." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Platnost bezplatné zkušební verze vypršela. %1$s Upgradujte nyní%2$s abyste " +"mohli pokračovat v používání %3$s bez přerušení." -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Platnost bezplatné zkušební verze vypršela. Stále můžete pokračovat v používání všech našich bezplatných funkcí." +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Platnost bezplatné zkušební verze vypršela. %1$s Upgradujte nyní%2$s abyste mohli pokračovat v používání %3$s bez přerušení." +#: includes/class-freemius.php:21679 +msgid "Show error details" +msgstr "" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Licenci se nepodařilo aktivovat." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Vaše licence byla úspěšně aktivována." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Deaktivace licence pravděpodobně selhala." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s." -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." -msgstr "O zkušební licenci nelze žádat dvakrát." +msgstr "Zkušební verzi jste již dříve využili." + +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "" -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi." +msgstr "Plán %s neexistuje, proto nemůžete použít zkušební verzi." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "Plán %s nepodporuje zkušební období." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "Zkušební režim už vám skončil, takže už není co rušit :)" + +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "" +"Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší " +"zkušební licence. Zkuste to znovu za několik minut." -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)" +#: includes/class-freemius.php:22160 +msgid "Your %s free trial was successfully cancelled." +msgstr "" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší zkušební licence. Zkuste to znovu za několik minut." +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "Pravděpodobně máte nejnovější verzi." -#: includes/class-freemius.php:22314 -msgid "Your %s free trial was successfully cancelled." +#: includes/class-freemius.php:22505 +msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "Byla vydána verze %s." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Stáhněte si prosím %s." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "nejnovější %s verze zde" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Nový" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Pravděpodobně máte nejnovější verzi." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." msgstr "" +"Ověřovací zpráva byla právě odeslána na e-mail %s. Pokud ji nenajdete do 5 " +"min, zkontrolujte prosím složku pro spam." -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Ověřovací zpráva byla právě odeslána na email %s. Pokud ji nenajdete do 5 min, zkontrolujte prosím složku pro spam." - -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" -msgstr "Úžasný" +msgstr "Úžasné" + +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23065 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Děkujeme!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"Děkujeme za potvrzení změny vlastnictví. E-mail byl právě odeslán na adresu " +"%s, ke konečnému schválení." -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení." - -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s je nový vlastník účtu." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Gratulujeme" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "Vaše jméno bylo úspěšně aktualizováno." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Zadejte prosím jméno a příjmení." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Vaše jméno bylo úspěšně aktualizováno." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Úspěšně jste aktualizovali %s." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "" -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." msgstr "" +"Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s " +"%d-denní zkušební verze zdarma." -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Dobrý den" - -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma." - -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Kreditní karta není vyžadována" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "" - -#: includes/class-freemius.php:24385 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Přečtěte si více" -#: includes/class-freemius.php24580, templates/account.php573, templates/account.php725, templates/connect.php223, templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Aktivovat licenci" -#: includes/class-freemius.php24581, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Změnit licenci" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Odhlásit se" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" -msgstr "Zúčastnit se" +msgstr "Odebírat novinky" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Aktivovat %s funkce" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Odhlásit se" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Dokončete upgrade provedením následujících kroků" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Stáhnout nejnovější verzi %s" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Nahrát a aktivovat stáhnutou verzi" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Jak nahrát a aktivovat?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +" Placená verze %1$s je již nainstalována. Aktivujte jí, abyste mohli těžit " +"z %2$s funkcí. %3$s" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "Aktivovat %s funkce" + +#: includes/class-freemius.php:24856 +msgid "Your plan was successfully upgraded." +msgstr "Váš plán byl úspěšně aktualizován." + +#: includes/class-freemius.php:24857 +msgid "Your plan was successfully activated." +msgstr "Vaše licence byla úspěšně aktivována." + +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "" -#: includes/class-freemius.php:25267 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25277, includes/class-freemius.php25310, includes/class-fs-plugin-updater.php1284, includes/class-fs-plugin-updater.php:1298 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Neplatné ID modulu." -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Prémiová verze je již aktivní." -#: includes/class-freemius.php:25293 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "Nemáte platnou licenci pro přístup k prémiové verzi." -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "" - -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 -msgid "Premium add-on version already installed." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "" -#: includes/class-freemius.php:25672 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Zobrazit placené funkce" -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "" - -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "" - -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "" - -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" -msgstr "" +msgstr "Moc vám děkujeme za používání našich produktů!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "" -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%s a jeho doplňky" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Produkty" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Moc vám děkujeme za používání %s a jeho doplňků!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "Moc vám děkujeme za používání %s!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Ano" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "posílejte mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a nabídky." +msgstr "" +"posílejte mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a " +"nabídky." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "Ne" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "neposílejte mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a nabídky." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"%sneposílejte%s mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a " +"nabídky." -#: includes/class-freemius.php:26055 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Vyberte si, jestli chcete být informování o bezpečnostních aktualizacích, vylepšení funkcionality, vzdělávacímu obsahu nebo občasných obchodních nabídkách:" +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Vyberte si, jestli chcete být informování o bezpečnostních aktualizacích, " +"vylepšení funkcionality, vzdělávacímu obsahu nebo občasných obchodních " +"nabídkách:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "Licenční klíč je prázdný." -#: includes/class-fs-plugin-updater.php206, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Obnovit licenci" -#: includes/class-fs-plugin-updater.php211, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koupit licenci" -#: includes/class-fs-plugin-updater.php331, includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php333, includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "nová Beta verze" -#: includes/class-fs-plugin-updater.php334, includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nová verze" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Instaluji plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření." +msgstr "" +"Nelze se připojit k souborovému systému. Potvrďte prosím své přístupové " +"údaje." -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování " +"nefunguje." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Zakoupit další" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Zakoupit" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Začít můj bezplatný %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Nainstalovat aktualizaci" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Nainstalovat verzi zdarma" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Instalovat" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Stáhněte si nejnovější bezplatnou verzi" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Stáhněte si nejnovější" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Nainstalovat aktualizaci" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Aktivovat toto rozšíření" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Aktivovat bezplatnou verzi" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Aktivovat" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Popis" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Instalace" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Snímky obrazovky" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Historie změn" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Vaše hodnocení" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Vlastnosti a ceník" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Instalace pluginu" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s plán" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Nejlepší" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Měsíčně" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Ročně" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Doživotní" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Účtováno %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Ročně" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Jedenkrát" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licence pro jednu instalaci" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Neomezené množství instalací" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Až pro %s webů" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "po" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "rok" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Cena" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Uložit %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Po bezplatné %s platit jen v %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Detaily" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php514, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Verze" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autor" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Poslední aktualizace" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "Před %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Vyžaduje verzi WordPress" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s nebo vyšší" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Kompatibilní až po" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Staženo" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s krát" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s krát" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Název pluginu na WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Hlavní stránka pluginu" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Přispějte na tento plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Průměrné hodnocení" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "založeno na %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s hodnocení" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s hodnocení" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s hvězda" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s hvězd" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" -msgstr "" +msgstr "Kliknutím zobrazíte recenze, které stojí za hodnocením" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Přispěvatelé" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Varování" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Placený doplněk musí být nasazen na Freemius." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Novější verze (%s) nainstalována" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Novější verze zdarma (%s) nainstalována" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Nainstalována nejnovější verze" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Nainstalována nejnovější verze zdarma" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Novější verze (%s) nainstalována" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Novější verze zdarma (%s) nainstalována" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Snižuji vaše předplatné" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Ruším předplatné" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu " +"%s vyprší za %s." -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým " +"funkcím. Opravdu chcete pokračovat?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." msgstr "" +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Aktivovat %s plán" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Automaticky se obnoví za %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Vyprší za %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synchronizovat licence" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Zrušit zkušební verzi" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Změnit plán" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Vylepšit" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Přejít na nižší verzi" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Zdarma" -#: templates/account.php139, templates/debug.php408, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Druh členství" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Zkušební verze zdarma" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Detaily účtu" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Fakturace a platby" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deaktivovat licenci" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Opravdu chcete pokračovat?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Zrušit předplatné" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Synchronizovat" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Jméno" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" -msgstr "Email" +msgstr "E-mail" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "ID uživatele" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php400, templates/debug.php511, templates/debug.php570, templates/debug.php619, templates/debug.php698, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "ID stránky" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Žádné ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, templates/debug.php515, templates/debug.php574, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Veřejný klíč" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Tajný klíč" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Tajný klíč chybí" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Licenční klíč" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Zkouška" -#: templates/account.php498, templates/debug.php627, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Licenční klíč" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Odebírat betaverze" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "není ověřeno" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Vypršelo" +#: templates/account.php:600 +msgid "Free version" +msgstr "Verze zdarma" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Prémiová verze" -#: templates/account.php:604 -msgid "Free version" -msgstr "Verze zdarma" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Vypršelo" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Ověřit e-mail" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Stáhnout verzi %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Zobrazit" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Jaké je vaše \"%s\"?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Upravit" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Stáhnout verzi %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Weby" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Hledat podle adresy" -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresa" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licence" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Druh členství" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licence" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Skrýt" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Ruším %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "zkušební" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Ruším %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "předplatné" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1463,25 +1508,13 @@ msgid "Add Ons for %s" msgstr "Rozšíření pro %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Skrýt" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s s" @@ -1490,195 +1523,196 @@ msgid "Automatic Installation" msgstr "" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." msgstr "" #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "Proces instalace byl zahájen a může trvat několik minut. Počkejte prosím na dokončení - neobnovujte tuto stránku." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"Proces instalace byl zahájen a může trvat několik minut. Počkejte prosím na " +"dokončení - neobnovujte tuto stránku." #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Pokladna" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "Kompatibilní s PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Dobrý den %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Děkujeme za aktualizaci na verzi %1$s v%2$s!" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" msgstr "" -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Povolit a pokračovat" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Znovu poslat aktivační email" - -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Děkujeme %s!" - -#: templates/connect.php:227 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "%s vás vítá! Pro začátek zadejte svůj licenční klíč:" - -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "" +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "Pokud tuto část přeskočíte, nevadí! %1$s bude stále fungovat bez problémů." -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "" +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" +msgstr "%s vás vítá! Pro začátek zadejte svůj licenční klíč:" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Znovu poslat aktivační e-mail" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Děkujeme %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů." #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." msgstr "" -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Pokud chcete použít %s na těchto stránkách, zadejte platný licenční klíč a klikněte na tlačítko aktivovat." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" -#: templates/connect.php:289 -msgid "%s's paid features" +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." msgstr "" +"Pokud chcete použít %s na těchto stránkách, zadejte platný licenční klíč a " +"klikněte na tlačítko aktivovat." -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:278 +msgid "%s's paid features" msgstr "" -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." msgstr "" +"Případně můžete aktivaci licence prozatím přeskočit a provést ji později na " +"stránce účtu na úrovni sítě %s." -#: templates/connect.php305, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Licenční klíč" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Nemůžete najít svůj licenční klíč?" -#: templates/connect.php371, templates/connect.php695, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Přeskočit" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" msgstr "Problémy s licencí?" -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" -msgstr "" +msgstr "To dovolí %s " -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Nemáte licenční klíč?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" +"Pro poskytování aktualizací zabezpečení a funkcí a správu licencí %s " +"potřebuje" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Máte licenční klíč?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Nemáte licenční klíč?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Zásady ochrany osobních údajů" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Licenční smlouva" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Podmínky služby" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Probíhá odesílání emailů" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Probíhá aktivace" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Licenční smlouva" #: templates/contact.php:78 msgid "Contact" msgstr "Kontakt" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Vypnuto" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Zapnuto" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Akce" @@ -1726,11 +1760,6 @@ msgstr "Klíč" msgid "Value" msgstr "Hodnota" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK verze" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Cesta l SDK" @@ -1751,19 +1780,15 @@ msgstr "Pluginy" msgid "Themes" msgstr "Šablony" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Zkratka" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Nadpis" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Stav Freemius" @@ -1776,148 +1801,125 @@ msgstr "" msgid "Network User" msgstr "" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Připojeno" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Zablokováno" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s instalací" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Weby" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" -msgstr "" - -#: templates/debug.php493, templates/debug.php599, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Smazat" +msgstr "Licenční ID" -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Uživatelé" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Ověřeno" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "%s licencí" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" msgstr "ID pluginu" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "ID členství" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Aktivovaný" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Blokování" -#: templates/debug.php626, templates/debug.php697, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Typ" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Expirace" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Ladící log" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Všechny typy" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "" -#: templates/debug.php672, templates/debug.php701, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Soubor" -#: templates/debug.php673, templates/debug.php699, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Funkce" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Zpráva" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filtr" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Stáhnout" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Datum a čas" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Zabezpečená stránka HTTPS %s spuštěná z externí domény" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Podpora" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1934,16 +1936,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1955,7 +1963,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1971,10 +1981,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licence" @@ -2006,11 +2019,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produkty" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2020,12 +2028,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2033,106 +2039,123 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" msgstr "" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" -msgstr "" +msgstr "Zobrazit základní informace o stránce" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "" +msgstr "URL webu, verze WP a PHP a jazyk webu" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" -msgstr "" +msgstr "Zobrazit základní informace o %s" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" -msgstr "" +msgstr "Zobrazit základní informace k licenci" -#: includes/managers/class-fs-permission-manager.php:253 includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" -msgstr "" +msgstr "Zobrazit %s stav" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" -msgstr "" +msgstr "Je aktivní, deaktivovaný nebo odinstalovaný" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." -msgstr "" +msgstr "Licenci tak můžete znovu použít, když už %s není aktivní." -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" -msgstr "" +msgstr "Zobrazit diagnostické informace" -#: includes/managers/class-fs-permission-manager.php317, includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" -msgstr "" +msgstr "Cerzi WordPressu a PHP, jazyk webu a jeho jméno" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" -msgstr "" +msgstr "Zobrazit seznam pluginů a šablon" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" -msgstr "" +msgstr "Jména, slugy, verze a jestli jsou nebo nejsou aktivní" -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" -msgstr "" +msgstr "Zobrazit základní informace o profilu" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" msgstr "" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Newsletter" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Aktualizace, oznámení, marketing, žádný spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Aktualizovat" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Fakturace" @@ -2145,7 +2168,8 @@ msgstr "Jméno firmy" msgid "Tax / VAT ID" msgstr "DIČ" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "" @@ -2193,16 +2217,6 @@ msgstr "Částka" msgid "Invoice" msgstr "Faktura" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Odhlásit se" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Zúčastnit se" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2219,11 +2233,6 @@ msgstr "Kód" msgid "Length" msgstr "Délka" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Složka" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Tělo" @@ -2244,21 +2253,18 @@ msgstr "Konec" msgid "Log" msgstr "Záznam" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "Za %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "Před %s" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "s" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Pluginy a synchronizace šablon" @@ -2267,7 +2273,8 @@ msgstr "Pluginy a synchronizace šablon" msgid "Total" msgstr "Celkem" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Poslední" @@ -2291,143 +2298,170 @@ msgstr "" msgid "Next" msgstr "Následující" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." msgstr "" -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." msgstr "" +"Děkujeme, že jste se přihlásili do našeho partnerského programu, ale " +"bohužel jsme se v tuto chvíli rozhodli vaši žádost zamítnout. Zkuste to " +"prosím znovu za 30 dní." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "" -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." msgstr "" +"Děkujeme, že jste se přihlásili do našeho partnerského programu, během " +"následujících 14 dnů prověříme vaše údaje a ozveme se vám s dalšími " +"informacemi." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." msgstr "" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" msgstr "" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s provizi, když zákazník zakoupí novou licenci." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s minimální částka výplaty." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Vyplácení probíhá přes PayPal jednou za měsíc a v USD." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." msgstr "" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Partner" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" -msgstr "Emailová adresa" +msgstr "E-mailová adresa" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Celé jméno" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "E-mailová adresa účtu PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." msgstr "" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Další domény" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Statistika o webová stránc, emaiul a sociálních médiích" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." msgstr "" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Jakým způsobem budete mé produkty propagovat?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." msgstr "" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Zrušit" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Staňte se naším afiliátem" @@ -2436,8 +2470,13 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "Pro povolení módu ladění chyb zadejte licenční klíč." #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Pro zapnutí módu ladění chyb zadejte tajný klíč vlastníka licence (uživatel s ID = %d), který najdete v sekci \"Můj profil\" vaší nástěnky." +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Pro zapnutí módu ladění chyb zadejte tajný klíč vlastníka licence (uživatel " +"s ID = %d), který najdete v sekci \"Můj profil\" vaší nástěnky." #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2451,14 +2490,9 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Skrýt" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" -msgstr "" +msgstr "Zadejte nový e-mail" #: templates/forms/email-address-update.php:42 msgid "Are both %s and %s your email addresses?" @@ -2488,30 +2522,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Aktualizovat" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Zadejte licenční klíč, který najdete v emailu odeslaném po provedení objednávky:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Zadejte licenční klíč, který najdete v e-mailu odeslaném po provedení " +"objednávky:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Aktualizovat licenci" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Aktivovat licenci" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2532,57 +2578,68 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Je k dispozici nová verze %s." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace." +msgstr "" +" %s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní " +"aktualizace." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Nová verze k dispozici" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Skrýt" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Odeslat licenční klíč" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" +"Zadejte e-mail, který jste použili při nákupu, a my vám znovu zašleme " +"licenční klíč." #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Zadejte emailovou adresu použitou při objednávce, abychom vám na něj mohli znovu poslat licenční klíč." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Zadejte e-mail použitý při objednávce, abychom vám na něj mohli znovu " +"poslat licenční klíč." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2593,17 +2650,30 @@ msgstr "" msgid "Proceed" msgstr "Pokračovat" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Zrušit %s > pokračovat" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." msgstr "" #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období vás žádáme, abyste se rozhodli pro uživatele a necitlivé informace o webu, aby %s umožňoval periodicky odesílat data do %s za účelem kontroly aktualizací verzí a ověření zkušební verze." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období " +"vás žádáme, abyste s námi sdíleli data o uživateli a necitlivé informace o " +"webu, to umožní %s periodicky odesílat data do %s za účelem kontroly " +"aktualizací a ověření nároku na zkušební verzi." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2629,14 +2699,6 @@ msgstr "Prémium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "" @@ -2645,19 +2707,31 @@ msgstr "" msgid "Apply on all pending sites." msgstr "" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "povolit" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "delegovat" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "přeskočit" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klikněte pro zobrazení plné velikosti snímku obrazovky %d" @@ -2669,39 +2743,37 @@ msgstr "Neomezené aktualizace" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "Zbývá %s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Poslední licence" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s." +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "Bez vypršení" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "Zrušena" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "Bez vypršení" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." msgstr "" -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2726,7 +2798,9 @@ msgstr "Předplatné" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Omlouváme se za způsobené nepříjemnosti, ale když se nám dáte šanci, tak se vám ze všech sil pokusíme pomoci." +msgstr "" +"Omlouváme se za způsobené nepříjemnosti, ale když se nám dáte šanci, tak se " +"vám ze všech sil pokusíme pomoci." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2744,7 +2818,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2782,7 +2857,7 @@ msgstr "Dejte nám prosím vědět z jakého důvodu, ať to můžeme zlepšit." #: templates/forms/deactivation/form.php:478 msgid "Snooze & %s" -msgstr "" +msgstr "Odložit & %s" #: templates/forms/deactivation/form.php:638 msgid "Yes - %s" @@ -2797,5 +2872,455 @@ msgid "Click here to use the plugin anonymously" msgstr "Klikněte zde pro anonymní používání tohoto pluginu" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." msgstr "" + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Hurá" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s nelze spustit bez %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s nelze spustit bez tohoto pluginu." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Jejda" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "Dobrý den" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Cože?" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "licenční klíč" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Dokončit aktivaci „%s“" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Ceník" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Cena" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Zkušební verze" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Gratulujeme" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Zakoupit" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Vylepšit" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Přejít na nižší verzi" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Upravit" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Zobrazit" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Skrýt" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Přeskočit" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Smazat" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Aktualizovat" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Odhlásit se" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Odebírat novinky" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Stáhněte si nejnovější bezplatnou verzi" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Stáhněte si nejnovější" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Popis" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Instalace" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Historie změn" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Vaše hodnocení" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Vlastnosti a ceník" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s plán" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Nejlepší" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Měsíčně" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Ročně" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Ročně" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Jedenkrát" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Účtováno %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "po" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "rok" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Verze" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "Před %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchronizovat licence" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Druh členství" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Synchronizovat" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Tajný klíč chybí" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licence" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Skrýt" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Dobrý den %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Probíhá odesílání e-mailů" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Probíhá aktivace" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Vypnuto" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Zapnuto" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debugging" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK verze" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Připojeno" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Zablokováno" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Weby" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Expirace" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produkty" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Složka" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "s" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Skrýt" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Skrýt" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "Zbývá %s" diff --git a/languages/freemius-da_DK.mo b/languages/freemius-da_DK.mo index 07ffb83ffb3c636cb7d4405fe266139173aa16c6..c0b9378006fafe58f9caf132d1134b4113f7aba4 100644 GIT binary patch delta 9680 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 literal 69088 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 diff --git a/languages/freemius-da_DK.po b/languages/freemius-da_DK.po index 96280d8a5..faaec472a 100644 --- a/languages/freemius-da_DK.po +++ b/languages/freemius-da_DK.po @@ -1,1560 +1,1486 @@ -# Copyright (C) 2022 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Joachim Jensen, 2019-2020,2022 +# Joachim Jensen, 2019-2020,2022-2023 # Joachim Jensen, 2016-2018 # Lars Koudal, 2018-2019 msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Joachim Jensen, 2019-2020,2022\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n" -"Language: da_DK\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Joachim Jensen, 2019-2020,2022-2023\n" +"Language-Team: Danish (Denmark) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Vil du fortsætte med opdateringen?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Fejl" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Jeg fandt et bedre %s" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Hvad er navnet på %s?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "It's a temporary %s - I'm troubleshooting an issue" +msgstr "" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deaktivering" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Temaskift" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "Andet" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Jeg har ikke længere brug for %s" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Jeg behøvede kun %s i en kort periode" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s ødelagde min webside" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s stoppede pludseligt med at virke" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Jeg kan ikke længere betale for det" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Hvilken pris ville du foretrække at betale?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Jeg har ikke lyst til at dele mine informationer med jer" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s virkede ikke" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere." -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Hvilken feature?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s virker ikke" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende brugere...." +msgstr "" +"Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende " +"brugere...." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Det er ikke, hvad jeg søgte" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Hvad ledte du efter?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s virkede ikke som forventet" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Hvad forventede du?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!" - -#: includes/class-freemius.php:4446 -msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s." - -#: includes/class-freemius.php:4453 -msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Ja - fortsæt bare" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "Nej - bare deaktiver" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, -#: includes/class-freemius.php6334, includes/class-freemius.php13998, -#: includes/class-freemius.php14747, includes/class-freemius.php18513, -#: includes/class-freemius.php18618, includes/class-freemius.php18795, -#: includes/class-freemius.php21078, includes/class-freemius.php21456, -#: includes/class-freemius.php21470, includes/class-freemius.php22158, -#: includes/class-freemius.php23174, includes/class-freemius.php23304, -#: includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Ups" - -#: includes/class-freemius.php:4683 -msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed." - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Du har købt en licens til %s." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, -#: includes/class-freemius.php17889, includes/class-freemius.php17900, -#: includes/class-freemius.php21347, includes/class-freemius.php21738, -#: includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Yee-haw" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s virker ikke uden %s." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "" -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s virker ikke uden pluginnet." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Du har en %s licens." -#: includes/class-freemius.php:6000 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "Premium-versionen af %s blev aktiveret." -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "" -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "Du har en %s licens." - -#: includes/class-freemius.php:6317 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" -#: includes/class-freemius.php6330, templates/add-ons.php186, +#: includes/class-freemius.php6047, templates/add-ons.php186, #: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Mere information om %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Køb licens" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "" + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "" + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "" -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "start prøveperioden" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" -msgstr "complete the opt-in" +msgstr "" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "Tak!" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Du mangler kun ét skridt - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Færdiggør aktivering af \"%s\" nu" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Vi har foretaget nogle rettelser til %s, %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Accepter for at gøre \"%s\" bedre!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Opgraderingen af %s blev fuldendt." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, -#: includes/class-fs-plugin-updater.php1305, -#: includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Tilføjelse" -#: includes/class-freemius.php10711, templates/account.php411, -#: templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, -#: templates/account.php420, templates/debug.php395, templates/debug.php615, +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, #: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" -#: includes/class-freemius.php13836, +#: includes/class-freemius.php13654, #: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Brugerpanel" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" -msgstr "revert it now" +msgstr "" -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "An unknown error has occurred while trying to set the user's beta mode." +msgstr "" -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." -msgstr "Invalid new user ID or email address." +msgstr "" -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en " +"anden bruger med samme e-mail." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Skift ejerskab" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." -msgstr "Invalid site details collection." - -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?" +msgstr "" -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er " +"du sikker på, det er den rigtige adresse?" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "" +"Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er " +"den rigtige adresse?" -#: includes/class-freemius.php15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Køb en licens nu" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php15160, +#: includes/class-freemius.php14994, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Forny din licens nu" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Køb en licens nu" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s to access version %s security & feature updates, and support." +msgstr "" -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." -msgstr "%s opt-in was successfully completed." - -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Din konto blev aktiveret med planen %s." +msgstr "" -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "Din prøveperiode er begyndt." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, -#: includes/class-freemius.php:18793 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "Din konto blev aktiveret med planen %s." + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Kunne ikke aktivere %s." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Kontakt os venligst med følgende besked:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Der skete en ukendt fejl." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Opgrader" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Start prøveperiode" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Priser" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "Start prøveperiode" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, -#: templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Konto" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kontakt os" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, -#: includes/class-freemius.php24556, templates/account.php134, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Tilføjelser" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Priser" - -#: includes/class-freemius.php19551, +#: includes/class-freemius.php19378, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Sådan" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." -msgstr "seems like the key you entered doesn't match our records." +msgstr "" -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." -msgstr "Your %s Add-on plan was successfully upgraded." +msgstr "" -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "Betalingen for tilføjelsen %s blev gennemført." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Download den seneste version" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" -#: includes/class-freemius.php21455, includes/class-freemius.php21469, -#: includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Fejl modtager fra serveren:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, -#: includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "" -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." - -#: includes/class-freemius.php21714, templates/account.php136, -#: templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Prøveperiode" +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Jeg har opgraderet min konto, men når jeg forsøger at synkronisere " +"licensen, forbliver planen %s." -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Kontakt os her" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Din plan er blevet aktiveret." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Din plan er blevet opgraderet." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Din plan er blevet ændret til %s." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s." +msgstr "" +"Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis " +"udgave af %s." + +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte " +"%3$s uden forstyrrelser." + +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så " +"kontakt venligst support." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du " +"bliver nødt til at fornye din licens for at få opdateringer og support." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis " +"features." -#: includes/class-freemius.php:21791 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features." +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21679 +msgid "Show error details" +msgstr "" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Det ser ud til, at licensen ikke kunne aktiveres." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Din licens er blevet aktiveret." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." -msgstr "Your %s license was successfully deactivated." +msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Din licens blev deaktiveret, du er tilbage på planen %s." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Du benytter allerede %s under en prøveperiode." -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "Du har allerede brugt din prøveperiode." -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "Ingen af %s's planer understøtter prøveperiode." + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "Plan %s understøtter ikke en prøveperiode." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "Ingen af %s's planer understøtter prøveperiode." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at " +"annullere :-)" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" -#: includes/class-freemius.php:22314 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Din gratis prøveperiode for %s er blevet annulleret." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "Det ser ud til, at du har den seneste udgivelse." + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "Det var det!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "Version %s er blevet udgivet." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Download venligst %s." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "den seneste version af %s her" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Ny" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Det ser ud til, at du har den seneste udgivelse." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "Det var det!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "Websted er tilmeldt." -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Sejt" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23065 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Mange tak!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnostic data will no longer be sent from %s to %s." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "" -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s " +"for sidste godkendelse." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s er den nye ejer af kontoen." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Tillykke" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "Dit navn er blevet opdateret." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Indtast venligst dit fulde navn." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Dit navn er blevet opdateret." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Opdatering af %s blev gennemført." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "Klik her" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23446 msgid "Bundle" -msgstr "Bundle" - -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Se her" +msgstr "" -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s " +"med en %d-dags gratis prøveperiode." -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Ingen bindinger i %s dage - annuller når som helst!" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Betalingskort ikke påkrævet" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Start gratis prøveperiode" - -#: includes/class-freemius.php:24385 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Læs mere" -#: includes/class-freemius.php24580, templates/account.php573, -#: templates/account.php725, templates/connect.php223, -#: templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Aktiver licens" -#: includes/class-freemius.php24581, templates/account.php667, -#: templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Skift licens" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Frameld" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Tilmeld" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Aktiver funktioner i %s" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Frameld" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Følg venligst disse trin for at færdiggøre opgraderingen" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download den seneste version af %s" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Upload og aktiver den downloadede version" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Upload og aktivering, hvordan?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" -#: includes/class-freemius.php:25267 -msgid "Auto installation only works for opted-in users." -msgstr "Auto-installation fungerer kun for tilmeldte brugere." +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "Aktiver funktioner i %s" -#: includes/class-freemius.php25277, includes/class-freemius.php25310, -#: includes/class-fs-plugin-updater.php1284, -#: includes/class-fs-plugin-updater.php:1298 -msgid "Invalid module ID." -msgstr "Ugyldigt modul-ID." +#: includes/class-freemius.php:24856 +msgid "Your plan was successfully upgraded." +msgstr "Din plan er blevet opgraderet." -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 -msgid "Premium version already active." -msgstr "Premium version allerede aktiv." +#: includes/class-freemius.php:24857 +msgid "Your plan was successfully activated." +msgstr "Din plan er blevet aktiveret." -#: includes/class-freemius.php:25293 -msgid "You do not have a valid license to access the premium version." -msgstr "Du har ikke en gyldig licens til at benytte premium-versionen." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." +#: includes/class-freemius.php:25156 +msgid "Auto installation only works for opted-in users." +msgstr "Auto-installation fungerer kun for tilmeldte brugere." + +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 +msgid "Invalid module ID." +msgstr "Ugyldigt modul-ID." -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Premium tilføjelse er allerede installeret." -#: includes/class-freemius.php:25672 -msgid "View paid features" -msgstr "Vis betalte features" +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +msgid "Premium version already active." +msgstr "Premium version allerede aktiv." -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!" +#: includes/class-freemius.php:25182 +msgid "You do not have a valid license to access the premium version." +msgstr "Du har ikke en gyldig licens til at benytte premium-versionen." -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "Tak fordi du benytter %s!" +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s." +#: includes/class-freemius.php:25567 +msgid "View paid features" +msgstr "Vis betalte features" -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "Mange tak for at benytte vores produkter!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at " +"forbedre dem." -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%s og tilføjelser" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Produkter" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "Tak fordi du benytter %s!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at " +"forbedre %s." + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "Nej" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og " +"tilbud." -#: includes/class-freemius.php:26055 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:" +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og " +"feature-opdateringer, informativt indhold og lejlighedsvise tilbud:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "Licensnøglen er tom." -#: includes/class-fs-plugin-updater.php206, +#: includes/class-fs-plugin-updater.php210, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Forny licens" -#: includes/class-fs-plugin-updater.php211, +#: includes/class-fs-plugin-updater.php215, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Køb licens" -#: includes/class-fs-plugin-updater.php331, -#: includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." -msgstr "There is a %s of %s available." +msgstr "" -#: includes/class-fs-plugin-updater.php333, -#: includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "ny beta-version" -#: includes/class-fs-plugin-updater.php334, -#: includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "ny version" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "Vigtig meddelelse til opgradering:" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installerer plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Unable to connect to the filesystem. Please confirm your credentials." +msgstr "" -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Køb flere" -#: includes/fs-plugin-info-dialog.php543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Køb" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Start mine gratis %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installer opdatering til gratis version nu" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installer opdatering nu" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installer gratis version nu" #: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, -#: templates/auto-installation.php111, templates/account/partials/addon.php370, -#: templates/account/partials/addon.php:423 +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installer nu" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Download seneste gratis version" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installer opdatering til gratis version nu" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, -#: templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Download seneste" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installer opdatering nu" #: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Aktiver denne tilføjelse" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Aktiver gratis version" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, #: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Aktiver" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Beskrivelse" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installering" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, +#: includes/fs-plugin-info-dialog.php1002, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Skærmbilleder" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Ændringslog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Anmeldelser" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Andre noter" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Funktioner og priser" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Plugin-installering" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Bedste" - -#: includes/fs-plugin-info-dialog.php1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Månedligt" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Årligt" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Livstid" -#: includes/fs-plugin-info-dialog.php1158, -#: includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Faktureret %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Årligt" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Engangsbeløb" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Enkelt site licens" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Ubegrænsede licenser" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Op til %s websteder" -#: includes/fs-plugin-info-dialog.php1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "md" - -#: includes/fs-plugin-info-dialog.php1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "år" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Pris" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Spar %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Ingen bindinger i %s - annuller når som helst" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Efter dine gratis %s er prisen kun %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Detaljer" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, -#: templates/debug.php232, templates/debug.php269, templates/debug.php514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Forfatter" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Senest opdateret" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s siden" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Kræver WordPress-version" -#: includes/fs-plugin-info-dialog.php1350, -#: includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s eller højere" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Kompatibel op til" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "Requires PHP Version" +msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Downloadet" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s gang" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s gange" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plugin-side" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Plugin-websted" -#: includes/fs-plugin-info-dialog.php1414, -#: includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Donér til dette plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Gennemsnitlig vurdering" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "baseret på %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s vurdering" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s vurderinger" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s stjerne" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s stjerner" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" -msgstr "Click to see reviews that provided a rating of %s" +msgstr "" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Bidragsydere" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php1540, -#: includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Advarsel" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Dette plugin er ikke markeret som kompatibel med din nuværende version af " +"WordPress." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Dette plugin er ikke markeret som kompatibel med din nuværende version af WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." -msgstr "Paid add-on must be deployed to Freemius." +msgstr "" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." -msgstr "Add-on must be deployed to WordPress.org or Freemius." - -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Nyere version (%s) installeret" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Nyere gratis version (%s) installeret" +msgstr "" -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Seneste version installeret" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Seneste gratis version installeret" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Nyere version (%s) installeret" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Nyere gratis version (%s) installeret" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, #: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Nedgraderer din plan" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, #: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Annullerer abonnementet" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, #: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, #: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, #: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, +#: templates/account.php120, #: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "Aktiver %s plan" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "Auto-fornyer om %s" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "Udløber om %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synkroniser licens" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Annuller prøveperiode" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Skift plan" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Opgrader" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Nedgrader" - -#: templates/account.php137, templates/add-ons.php246, +#: templates/account.php133, templates/add-ons.php246, #: templates/plugin-info/features.php72, #: templates/account/partials/addon.php52, #: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php139, templates/debug.php408, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" -msgstr "Bundle Plan" +msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Gratis prøveperiode" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Kontodetaljer" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Start fejlfinding" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Stop fejlfinding" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start fejlfinding" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Fakturering" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deaktiver licens" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Er du sikker på, du vil fortsætte?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Annuller abonnement" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Synkroniser" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Navn" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "E-mail" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Bruger-ID" -#: templates/account.php420, templates/account.php738, -#: templates/account.php789, templates/debug.php267, templates/debug.php400, -#: templates/debug.php511, templates/debug.php570, templates/debug.php619, -#: templates/debug.php698, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Websteds-ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Intet ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, -#: templates/debug.php515, templates/debug.php574, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Offentlig nøgle" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, -#: templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Privat nøgle" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Ingen privat nøgle" - -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Prøveperiode" - -#: templates/account.php498, templates/debug.php627, +#: templates/account.php494, templates/debug.php631, #: templates/account/partials/site.php:262 msgid "License Key" msgstr "Licensnøgle" -#: templates/account.php:529 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 +msgid "Trial" +msgstr "Prøveperiode" + +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Deltag i beta-programmet" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "ikke verificeret" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Udløbet" +#: templates/account.php:600 +msgid "Free version" +msgstr "Gratis version" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Premium version" -#: templates/account.php:604 -msgid "Free version" -msgstr "Gratis version" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Udløbet" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verificer e-mail" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Download 1%s version" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Hent betalt version" - -#: templates/account.php664, templates/account.php927, -#: templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Vis" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Skift bruger" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Angiv venligst %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Rediger" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Download 1%s version" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Skift bruger" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "Hent betalt version" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Websteder" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Søg efter adresse" -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresse" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licens" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licens" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Skjul" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, +#: templates/account.php939, templates/forms/data-debug-mode.php31, #: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Arbejder" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." -msgstr "Get updates for bleeding edge Beta versions of %s." +msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Annullerer %s" -#: templates/account.php1004, templates/account.php1021, +#: templates/account.php1000, templates/account.php1017, #: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "prøveperiode" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Annullerer %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "abonnement" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" -msgstr "Disabling white-label mode" +msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" -msgstr "Enabling white-label mode" +msgstr "" #: templates/add-ons.php:38 msgid "View details" @@ -1565,26 +1491,13 @@ msgid "Add Ons for %s" msgstr "Tilføjelser til %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Aktiv" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installeret" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Fjern" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "1%s sek" @@ -1593,198 +1506,188 @@ msgid "Automatic Installation" msgstr "Automatisk installering" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "Annuller installering" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Udtjekning" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "PCI-kompatibel" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" -msgstr "Never miss an important update" - -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Tillad & Fortsæt" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Gensend e-mail om aktivering" - -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Tak %s!" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:227 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." +msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" +msgstr "" -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Gensend e-mail om aktivering" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Tak %s!" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "" -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." -msgstr "We're excited to introduce the Freemius network-level integration." +msgstr "" #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "During the update process we detected %d site(s) that are still pending license activation." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" -#: templates/connect.php:289 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s's betalte features" -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" -#: templates/connect.php305, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "Licensnøgle" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Kan du ikke finde din licensnøgle?" -#: templates/connect.php371, templates/connect.php695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Spring over" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Uddeleger til webstedsadministratorer" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" -msgstr "License issues?" - -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "For delivery of security & feature updates, and license management, %s needs to" +msgstr "" -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" -msgstr "This will allow %s to" +msgstr "" -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Har du ikke en licensnøgle?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Har du en licensnøgle?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Har du ikke en licensnøgle?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" -msgstr "Freemius is our licensing and software updates engine" +msgstr "" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Privatlivspolitik" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Licensaftale" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Servicevilkår" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Sender e-mail" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Aktiverer" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Licensaftale" #: templates/contact.php:78 msgid "Contact" msgstr "Kontakt" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Fra" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Til" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Fejlfinding" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, -#: templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Handlinger" @@ -1802,11 +1705,11 @@ msgstr "Ryd API-cache" #: templates/debug.php:83 msgid "Clear Updates Transients" -msgstr "Clear Updates Transients" +msgstr "" #: templates/debug.php:92 msgid "Reset Deactivation Snoozing" -msgstr "Reset Deactivation Snoozing" +msgstr "" #: templates/debug.php:100 msgid "Sync Data From Server" @@ -1814,7 +1717,7 @@ msgstr "Synkroniser data fra server" #: templates/debug.php:109 msgid "Migrate Options to Network" -msgstr "Migrate Options to Network" +msgstr "" #: templates/debug.php:114 msgid "Load DB Option" @@ -1832,11 +1735,6 @@ msgstr "Nøgle" msgid "Value" msgstr "Værdi" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK-versioner" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK-sti" @@ -1857,20 +1755,15 @@ msgstr "Plugins" msgid "Themes" msgstr "Temaer" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Kortnavn" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Titel" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius tilstand" @@ -1883,155 +1776,125 @@ msgstr "Netværksblog" msgid "Network User" msgstr "Netværksbruger" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Forbundet" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blokeret" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" -msgstr "Simulate Trial Promotion" +msgstr "" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "Simuler netværksopgradering" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s installeringer" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Websteder" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog-ID" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" msgstr "Licens-ID" -#: templates/debug.php493, templates/debug.php599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Slet" - -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Tilføjelser til modul %s" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Brugere" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Verificeret" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "1%s licenser" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" msgstr "Plugin-ID" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "Plan-ID" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "Kvote" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Aktiveret" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Blokerer" -#: templates/debug.php626, templates/debug.php697, +#: templates/debug.php630, templates/debug.php701, #: templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Udløber" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Fejlfindingslog" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Alle typer" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "Alle forespørgsler" -#: templates/debug.php672, templates/debug.php701, +#: templates/debug.php676, templates/debug.php705, #: templates/debug/logger.php:25 msgid "File" msgstr "Fil" -#: templates/debug.php673, templates/debug.php699, +#: templates/debug.php677, templates/debug.php703, #: templates/debug/logger.php:23 msgid "Function" msgstr "Funktion" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "Proces-ID" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, +#: templates/debug.php680, templates/debug.php704, #: templates/debug/logger.php:24 msgid "Message" msgstr "Besked" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filter" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Download" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Tidsstempel" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" -msgstr "Secure HTTPS %s page, running from an external domain" +msgstr "" #: includes/customizer/class-fs-customizer-support-section.php55, #: templates/plugin-info/features.php:43 msgid "Support" msgstr "Support" -#: includes/debug/class-fs-debug-bar-panel.php48, -#: templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -2042,39 +1905,47 @@ msgstr "Forespørgsler" #: includes/managers/class-fs-clone-manager.php:839 msgid "Invalid clone resolution action." -msgstr "Invalid clone resolution action." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1024 msgid "products" msgstr "produkter" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" -msgstr "the above-mentioned sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1251 msgid "Is %2$s a duplicate of %4$s?" -msgstr "Is %2$s a duplicate of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 msgid "Long-Term Duplicate" -msgstr "Long-Term Duplicate" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1262 msgid "Duplicate Website" @@ -2082,11 +1953,13 @@ msgstr "Kopier websted" #: includes/managers/class-fs-clone-manager.php:1268 msgid "Is %2$s the new home of %4$s?" -msgstr "Is %2$s the new home of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." -msgstr "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php1271, #: templates/forms/subscription-cancellation.php:52 @@ -2095,7 +1968,7 @@ msgstr "licens" #: includes/managers/class-fs-clone-manager.php:1271 msgid "data" -msgstr "data" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1277 msgid "Migrate License" @@ -2111,145 +1984,153 @@ msgstr "Er %2$s et nyt websted?" #: includes/managers/class-fs-clone-manager.php:1285 msgid "Yes, %2$s is a new and different website that is separate from %4$s." -msgstr "Yes, %2$s is a new and different website that is separate from %4$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1287 msgid "It requires license activation." -msgstr "It requires license activation." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1294 msgid "New Website" msgstr "Nyt websted" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produkter" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." -msgstr "You marked this website, %s, as a temporary duplicate of %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1409 msgid "You marked this website, %s, as a temporary duplicate of these sites" -msgstr "You marked this website, %s, as a temporary duplicate of these sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" -msgstr "The following products'" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" msgstr "aktiver en licens her" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" -msgstr "View Basic Website Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "Homepage URL & title, WP & PHP versions, and site language" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" -msgstr "View Basic %s Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "Current %s & SDK versions, and if active or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" -msgstr "View License Essentials" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" -msgstr "View %s State" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" -msgstr "Is active, deactivated, or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." -msgstr "So you can reuse the license when the %s is no longer active." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" -msgstr "View Diagnostic Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php317, -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "valgfrit" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" -msgstr "WordPress & PHP versions, site language & title" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" -msgstr "View Plugins & Themes List" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" -msgstr "Names, slugs, versions, and if active or not" - -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "" + +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" -msgstr "View Basic Profile Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" -msgstr "Your WordPress user's: first & last name, and email address" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Nyhedsbrev" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Opdateringer, annonceringer, marketing, ingen spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Opdater" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Betaling" @@ -2262,8 +2143,8 @@ msgstr "Firmanavn" msgid "Tax / VAT ID" msgstr "Moms / VAT ID" -#: templates/account/billing.php42, templates/account/billing.php43, -#: templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresselinje %d" @@ -2311,17 +2192,6 @@ msgstr "Beløb" msgid "Invoice" msgstr "Faktura" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Frameld" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Tilmeld" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2338,14 +2208,9 @@ msgstr "Kode" msgid "Length" msgstr "Længde" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Sti" - #: templates/debug/api-calls.php:73 msgid "Body" -msgstr "Body" +msgstr "" #: templates/debug/api-calls.php:75 msgid "Result" @@ -2363,24 +2228,18 @@ msgstr "Slut" msgid "Log" msgstr "Log" -#. translators: %s: time period (e.g. In "2 hours") #: templates/debug/plugins-themes-sync.php18, #: templates/debug/scheduled-crons.php:91 +#. translators: %s: time period (e.g. In "2 hours") msgid "In %s" msgstr "Om %s" -#. translators: %s: time period (e.g. "2 hours" ago) #: templates/debug/plugins-themes-sync.php20, #: templates/debug/scheduled-crons.php:93 +#. translators: %s: time period (e.g. "2 hours" ago) msgid "%s ago" msgstr "%s siden" -#: templates/debug/plugins-themes-sync.php21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sek" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Synkronisering af plugins og temaer" @@ -2414,154 +2273,177 @@ msgstr "Cron Type" msgid "Next" msgstr "Næste" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Udløber ikke" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Ansøg om at blive en affiliate" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." -msgstr "Your affiliation account was temporarily suspended." +msgstr "" -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" -msgstr "Like the %s? Become our ambassador and earn cash ;-)" +msgstr "" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Programoversigt" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." -msgstr "%s commission when a customer purchases a new license." +msgstr "" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." -msgstr "Get commission for automated subscription renewals." +msgstr "" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie after the first visit to maximize earnings potential." +msgstr "" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Ubegrænset provision." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." -msgstr "%s minimum payout amount." +msgstr "" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Udbetalinger er i USD og behandles hver måned via PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "E-mailadresse" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Fulde navn" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "E-mailadresse til PayPal-konto" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Hvor vil du promovere %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Tilføj andet domæne" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Ekstra domæner" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Andre domæner du vil markedsføre produktet fra." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promoveringsmetoder" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Sociale medier (Facebook, Twitter osv.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobil-apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Hvordan vil du promovere os?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuller" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Bliv en affiliate" #: templates/forms/data-debug-mode.php:25 msgid "Please enter the license key to enable the debug mode:" -msgstr "Please enter the license key to enable the debug mode:" +msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2573,45 +2455,39 @@ msgstr "Brugernøgle" #: templates/forms/email-address-update.php:32 msgid "Email address update" -msgstr "Email address update" - -#: templates/forms/email-address-update.php33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Fjern" +msgstr "" #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" -msgstr "Enter the new email address" +msgstr "" #: templates/forms/email-address-update.php:42 msgid "Are both %s and %s your email addresses?" -msgstr "Are both %s and %s your email addresses?" +msgstr "" #: templates/forms/email-address-update.php:50 msgid "Yes - both addresses are mine" -msgstr "Yes - both addresses are mine" +msgstr "" #: templates/forms/email-address-update.php:57 msgid "%s is my client's email address" -msgstr "%s is my client's email address" +msgstr "" #: templates/forms/email-address-update.php:66 msgid "%s is my email address" -msgstr "%s is my email address" +msgstr "" #: templates/forms/email-address-update.php:75 msgid "Would you like to merge %s into %s?" -msgstr "Would you like to merge %s into %s?" +msgstr "" #: templates/forms/email-address-update.php:84 msgid "Yes - move all my data and assets from %s to %s" -msgstr "Yes - move all my data and assets from %s to %s" +msgstr "" #: templates/forms/email-address-update.php:94 msgid "No - only move this site's data to %s" -msgstr "No - only move this site's data to %s" +msgstr "" #: templates/forms/email-address-update.php292, #: templates/forms/email-address-update.php:298 @@ -2619,7 +2495,9 @@ msgid "Update" msgstr "Opdater" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:" #: templates/forms/license-activation.php:28 @@ -2627,40 +2505,43 @@ msgid "Update License" msgstr "Opdater licens" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Accepter & aktiver licens" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." -msgstr "Associate with the license owner's account." +msgstr "" + +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" #: templates/forms/optout.php:44 msgid "Communication" -msgstr "Communication" +msgstr "" #: templates/forms/optout.php:56 msgid "Stay Connected" -msgstr "Stay Connected" +msgstr "" #: templates/forms/optout.php:61 msgid "Diagnostic Info" -msgstr "Diagnostic Info" +msgstr "" #: templates/forms/optout.php:77 msgid "Keep Sharing" -msgstr "Keep Sharing" +msgstr "" #: templates/forms/optout.php:82 msgid "Extensions" -msgstr "Extensions" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Keep automatic updates" +msgstr "" #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." @@ -2668,48 +2549,59 @@ msgstr "En ny version af %s er tilgængelig." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s to access version %s security & feature updates, and support." +msgstr "" #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Ny version tilgængelig" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Fjern" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Send licensnøgle" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi " +"vil gensende licensnøglen til dig." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2725,24 +2617,34 @@ msgid "Cancel %s & Proceed" msgstr "Annuller %s og fortsæt" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen " +"%2$s." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" -msgstr "By changing the user, you agree to transfer the account ownership to:" +msgstr "" #: templates/forms/user-change.php:28 msgid "I Agree - Change User" -msgstr "I Agree - Change User" +msgstr "" #: templates/forms/user-change.php:30 msgid "Enter email address" -msgstr "Enter email address" +msgstr "" #: templates/js/permissions.php337, templates/js/permissions.php:485 msgid "Saved" @@ -2756,14 +2658,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Aktiver licens på alle websteder i netværket." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Anvend på alle websteder i netværket." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Akiver licens på alle afventende websteder." @@ -2772,6 +2666,14 @@ msgstr "Akiver licens på alle afventende websteder." msgid "Apply on all pending sites." msgstr "Anvend på alle afventende websteder." +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Aktiver licens på alle websteder i netværket." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Anvend på alle websteder i netværket." + #: templates/partials/network-activation.php45, #: templates/partials/network-activation.php:79 msgid "allow" @@ -2787,8 +2689,8 @@ msgstr "delegér" msgid "skip" msgstr "spring over" -#: templates/plugin-info/description.php72, -#: templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klik for at vise skærmbillede %d i fuld skærm" @@ -2800,44 +2702,42 @@ msgstr "Ubegrænsede opdateringer" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s tilbage" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Seneste license" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "Udløber ikke" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "Annulleret" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "Udløber ikke" +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" #: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." - -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Disconnecting the website will permanently remove %s from your User Dashboard's account." +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "" #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "Are you sure you would like to proceed with the disconnection?" +msgstr "" #: templates/account/partials/site.php:190 msgid "Owner Name" @@ -2857,7 +2757,9 @@ msgstr "Abonnement" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen." +msgstr "" +"Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os " +"chancen." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2929,5 +2831,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Klik her for at benytte pluginnet anonymt" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Du har måske overset det, men du behøver ikke at dele data og kan blot %s " +"tilmeldingen." + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Yee-haw" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s virker ikke uden %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s virker ikke uden pluginnet." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Ups" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Færdiggør aktivering af \"%s\" nu" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Priser" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Pris" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "Sådan" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Prøveperiode" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Tillykke" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Se her" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Start gratis prøveperiode" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Køb" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Opgrader" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Nedgrader" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Rediger" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Vis" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Skjul" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Spring over" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Slet" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Opdater" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Frameld" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Tilmeld" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Download seneste gratis version" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Download seneste" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beskrivelse" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installering" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Ændringslog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Anmeldelser" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Andre noter" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Funktioner og priser" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s Plan" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Bedste" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Månedligt" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Årligt" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Årligt" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Engangsbeløb" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Faktureret %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "md" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "år" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Version" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Forfatter" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s siden" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synkroniser licens" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Synkroniser" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Ingen privat nøgle" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licens" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Aktiv" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installeret" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Fjern" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Sender e-mail" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Aktiverer" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Fra" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Til" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Fejlfinding" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK-versioner" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Forbundet" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Blokeret" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Websteder" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Udløber" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produkter" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Sti" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sek" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Fjern" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Fjern" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s tilbage" diff --git a/languages/freemius-de_DE.mo b/languages/freemius-de_DE.mo index 166eafff625e6ae0650c7d47c1b54f1142d3c6fb..dd8555048c427727e84c720edcc88f075afe5878 100644 GIT binary patch delta 11085 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 HfkXcf;h}+H delta 11080 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 KKWoB>wEqQdtx)X% diff --git a/languages/freemius-es_ES.po b/languages/freemius-es_ES.po index 6ae961c78..7d3874dde 100644 --- a/languages/freemius-es_ES.po +++ b/languages/freemius-es_ES.po @@ -1,16 +1,18 @@ # Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Swashata Ghosh, 2024 -# +# Carlos Longarela , 2017-2019 +# David Perez , 2020-2021 +# Leo Fajardo , 2022 msgid "" msgstr "" -"Project-Id-Version: freemius\n" +"Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 08:37+0000\n" -"Last-Translator: Swashata Ghosh, 2024\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Leo Fajardo , 2022\n" "Language-Team: Spanish (Spain) " -"(https://app.transifex.com/freemius/teams/184351/es_ES/)\n" +"(http://app.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -351,11 +353,11 @@ msgstr "" msgid "Change Ownership" msgstr "Cambiar propietario" -#: includes/class-freemius.php:14434 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "Colección de detalles del sitio no válida." -#: includes/class-freemius.php:14556 +#: includes/class-freemius.php:14564 msgid "" "We can't see any active licenses associated with that email address, are " "you sure it's the right address?" @@ -364,7 +366,7 @@ msgstr "" "electrónico, ¿estás seguro de que es la dirección de correo electrónico " "correcta?" -#: includes/class-freemius.php:14554 +#: includes/class-freemius.php:14562 msgid "" "We couldn't find your email address in the system, are you sure it's the " "right address?" @@ -372,100 +374,100 @@ msgstr "" "No podemos encontrar tu dirección de correo electrónico en el sistema, " "¿estás seguro de que es la dirección de correo electrónico correcta?" -#: includes/class-freemius.php:14860 +#: includes/class-freemius.php:14868 msgid "" "Account is pending activation. Please check your email and click the link " "to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14986, +#: includes/class-freemius.php14994, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renueva tu licencia ahora" -#: includes/class-freemius.php14974, +#: includes/class-freemius.php14982, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Compra una licencia ahora" -#: includes/class-freemius.php:14990 +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" "%s para acceder a la versión %s de actualizaciones de funciones, seguridad " "y soporte." -#: includes/class-freemius.php:17662 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17686, includes/class-freemius.php:21607 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "Tu versión de prueba se ha iniciado con éxito." -#: includes/class-freemius.php:17676 +#: includes/class-freemius.php:17684 msgid "Your account was successfully activated with the %s plan." msgstr "Tu cuenta se ha activado correctamente con el plan %s." -#: includes/class-freemius.php18320, includes/class-freemius.php18433, -#: includes/class-freemius.php:18610 +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "No se puede activar %s." -#: includes/class-freemius.php18321, includes/class-freemius.php18434, -#: includes/class-freemius.php:18611 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Por favor contáctanos con el siguiente mensaje:" -#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Se ha producido un error desconocido." -#: includes/class-freemius.php18972, includes/class-freemius.php:24391 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Actualizar" -#: includes/class-freemius.php:18980 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Precio" -#: includes/class-freemius.php:18978 +#: includes/class-freemius.php:18986 msgid "Start Trial" msgstr "Comenzar el período de prueba" -#: includes/class-freemius.php19060, includes/class-freemius.php:19062 +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Afiliación" -#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: includes/class-freemius.php19098, includes/class-freemius.php19100, #: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Cuenta" -#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contáctanos" -#: includes/class-freemius.php19119, includes/class-freemius.php19121, -#: includes/class-freemius.php24405, templates/account.php130, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Complementos" -#: includes/class-freemius.php19370, +#: includes/class-freemius.php19378, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Foro de soporte" -#: includes/class-freemius.php:20391 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!" -#: includes/class-freemius.php:20898 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "parece que la clave que has introducido no coincide con nuestros registros." -#: includes/class-freemius.php:20922 +#: includes/class-freemius.php:20930 msgid "" "Debug mode was successfully enabled and will be automatically disabled in " "60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." @@ -474,20 +476,20 @@ msgstr "" "automáticamente en 60 minutos. También puedes desactivarlo antes haciendo " "clic en el enlace \"Detener depuración\"." -#: includes/class-freemius.php:21157 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Tu complemento %s del plan se actualizó con éxito." -#: includes/class-freemius.php:21159 +#: includes/class-freemius.php:21167 #. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "El complemento %s ha sido comprado correctamente." -#: includes/class-freemius.php:21162 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Descargar la última versión" -#: includes/class-freemius.php:21280 +#: includes/class-freemius.php:21288 msgid "" "It seems like one of the authentication parameters is wrong. Update your " "Public Key, Secret Key & User ID, and try again." @@ -495,12 +497,12 @@ msgstr "" "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza " "tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." -#: includes/class-freemius.php21280, includes/class-freemius.php21677, -#: includes/class-freemius.php21778, includes/class-freemius.php:21865 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Error recibido del servidor:" -#: includes/class-freemius.php:21524 +#: includes/class-freemius.php:21532 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -508,7 +510,7 @@ msgstr "" "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu " "plan, probablemente sea un problema de nuestra parte - lo sentimos." -#: includes/class-freemius.php:21530 +#: includes/class-freemius.php:21538 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -516,21 +518,21 @@ msgstr "" "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el " "plan sigue siendo %s." -#: includes/class-freemius.php21534, includes/class-freemius.php:21586 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Contacta aquí con nosotros" -#: includes/class-freemius.php:21556 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Tu plan se cambió correctamente a %s." -#: includes/class-freemius.php:21572 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para " "siempre." -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:21582 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -540,7 +542,7 @@ msgstr "" "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el " "%3$s sin interrupciones." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21590 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -548,7 +550,7 @@ msgstr "" "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto " "con el servicio de asistencia." -#: includes/class-freemius.php:21595 +#: includes/class-freemius.php:21603 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -558,7 +560,7 @@ msgstr "" "de %s, pero tendrás que renovar tu licencia para seguir recibiendo " "actualizaciones y soporte." -#: includes/class-freemius.php:21621 +#: includes/class-freemius.php:21629 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -566,7 +568,7 @@ msgstr "" "Tu período de prueba ha caducado. Todavía puedes seguir usando todas " "nuestras funciones gratuitas." -#: includes/class-freemius.php:21623 +#: includes/class-freemius.php:21631 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -576,46 +578,46 @@ msgstr "" "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar " "usando el %3$s sin interrupciones." -#: includes/class-freemius.php:21669 +#: includes/class-freemius.php:21677 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21671 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21774 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Parece que la licencia no se pudo activar." -#: includes/class-freemius.php:21816 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Tu licencia fue activada correctamente." -#: includes/class-freemius.php:21840 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Parece que tu sitio actualmente no tiene una licencia activa." -#: includes/class-freemius.php:21864 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Parece que la desactivación de licencia ha fallado." -#: includes/class-freemius.php:21893 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "Tu licencia %s ha sido desactivada correctamente." -#: includes/class-freemius.php:21894 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s." -#: includes/class-freemius.php:21897 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21950 +#: includes/class-freemius.php:21958 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -623,7 +625,7 @@ msgstr "" "Parece que estamos teniendo algún problema temporal con tu cancelación de " "la suscripción. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:21959 +#: includes/class-freemius.php:21967 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -631,27 +633,27 @@ msgstr "" "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan " "caducará en %s." -#: includes/class-freemius.php:22001 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Estás ejecutando %s en modo de prueba." -#: includes/class-freemius.php:22012 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "Ya utilizaste un período de prueba antes." -#: includes/class-freemius.php:22048 +#: includes/class-freemius.php:22056 msgid "None of the %s's plans supports a trial period." msgstr "Ninguno de los planes de %s soportan un período de prueba." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba." -#: includes/class-freemius.php:22037 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "El plan %s no admite un período de prueba." -#: includes/class-freemius.php:22097 +#: includes/class-freemius.php:22105 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -659,7 +661,7 @@ msgstr "" "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar " ":)" -#: includes/class-freemius.php:22133 +#: includes/class-freemius.php:22141 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -667,35 +669,35 @@ msgstr "" "Parece que estamos teniendo algún problema temporal con tu cancelación de " "prueba. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22152 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Tu prueba gratuita de %s fue cancelada con éxito." -#: includes/class-freemius.php:22496 +#: includes/class-freemius.php:22504 msgid "Seems like you got the latest release." msgstr "Parece que tienes la última versión." -#: includes/class-freemius.php:22497 +#: includes/class-freemius.php:22505 msgid "You are all good!" msgstr "¡Está todo listo!" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "La versión %s se ha lanzado." -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Por favor descarga %s." -#: includes/class-freemius.php:22486 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "la última versión %s aquí" -#: includes/class-freemius.php:22491 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Nuevo" -#: includes/class-freemius.php:22900 +#: includes/class-freemius.php:22908 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -703,19 +705,19 @@ msgstr "" "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo " "después de 5 min, comprueba tu carpeta de spam." -#: includes/class-freemius.php:23040 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "Sitio dado de alta correctamente." -#: includes/class-freemius.php23041, includes/class-freemius.php:24101 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Increíble" -#: includes/class-freemius.php:23067 +#: includes/class-freemius.php:23075 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23057 +#: includes/class-freemius.php:23065 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -723,24 +725,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23058 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "¡Gracias!" -#: includes/class-freemius.php:23227 +#: includes/class-freemius.php:23235 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23225 +#: includes/class-freemius.php:23233 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23239 +#: includes/class-freemius.php:23247 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -748,24 +750,24 @@ msgstr "" "Gracias por confirmar el cambio de propiedad. Se envió un correo " "electrónico a %s para su aprobación final." -#: includes/class-freemius.php:23245 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s es el nuevo dueño de la cuenta." -#: includes/class-freemius.php:23269 +#: includes/class-freemius.php:23277 msgid "Your name was successfully updated." msgstr "Tu nombre fue actualizado correctamente." -#: includes/class-freemius.php:23264 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Por favor, dinos tu nombre completo." -#: includes/class-freemius.php:23334 +#: includes/class-freemius.php:23342 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Has actualizado correctamente tu %s." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23406 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." @@ -774,15 +776,15 @@ msgstr "" "como tu correo electrónico, clave de licencia, precios, dirección de " "facturación y facturas de la administración de WP." -#: includes/class-freemius.php:23401 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "Haz clic aquí" -#: includes/class-freemius.php:23438 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23511 +#: includes/class-freemius.php:23519 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -790,7 +792,7 @@ msgstr "" "Sólo déjanos informarte que la información de complementos de %s se está " "extrayendo de un servidor externo." -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -798,15 +800,15 @@ msgstr "" "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de " "%s con una prueba gratuita de %d-días." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!" -#: includes/class-freemius.php:24150 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "No se necesita tarjeta de crédito" -#: includes/class-freemius.php:24234 +#: includes/class-freemius.php:24242 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -814,11 +816,11 @@ msgstr "" "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes " "convertirte en nuestro embajador y ganar dinero!" -#: includes/class-freemius.php:24243 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Saber más" -#: includes/class-freemius.php24429, templates/account.php569, +#: includes/class-freemius.php24437, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -826,40 +828,40 @@ msgstr "Saber más" msgid "Activate License" msgstr "Activar licencia" -#: includes/class-freemius.php24430, templates/account.php663, +#: includes/class-freemius.php24438, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambiar licencia" -#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscribirse" -#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Darse de baja" -#: includes/class-freemius.php:24803 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Por favor, sigue estos pasos para completar la actualización" -#: includes/class-freemius.php:24807 +#: includes/class-freemius.php:24815 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Descargar la última versión %s" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Cargar y activar la versión descargada" -#: includes/class-freemius.php:24813 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "¿Cómo subirlo y activarlo?" -#: includes/class-freemius.php:24780 +#: includes/class-freemius.php:24788 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -867,19 +869,19 @@ msgstr "" " La versión de pago de %1$s ya está instalada. Por favor, actívala para " "empezar a beneficiarte de las características de %2$s. %3$s" -#: includes/class-freemius.php:24790 +#: includes/class-freemius.php:24798 msgid "Activate %s features" msgstr "Activar características %s" -#: includes/class-freemius.php:24848 +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Tu plan se actualizó con éxito." -#: includes/class-freemius.php:24849 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "Tu plan se activó con éxito." -#: includes/class-freemius.php:24979 +#: includes/class-freemius.php:24987 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." @@ -887,29 +889,29 @@ msgstr "" "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la " "licencia." -#: includes/class-freemius.php:25148 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "La instalación automática sólo funciona para usuarios que aceptaron." -#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-freemius.php25166, includes/class-freemius.php25199, #: includes/class-fs-plugin-updater.php1289, #: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Id de módulo no válido." -#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Versión del complemento premium ya instalada." -#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Versión premium ya activa." -#: includes/class-freemius.php:25174 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "No tienes una licencia válida para acceder a la versión premium." -#: includes/class-freemius.php:25181 +#: includes/class-freemius.php:25189 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -917,15 +919,15 @@ msgstr "" "El plugin es un \"Serviceware\" lo que significa que no tiene una versión " "de código premium." -#: includes/class-freemius.php:25559 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Ver las funciones de pago" -#: includes/class-freemius.php:25874 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "¡Muchas gracias por utilizar nuestros productos!" -#: includes/class-freemius.php:25875 +#: includes/class-freemius.php:25883 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -933,23 +935,23 @@ msgstr "" "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " "mejorando." -#: includes/class-freemius.php:25894 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%s y sus complementos" -#: includes/class-freemius.php:25903 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Productos" -#: includes/class-freemius.php:25863 +#: includes/class-freemius.php:25871 msgid "Thank you so much for using %s and its add-ons!" msgstr "¡Muchas gracias por utilizar %s y sus complementos!" -#: includes/class-freemius.php:25864 +#: includes/class-freemius.php:25872 msgid "Thank you so much for using %s!" msgstr "¡Muchas gracias por utilizar %s!" -#: includes/class-freemius.php:25870 +#: includes/class-freemius.php:25878 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -957,21 +959,21 @@ msgstr "" "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " "mejorando %s." -#: includes/class-freemius.php25910, templates/connect.php:313 +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php25911, templates/connect.php:314 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido " "educativo y ofertas." -#: includes/class-freemius.php25912, templates/connect.php:319 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php25914, templates/connect.php:321 +#: includes/class-freemius.php25922, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -979,7 +981,7 @@ msgstr "" "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, " "contenido educativo y ofertas." -#: includes/class-freemius.php:25924 +#: includes/class-freemius.php:25932 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " @@ -989,7 +991,7 @@ msgstr "" "requisitos de obligado cumplimiento requieren que proporciones tu " "consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" -#: includes/class-freemius.php25926, templates/connect.php:328 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -997,7 +999,7 @@ msgstr "" "Indica si deseas que te contactemos para actualizaciones de seguridad y " "nuevas funciones, contenido educativo y ofertas ocasionales:" -#: includes/class-freemius.php:26216 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "La clave de licencia está vacía." @@ -1282,6 +1284,7 @@ msgid "Cancelling the subscription" msgstr "Cancelando la suscripción" #: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, #: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' @@ -2853,16 +2856,6 @@ msgstr "Localhost" msgid "Last license" msgstr "Última licencia" -#: templates/account/partials/addon.php:34 -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -msgid "" -"%1$s will immediately stop all future recurring payments and your %s plan " -"license will expire in %s." -msgstr "" -"%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu " -"licencia del plan caducará en %s." - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Sin caducidad" @@ -2995,8 +2988,8 @@ msgstr "" "Es posible que te lo hayas perdido, pero no tienes que compartir ningún " "dato y puedes solo aceptar %s." -#: includes/class-freemius.php4842, includes/class-freemius.php21166, -#: includes/class-freemius.php:24835 +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Vaya" @@ -3012,17 +3005,17 @@ msgid "%s cannot run without the plugin." msgstr "%s no se puede ejecutar sin el plugin." #: includes/class-freemius.php4859, includes/class-freemius.php6051, -#: includes/class-freemius.php13828, includes/class-freemius.php14567, -#: includes/class-freemius.php18322, includes/class-freemius.php18435, -#: includes/class-freemius.php18612, includes/class-freemius.php20897, -#: includes/class-freemius.php21996, includes/class-freemius.php23012, -#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oops" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3061,17 +3054,17 @@ msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Completar la activación de \"%s\" ahora" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php19157, templates/pricing.php:110 +#: includes/class-freemius.php19165, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "Precio" @@ -3081,36 +3074,36 @@ msgctxt "noun" msgid "Price" msgstr "Precio" -#: includes/class-freemius.php:20392 +#: includes/class-freemius.php:20400 msgctxt "a positive response" msgid "Right on" msgstr "Bien hecho" -#: includes/class-freemius.php21511, includes/class-freemius.php21783, -#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21525, templates/account.php132, +#: includes/class-freemius.php21533, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Período de Prueba Gratuito" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23255 msgctxt "as congratulations" msgid "Congrats" msgstr "Felicidades" -#: includes/class-freemius.php:23512 +#: includes/class-freemius.php:23520 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Atención" -#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Comenzar el período de prueba gratuito" diff --git a/languages/freemius-fr_FR.mo b/languages/freemius-fr_FR.mo index db982c1e50864727c186d0b60588304d5a52b49f..de90270c18e637954e14aa4b69f050fbb5e799c6 100644 GIT binary patch delta 4361 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 diff --git a/languages/freemius-fr_FR.po b/languages/freemius-fr_FR.po index 3abe75736..2d5b0c9eb 100644 --- a/languages/freemius-fr_FR.po +++ b/languages/freemius-fr_FR.po @@ -1,16 +1,16 @@ # Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Swashata Ghosh, 2024 -# +# Boris Colombier , 2018 msgid "" msgstr "" -"Project-Id-Version: freemius\n" +"Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 08:37+0000\n" -"Last-Translator: Swashata Ghosh, 2024\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Boris Colombier , 2018\n" "Language-Team: French (France) " -"(https://app.transifex.com/freemius/teams/184351/fr_FR/)\n" +"(http://app.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -337,11 +337,11 @@ msgstr "" msgid "Change Ownership" msgstr "Changement De Propriétaire" -#: includes/class-freemius.php:14434 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "Récupération des détails du site non valide." -#: includes/class-freemius.php:14556 +#: includes/class-freemius.php:14564 msgid "" "We can't see any active licenses associated with that email address, are " "you sure it's the right address?" @@ -349,7 +349,7 @@ msgstr "" "Nous ne trouvons aucune licence active associée avec cette adresse email, " "êtes-vous qu'il s'agit de la bonne adresse ?" -#: includes/class-freemius.php:14554 +#: includes/class-freemius.php:14562 msgid "" "We couldn't find your email address in the system, are you sure it's the " "right address?" @@ -357,119 +357,119 @@ msgstr "" "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il " "s'agit de la bonne adresse ?" -#: includes/class-freemius.php:14860 +#: includes/class-freemius.php:14868 msgid "" "Account is pending activation. Please check your email and click the link " "to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14986, +#: includes/class-freemius.php14994, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renouvelez votre licence maintenant" -#: includes/class-freemius.php14974, +#: includes/class-freemius.php14982, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Acheter une licence maintenant" -#: includes/class-freemius.php:14990 +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la " "version %s, et le support." -#: includes/class-freemius.php:17662 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17686, includes/class-freemius.php:21607 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "Votre période d'essai a bien démarré." -#: includes/class-freemius.php:17676 +#: includes/class-freemius.php:17684 msgid "Your account was successfully activated with the %s plan." msgstr "Votre compte a été activé avec succès avec la formule %s." -#: includes/class-freemius.php18320, includes/class-freemius.php18433, -#: includes/class-freemius.php:18610 +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Impossible d'activer %s." -#: includes/class-freemius.php18321, includes/class-freemius.php18434, -#: includes/class-freemius.php:18611 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Merci de nous contacter avec le message suivant :" -#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18972, includes/class-freemius.php:24391 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Mise à jour" -#: includes/class-freemius.php:18980 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Tarifs" -#: includes/class-freemius.php:18978 +#: includes/class-freemius.php:18986 msgid "Start Trial" msgstr "Essai gratuit" -#: includes/class-freemius.php19060, includes/class-freemius.php:19062 +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: includes/class-freemius.php19098, includes/class-freemius.php19100, #: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Compte" -#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contactez Nous" -#: includes/class-freemius.php19119, includes/class-freemius.php19121, -#: includes/class-freemius.php24405, templates/account.php130, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php19370, +#: includes/class-freemius.php19378, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum de Support" -#: includes/class-freemius.php:20391 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !" -#: includes/class-freemius.php:20898 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20922 +#: includes/class-freemius.php:20930 msgid "" "Debug mode was successfully enabled and will be automatically disabled in " "60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21157 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Votre Add-on %s a bien été mis à jour." -#: includes/class-freemius.php:21159 +#: includes/class-freemius.php:21167 #. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "L'Add-on %s a bien été acheté." -#: includes/class-freemius.php:21162 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Télécharger la dernière version" -#: includes/class-freemius.php:21280 +#: includes/class-freemius.php:21288 msgid "" "It seems like one of the authentication parameters is wrong. Update your " "Public Key, Secret Key & User ID, and try again." @@ -478,12 +478,12 @@ msgstr "" "mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et " "essayez à nouveau." -#: includes/class-freemius.php21280, includes/class-freemius.php21677, -#: includes/class-freemius.php21778, includes/class-freemius.php:21865 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Une erreur a été reçu depuis le serveur :" -#: includes/class-freemius.php:21524 +#: includes/class-freemius.php:21532 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -492,7 +492,7 @@ msgstr "" "ou changer votre formule, le problème est probablement de votre côté - " "désolé." -#: includes/class-freemius.php:21530 +#: includes/class-freemius.php:21538 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -500,21 +500,21 @@ msgstr "" "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, " "la formule est toujours %s." -#: includes/class-freemius.php21534, includes/class-freemius.php:21586 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Merci de nous contacter ici" -#: includes/class-freemius.php:21556 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Votre formule a bien été modifié vers %s. " -#: includes/class-freemius.php:21572 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite " "indéfiniment." -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:21582 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -524,7 +524,7 @@ msgstr "" "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour " "continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21590 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -532,7 +532,7 @@ msgstr "" "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci " "de contacter le support." -#: includes/class-freemius.php:21595 +#: includes/class-freemius.php:21603 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -542,7 +542,7 @@ msgstr "" "%s mais vous devrez renouveler votre licence pour recevoir les mises à jour " "et une assistance." -#: includes/class-freemius.php:21621 +#: includes/class-freemius.php:21629 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -550,7 +550,7 @@ msgstr "" "Votre période d'essai gratuite est terminée. Vous pouvez continuer à " "utiliser toutes nos fonctionnalités gratuites." -#: includes/class-freemius.php:21623 +#: includes/class-freemius.php:21631 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -560,46 +560,46 @@ msgstr "" "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour " "maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21669 +#: includes/class-freemius.php:21677 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21671 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21774 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Il semble que la licence ne puisse être activée." -#: includes/class-freemius.php:21816 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Votre licence a bien été activée." -#: includes/class-freemius.php:21840 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Il semble que votre site n'ait pas de licence active." -#: includes/class-freemius.php:21864 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Il semble que la désactivation de la licence a échoué." -#: includes/class-freemius.php:21893 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21894 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s." -#: includes/class-freemius.php:21897 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21950 +#: includes/class-freemius.php:21958 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -607,7 +607,7 @@ msgstr "" "Il semble que nous ayons un problème temporaire avec l'annulation de votre " "abonnement. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:21959 +#: includes/class-freemius.php:21967 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -615,29 +615,29 @@ msgstr "" "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera " "dans %s." -#: includes/class-freemius.php:22001 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Vous utilisez déjà le %s en période d'essai. " -#: includes/class-freemius.php:22012 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "Vous avez déjà utilisé la période d'essai." -#: includes/class-freemius.php:22048 +#: includes/class-freemius.php:22056 msgid "None of the %s's plans supports a trial period." msgstr "Aucune formule du %s ne propose de période d'essai." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" "La formule %s n'existe pas, il n'est pas possible de commencer une période " "d'essai." -#: includes/class-freemius.php:22037 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "La formule %s ne propose pas de période d'essai." -#: includes/class-freemius.php:22097 +#: includes/class-freemius.php:22105 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -645,7 +645,7 @@ msgstr "" "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à " "annuler :)" -#: includes/class-freemius.php:22133 +#: includes/class-freemius.php:22141 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -653,35 +653,35 @@ msgstr "" "Il semble que nous ayons un problème temporaire pour annuler votre période " "d'essai. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:22152 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Votre période d'essai %s a bien été annulé." -#: includes/class-freemius.php:22496 +#: includes/class-freemius.php:22504 msgid "Seems like you got the latest release." msgstr "Il semble que vous ayez la dernière version." -#: includes/class-freemius.php:22497 +#: includes/class-freemius.php:22505 msgid "You are all good!" msgstr "Vous êtes tout bon !" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "La version %s vient d'être publiée." -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Merci de télécharger %s." -#: includes/class-freemius.php:22486 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "la dernière version de %s ici" -#: includes/class-freemius.php:22491 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Nouveau" -#: includes/class-freemius.php:22900 +#: includes/class-freemius.php:22908 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -689,19 +689,19 @@ msgstr "" "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez " "pas d'ici 5 minutes, merci de vérifier dans vos spams." -#: includes/class-freemius.php:23040 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "Site ajouté avec succès." -#: includes/class-freemius.php23041, includes/class-freemius.php:24101 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Formidable" -#: includes/class-freemius.php:23067 +#: includes/class-freemius.php:23075 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23057 +#: includes/class-freemius.php:23065 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -709,24 +709,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23058 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Merci !" -#: includes/class-freemius.php:23227 +#: includes/class-freemius.php:23235 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23225 +#: includes/class-freemius.php:23233 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23239 +#: includes/class-freemius.php:23247 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -734,38 +734,38 @@ msgstr "" "Merci pour la confirmation du changement de propriétaire. Un email vient " "d'être envoyé à %s pour la validation finale." -#: includes/class-freemius.php:23245 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s est le nouveau propriétaire du compte." -#: includes/class-freemius.php:23269 +#: includes/class-freemius.php:23277 msgid "Your name was successfully updated." msgstr "Votre nom a été mis à jour." -#: includes/class-freemius.php:23264 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Merci d'indiquer vos prénom et nom." -#: includes/class-freemius.php:23334 +#: includes/class-freemius.php:23342 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Votre %s a bien été mis à jour." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23406 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23401 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23438 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23511 +#: includes/class-freemius.php:23519 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -773,7 +773,7 @@ msgstr "" "Sachez que les informations de l'add-ons de %s sont issus d'un serveur " "externe." -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -781,15 +781,15 @@ msgstr "" "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours " "d'essai gratuit." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !" -#: includes/class-freemius.php:24150 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Pas besoin de carte bancaire" -#: includes/class-freemius.php:24234 +#: includes/class-freemius.php:24242 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -797,11 +797,11 @@ msgstr "" "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez " "le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" -#: includes/class-freemius.php:24243 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "En savoir plus" -#: includes/class-freemius.php24429, templates/account.php569, +#: includes/class-freemius.php24437, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -809,58 +809,58 @@ msgstr "En savoir plus" msgid "Activate License" msgstr "Activer la licence" -#: includes/class-freemius.php24430, templates/account.php663, +#: includes/class-freemius.php24438, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Changer la licence" -#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscription" -#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Désinscription" -#: includes/class-freemius.php:24803 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Merci de suivre ces étapes pour finaliser la mise à jour" -#: includes/class-freemius.php:24807 +#: includes/class-freemius.php:24815 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Télécharger la dernière version %s" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Téléverser et activer la version téléchargée" -#: includes/class-freemius.php:24813 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Comment téléverser et activer ?" -#: includes/class-freemius.php:24780 +#: includes/class-freemius.php:24788 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24790 +#: includes/class-freemius.php:24798 msgid "Activate %s features" msgstr "Activer les fonctionnalités %s" -#: includes/class-freemius.php:24848 +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Votre formule a bien été mise à jour." -#: includes/class-freemius.php:24849 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24979 +#: includes/class-freemius.php:24987 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." @@ -868,31 +868,31 @@ msgstr "" "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer " "la licence." -#: includes/class-freemius.php:25148 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "" "L'installation automatique ne fonctionne que pour les utilisateurs qui se " "sont inscrits." -#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-freemius.php25166, includes/class-freemius.php25199, #: includes/class-fs-plugin-updater.php1289, #: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "ID du module non valide." -#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "La version premium de l'add-on est déjà installée." -#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Version premium déjà active." -#: includes/class-freemius.php:25174 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "Vous n'avez pas de licence valide pour accéder à la version premium." -#: includes/class-freemius.php:25181 +#: includes/class-freemius.php:25189 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -900,15 +900,15 @@ msgstr "" "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version " "premium de code." -#: includes/class-freemius.php:25559 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Voir les fonctionnalités payantes" -#: includes/class-freemius.php:25874 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "Merci beaucoup d'utiliser nos produits !" -#: includes/class-freemius.php:25875 +#: includes/class-freemius.php:25883 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -916,23 +916,23 @@ msgstr "" "Vous avez déjà validé notre suivi d'utilisation qui nous permet de " "continuer à les améliorer." -#: includes/class-freemius.php:25894 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%s et ses add-ons" -#: includes/class-freemius.php:25903 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Produits" -#: includes/class-freemius.php:25863 +#: includes/class-freemius.php:25871 msgid "Thank you so much for using %s and its add-ons!" msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" -#: includes/class-freemius.php:25864 +#: includes/class-freemius.php:25872 msgid "Thank you so much for using %s!" msgstr "Merci beaucoup d'utiliser %s !" -#: includes/class-freemius.php:25870 +#: includes/class-freemius.php:25878 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -940,19 +940,19 @@ msgstr "" "Vous avez déjà validé notre suivi d'utilisation qui nous permet de " "continuer à améliorer le %s." -#: includes/class-freemius.php25910, templates/connect.php:313 +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Oui" -#: includes/class-freemius.php25911, templates/connect.php:314 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25912, templates/connect.php:319 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "Non" -#: includes/class-freemius.php25914, templates/connect.php:321 +#: includes/class-freemius.php25922, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -960,14 +960,14 @@ msgstr "" "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni " "de contenu instructif, ni d'offre." -#: includes/class-freemius.php:25924 +#: includes/class-freemius.php:25932 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25926, templates/connect.php:328 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -976,7 +976,7 @@ msgstr "" "mises à jour de sécurité et de fonctionnalités, du contenu instructif et " "des offres spéciales :" -#: includes/class-freemius.php:26216 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "La clé de licence est vide." @@ -1263,6 +1263,7 @@ msgid "Cancelling the subscription" msgstr "Annuler votre abonnement" #: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, #: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' @@ -2833,14 +2834,6 @@ msgstr "Localhost" msgid "Last license" msgstr "Dernière licence" -#: templates/account/partials/addon.php:34 -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -msgid "" -"%1$s will immediately stop all future recurring payments and your %s plan " -"license will expire in %s." -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Pas d'expiration" @@ -2973,8 +2966,8 @@ msgstr "" "Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager " "la moindre information et vous pouvez juste %s l'enregistrement." -#: includes/class-freemius.php4842, includes/class-freemius.php21166, -#: includes/class-freemius.php:24835 +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Youpi" @@ -2990,17 +2983,17 @@ msgid "%s cannot run without the plugin." msgstr "%s ne peut pas fonctionner sans le plugin." #: includes/class-freemius.php4859, includes/class-freemius.php6051, -#: includes/class-freemius.php13828, includes/class-freemius.php14567, -#: includes/class-freemius.php18322, includes/class-freemius.php18435, -#: includes/class-freemius.php18612, includes/class-freemius.php20897, -#: includes/class-freemius.php21996, includes/class-freemius.php23012, -#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oups" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3039,17 +3032,17 @@ msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Compléter \"%s\" Activer Maintenant" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php19157, templates/pricing.php:110 +#: includes/class-freemius.php19165, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "Tarifs" @@ -3059,36 +3052,36 @@ msgctxt "noun" msgid "Price" msgstr "Tarif" -#: includes/class-freemius.php:20392 +#: includes/class-freemius.php:20400 msgctxt "a positive response" msgid "Right on" msgstr "Directement" -#: includes/class-freemius.php21511, includes/class-freemius.php21783, -#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21525, templates/account.php132, +#: includes/class-freemius.php21533, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Période d'essai" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23255 msgctxt "as congratulations" msgid "Congrats" msgstr "Félicitations" -#: includes/class-freemius.php:23512 +#: includes/class-freemius.php:23520 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Avertissement" -#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Commencer l'essai gratuit" diff --git a/languages/freemius-he_IL.mo b/languages/freemius-he_IL.mo index 5b4b235504b3b7a094a397e1e0576b39e3311479..e84832723d890801fa17e082f74d71b7b7ea11bc 100644 GIT binary patch delta 7863 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 aDlME=Qc+o2mG2vQUH{DP+c%di>-is(7cSob delta 10105 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, 2017 @@ -7,874 +7,957 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Vova Feldman , 2017-2018,2022\n" -"Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n" -"Language: he_IL\n" +"Language-Team: Hebrew (Israel) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n " +"% 1 == 0) ? 1: 2;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;" -"fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "האם ברצונך להמשיך עם העידכון?" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "שגיאה" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "מצאתי %s יותר טוב" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "What's the %s's name?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "זה %s זמני - אני מנסה לפתור בעיה" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "דיאקטיבציה" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "החלפת תֵמָה" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "אחר" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "I no longer need the %s" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "I only needed the %s for a short period" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "ה%s הרס לי את האתר" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "ה%s הפסיק פתאום לעבוד" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "אני לא יכול/ה להמשיך לשלם על זה" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "ה%s לא עבד" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "The %s is great, but I need specific feature that you don't support" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "איזה פיטצ'ר?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "ה%s לא עובד" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "חיפשתי משהו אחר" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "מה חיפשת?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "ה%s לא עבד כמצופה" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "למה ציפית?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "ניפוי תקלות פרימיוס" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "יששש" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s לא יכול לעבוד ללא %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, -#: includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "אופס" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "Premium %s version was successfully activated." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "יש" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "יש לך רישיון %s." -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "Premium %s version was successfully activated." + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "מידע נוסף אודות %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "קניית רישיון" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "התחל תקופת ניסיון" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "התחל תקופת ניסיון" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "You are just one step away - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "השלם הפעלת \"%s\" עכשיו" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "We made a few tweaks to the %s, %s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "The upgrade of %s was successfully completed." -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "תוסף" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "תבנית" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "" -"Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you " -"can also %s." +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "עדכון בעלות" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "We couldn't find your email address in the system, are you sure it's the right address?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "חשבונך הופעל בהצלחה עם חבילת %s." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "הניסיון שלך הופעל בהצלחה." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "חשבונך הופעל בהצלחה עם חבילת %s." + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "לא ניתן להפעיל את %s." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "שדרג" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "התחל תקופת ניסיון" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "מחירון" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "התחל תקופת ניסיון" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "אפיליאציה" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "חשבון" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19114, includes/class-freemius.php19116, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "יצירת קשר" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "מחירון" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "פורום תמיכה" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Your email has been successfully verified - you are AWESOME!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "מעולה" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "חבילת ההרחבה %s שודרגה בהצלחה." -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "ההרחבה %s נרכשה בהצלחה." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "הורד את הגרסה האחרונה" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "הוחזרה שגיאה מהשרת:" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "אממ" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "ניסיון" +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "אנא צור איתנו קשר כאן" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "החבילה עודכנה בהצלחה אל %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Your license has expired. You can still continue using the free %s forever." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה." -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "נראה שלא ניתן להפעיל את הרישיון." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "הרישיון הופעל בהצלחה." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "נראה לאתר עדיין אין רישיון פעיל." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "נראה שניתוק הרישיון נכשל." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "אוקיי" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "You are already running the %s in a trial mode." -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "הניסיון כבר נוצל בעבר." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "None of the %s's plans supports a trial period." + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "תוכנית %s אינה תומכת בתקופת ניסיון." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "None of the %s's plans supports a trial period." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "נראה שיש לך את הגרסה האחרונה." + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "את\\ה מסודר!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "גרסה %s הושקה." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "נא להוריד את %s." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "גרסת ה-%s האחרונה כאן" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "חדש" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "נראה שיש לך את הגרסה האחרונה." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "את\\ה מסודר!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "אדיר" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23065 msgid "" -"Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and " -"tailored to." +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "תודה רבה!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "" - -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי." -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s הינו הבעלים החד של חשבון זה." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "מזל טוב" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "שמך עודכן בהצלחה." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "נא למלא את שמך המלא." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "שמך עודכן בהצלחה." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "עידכנת בהצלחה את ה%s." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "לתשמות לבך" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "היי" +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "לא נדרש כרטיס אשראי" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "התחלת ניסיון חינם" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Learn more" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "הפעלת רישיון" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "שינוי רישיון" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Opt Out" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Opt Out" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "הורד\\י את גרסת ה-%s העדכנית" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "איך להעלות ולהפעיל?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "החבילה שודרגה בהצלחה." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "מזהה המודול לא תקני." -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "הגרסה בתשלום כבר פעילה." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "" - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "" -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "צפה בפיטצ'רים שבתשלום" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "אנו מודים לך על היותך כמשתמש של %s!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "" - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "אנו מודים לך על השימוש במוצרים שלנו!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "" -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "מוצרים" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "אנו מודים לך על היותך כמשתמש של %s!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "כן" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים." -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "לא" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים." -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "מפתח הרישיון ריק." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "חידוש רישיון" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -882,608 +965,522 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." msgstr "" #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "רכישה" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "התחל את %s הניסיון שלי" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "התקן עדכון גרסה חינאמית עכשיו" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "התקן עדכון במיידי" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "התקן גרסה חינאמית עכשיו" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "התקן עכשיו" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "התקן עדכון גרסה חינאמית עכשיו" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "הורד גרסה אחרונה" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "התקן עדכון במיידי" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "הפעל את ההרחבה" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "הפעלת גירסה חינאמית" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "הפעלה" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "תיאור" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "התקנה" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "שאלות נפוצות" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "צילומי מסך" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "לוג שינויים" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "ביקורות" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "היערות נוספות" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "פיטצ'רים ומחירים" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "התקנת תוסף" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "חבילה %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "הכי טוב" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "חודשי" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "שנתי" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "לכל החיים" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "מחוייב על בסיס %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "שנתי" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "פעם אחת" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "רשיון לאתר אחד" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "רשיונות ללא הגבלה" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "עד %s אתרים" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "חודשים" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "שנה" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "מחיר" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "שמירת %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "No commitment for %s - cancel anytime" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "After your free %s, pay as little as %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "פרטים" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "גרסה" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Author" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "עודכן לאחרונה" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "לפני %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Requires WordPress Version" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s ומעלה" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible up to" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Downloaded" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "פעם %s" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s פעמים" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "עמוד התוסף" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "תרום לתוסף" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "דירוג ממוצע" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "מבוסס על %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "דרוג %s" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s דרוגים" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "כוכב %s" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s כוכבים" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Click to see reviews that provided a rating of %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "תורמים" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Warning" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Paid add-on must be deployed to Freemius." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on must be deployed to WordPress.org or Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "גרסה חדשה (%s) הותקנה" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "הגרסה האחרונה הותקנה" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "גרסה חינאמית עדכנית הותקנה" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "גרסה חדשה (%s) הותקנה" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 msgid "" -"Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be " -"charged the updated price." +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת " +"להמשיך?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "הפעל חבילה %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "עדכן אוטומטית בעוד %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "פג תוקף בעוד %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "סינכרן רישיון" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "ביט" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "שינוי חבילה" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "שדרג" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "שנמך" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "חינם" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "חבילה" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "ניסיון חינם" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "פרטי חשבון" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "שיחרור רישיון" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "האם את/ה בטוח רוצה להמשיך?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "בטל מנוי" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "סינכרון" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "שם" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "דוא\"ל" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "מזהה משתמש" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "מזהה" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "מזהה אתר" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "אין מזהה" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "מפתח פומבי" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "מפתח סודי" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "אין מפתח סודי" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "License Key" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "ניסיון" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "License Key" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "לא מאומת" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "פג תוקף" +#: templates/account.php:600 +msgid "Free version" +msgstr "גירסה חינאמית" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "גירסת פרימיום" -#: templates/account.php:604 -msgid "Free version" -msgstr "גירסה חינאמית" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "פג תוקף" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "אמת כתובת דוא\"ל" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "הורד גרסת %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "הצג" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "מה ה%s שלך?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "ערוך" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "הורד גרסת %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "אתרים" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "חפש לפי כתובת" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "כתובת" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "רישיון" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "חבילה" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "רישיון" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "הסתר" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Processing" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על " +"אתר אחר. האם תרצו להמשיך בכל זאת?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1496,25 +1493,13 @@ msgid "Add Ons for %s" msgstr "הרחבות עבור %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "סגירה" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s שניות" @@ -1523,12 +1508,21 @@ msgid "Automatic Installation" msgstr "התקנה אוטומטית" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך " +"לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום מבלי לרענן את הדפדפן." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום " +"מבלי לרענן את הדפדפן." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1542,174 +1536,164 @@ msgstr "Checkout" msgid "PCI compliant" msgstr "עומד בתקן PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "היי %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "אפשר\\י והמשכ\\י" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "שליחה חוזרת של מייל האקטיבציה" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "תודה %s!" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#: templates/connect.php:236 +#: templates/connect.php:227 msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it " -"to." +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "שליחה חוזרת של מייל האקטיבציה" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "תודה %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." msgstr "" -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." msgstr "" -#: templates/connect.php:287 -msgid "%s's paid features" +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." msgstr "" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:278 +msgid "%s's paid features" msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." msgstr "" -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "מפתח רישיון" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "האם אינך מוצא את מפתח הרישיון?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "דלג" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "האצלה למנהלי האתרים" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "האם אין ברשותך מפתח רישיון?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "האם ברשותך רישיון?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "האם אין ברשותך מפתח רישיון?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "מדיניות פרטיות" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "תנאי השירות" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "שולח דוא\"ל" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "מפעיל" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "" #: templates/contact.php:78 msgid "Contact" msgstr "Contact" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "כבוי" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "דלוק" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "דיבוג" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "פעולות" @@ -1757,11 +1741,6 @@ msgstr "Key" msgid "Value" msgstr "Value" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "גרסאות SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "מיקום SDK" @@ -1782,7 +1761,8 @@ msgstr "תוספים" msgid "Themes" msgstr "תבניות" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "מזהה כתובת" @@ -1790,11 +1770,6 @@ msgstr "מזהה כתובת" msgid "Title" msgstr "כותרת" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "מצב פרימיוס" @@ -1807,21 +1782,6 @@ msgstr "" msgid "Network User" msgstr "משתמש רשת" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "מחובר" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "חסום" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" @@ -1831,14 +1791,10 @@ msgid "Simulate Network Upgrade" msgstr "סמלוץ עדכון לרשת" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s התקנות" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "אתרים" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "מזהה בלוג" @@ -1847,11 +1803,6 @@ msgstr "מזהה בלוג" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "מחק" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Add Ons of module %s" @@ -1888,15 +1839,11 @@ msgstr "Activated" msgid "Blocking" msgstr "Blocking" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "סוג" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "תפוגה" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1909,11 +1856,13 @@ msgstr "כל הסוגים" msgid "All Requests" msgstr "כל הבקשות" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "קובץ" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "פונקציה" @@ -1925,7 +1874,8 @@ msgstr "Process ID" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "הודעה" @@ -1942,18 +1892,15 @@ msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Secure HTTPS %s page, running from an external domain" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "תמיכה" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1970,16 +1917,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1991,7 +1944,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -2007,10 +1962,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "" @@ -2042,11 +2000,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "מוצרים" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2056,12 +2009,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2069,7 +2020,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2085,7 +2038,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2093,6 +2051,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2100,8 +2059,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2109,6 +2071,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2120,7 +2083,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2129,7 +2093,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2141,7 +2109,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2153,7 +2123,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2164,11 +2137,6 @@ msgstr "ניוסלטר" msgid "Updates, announcements, marketing, no spam" msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "עדכן" - #: templates/account/billing.php:33 msgid "Billing" msgstr "בילינג" @@ -2181,7 +2149,8 @@ msgstr "שם עסק" msgid "Tax / VAT ID" msgstr "ח.פ." -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "כתובת %s" @@ -2229,16 +2198,6 @@ msgstr "סכום" msgid "Invoice" msgstr "חשבונית" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Opt Out" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Opt In" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2255,11 +2214,6 @@ msgstr "Code" msgid "Length" msgstr "Length" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "נתיב" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2280,21 +2234,18 @@ msgstr "End" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "בעוד %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "לפני %s" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Plugins & Themes Sync" @@ -2303,7 +2254,8 @@ msgstr "Plugins & Themes Sync" msgid "Total" msgstr "Total" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Last" @@ -2327,143 +2279,184 @@ msgstr "Cron Type" msgid "Next" msgstr "Next" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Non-expiring" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Apply to become an affiliate" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Your affiliation account was temporarily suspended." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Like the %s? Become our ambassador and earn cash ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Program Summary" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s commission when a customer purchases a new license." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Get commission for automated subscription renewals." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "%s tracking cookie after the first visit to maximize earnings potential." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Unlimited commissions." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s minimum payout amount." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Payouts are in USD and processed monthly via PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "כתובת דוא\"ל" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Full name" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal account email address" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Where are you going to promote the %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Add another domain" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Extra Domains" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Extra domains where you will be marketing the product from." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promotion methods" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social media (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobile apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Website, email, and social media statistics (optional)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "How will you promote us?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "בטל" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Become an affiliate" @@ -2472,7 +2465,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2487,11 +2483,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "סגירה" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2524,12 +2515,15 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "עדכן" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה." #: templates/forms/license-activation.php:28 @@ -2537,17 +2531,24 @@ msgid "Update License" msgstr "עדכון רישיון" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "הסכמה והפעלת רישיון" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2568,10 +2569,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "יש גרסה חדשה עבור ה%s." @@ -2584,41 +2581,50 @@ msgstr "" msgid "New Version Available" msgstr "יש גרסה חדשה" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "סגירה" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "שליחת מפתח רישיון" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." msgstr "הזן את כתובת הדואל שאיתה שידרגת כדי לקבל את הרישיון שוב." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2629,17 +2635,32 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2665,14 +2686,6 @@ msgstr "Premium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "הפעלת רישיון על כל האתרים ברשת." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "יישום על כל האתרים ברשת." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים." @@ -2681,19 +2694,31 @@ msgstr "הפעלת רישיון על כל האתרים התלויים והעומ msgid "Apply on all pending sites." msgstr "יישום על כל האתרים התלויים והעומדים." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "הפעלת רישיון על כל האתרים ברשת." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "יישום על כל האתרים ברשת." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "אפשר" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "האצל" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "דלג" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Click to view full-size screenshot %d" @@ -2705,39 +2730,37 @@ msgstr "עדכונים ללא הגבלה" msgid "Localhost" msgstr "שרת לוקאלי" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "נשארו %s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "רישיון אחרון" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "" +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "ללא תפוגה" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "בוטל" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "ללא תפוגה" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." msgstr "" -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2780,7 +2803,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2833,5 +2857,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Click here to use the plugin anonymously" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "אולי פספסת את זה אבל אינך חייב\\ת לשתף כל מידע איתנו, ביכולתך %s על שיתוף המידע." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"אולי פספסת את זה אבל אינך חייב\\ת לשתף כל מידע איתנו, ביכולתך %s על שיתוף " +"המידע." + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "יששש" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s לא יכול לעבוד ללא %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "אופס" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "היי" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "יש" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "השלם הפעלת \"%s\" עכשיו" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "מחירון" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "מחיר" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "מעולה" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "אממ" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "ניסיון" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "מזל טוב" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "לתשמות לבך" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "התחלת ניסיון חינם" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "רכישה" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "שדרג" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "שנמך" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "ערוך" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "הצג" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "הסתר" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "דלג" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "מחק" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "עדכן" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Opt Out" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Opt In" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "הורד גרסה אחרונה" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "תיאור" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "התקנה" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "שאלות נפוצות" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "לוג שינויים" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "ביקורות" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "היערות נוספות" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "פיטצ'רים ומחירים" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "חבילה %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "הכי טוב" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "חודשי" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "שנתי" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "שנתי" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "פעם אחת" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "מחוייב על בסיס %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "חודשים" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "שנה" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "גרסה" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Author" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "לפני %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "סינכרן רישיון" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "חבילה" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "סינכרון" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "אין מפתח סודי" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "רישיון" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "סגירה" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "היי %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "שולח דוא\"ל" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "מפעיל" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "כבוי" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "דלוק" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "דיבוג" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "גרסאות SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "מחובר" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "חסום" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "אתרים" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "תפוגה" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "מוצרים" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "נתיב" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "סגירה" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "סגירה" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "נשארו %s" diff --git a/languages/freemius-hu_HU.mo b/languages/freemius-hu_HU.mo index bd75896c53fe9564516efa969b987b18995e694a..7448fe7f921d92a4828ec4317e36e1b5872fa924 100644 GIT binary patch delta 6441 zcmaLZdzjBv9>DQ0V~BBQFmk_NW;D~#G%mS}8Oe}KB4iqj%O=E(^pKyjR=bsCA{CXS zt<{z7<|*1zR@BmEmq(seZ6#V2>q(b2`+obLp6!oqdwS;eJ>PS_=X^e&bH3l7<@+l= z{CcI84HFUn?QQJe*je~C?NQjfNff2vN-V;4SRH@F8dx|!!6fcy zV++i|mUt!l-2AjC5!K;hak#MpooEfZ@Pk+vH)BJ58B=k8xc@nJpnV22uw~PD+)y;o zNmw6eVpU9_3;!m#qAB?sz#4A2;G;-#(H5+Ud(epvpn-ghPIL;*=zDa5wDY5=8K&cf zI2c>wB5Z^YU~PO34Pa+*Z-NUacpuID^U(1%R-t_cYvI4K9;UF0fi_1M?93knD!>Lf zG+2x#P=+RO3!1>~$W+mKG@!&wq2tf!#0P_)q5*w_2J$^xsS310b(+U#pc8hYosB(l z0y_R4bis9K#!sTpKZl;3H;@1m(LOHR)5GY%Q|JUgpaZS56-vPcHt}w}2hA{@6J>_E zXa(}ndBz~eA}T`XzcF|xn%E|6!1~csq2o2QGzZXy|Aom|fo?%^t0*eQ2I&1Vq$^s8 zE_gpWZe#FSG?5+X7VQk}J?Q-Vux5gbLtfxfbWcv>udoUys0YqQGu(tm{xq8Di)g@m zu_+$K&Y09Dej75-apTc9d^UE(Y8&V_6vc;~}(C&D+QG^uZ+BquMiU02gDpk&gGFCEJBoWG`|IqJwB) z-=d|f+aWIL`Dj3G(6^%t+TR;J%!ANFH!8FzqlwH$E4i!#VVcPbZaC3etcnkz6Z{^n z%vLn8x6#PoMJM_zy5N_g|68m~`$tU13bgde)ZOQrV^wU8uGcBSg?pHZK2V4*JQ9s? zBD%md^l;5Z-oR){=wFWp_9#}v&FBYbD`wzZI2z9&FHAJ7Qyjo`Xk`+mTv&l$qla$= z@_)3RKV9%m<#UY(KB%jT`-M@JPVzX@rh_K z7cM*kYv47(YwjXa)a-o|Rpp{|H)<6X<-&MDN>D8>@Ou zJ9FXQWTFGQqnY%<6wF5t*9feElhFldp@H0lzGf@X=N?7_`2$wRXV5L$hAFrM?cZaY z^`rexrQSs6{UEeIM0O)O zoiXaGBcZ=hSX2MzrF;74cxC(!3AT@WAM>Ua_DbnJtZ z(TZ)jfcn?s;(2aZ+MP&n(Ff>f^1X)*@HqP6szB#$#(t16?lh^PrB7IWhhPK<|dQr|eE+pvuG8Z^?H z{bHM;8K(zx&|kX&!F=?sxD>5KVQ@5>*hI9VQ_y)9^ke^xY$-Qf=uUJ`AH+0#9^J!z z=pLWIUYNwcDzdRJdUoca6W@vM^+vQ3+tJGHMYrG(`dv7JZt2nf?7y$YcVS?Q0r7(w z=)%3wNUuU4n1b$Y8MeYZunRtgP4HmoKZ&WdYj6O3z7<;fuEC4L{rm(MMl>9aa4cH7 ztI-NfMKfQ5EpatE{yB7kSI~;RhmJdjo{HwI<^KIhB8g}R7cRI9 z-LrSlj6TG>@Dy&wWd(76)}T1@zUa6s&=OyZCNdwb+$waTCqn-|bo?PSv6I-E^`knM z#uH{?G93lzgoRjwW3URof}V-juo@mgOL`RjK%GUOuRA#IZ-nR3Zh;=oj%bB?p_MGe zRMwBK;$j)jMoW7deJgS=izmoO_i7k+#K~xex1kwsLVgya-RO7YM>NnnL*g@&ft6_w zMJqHMTjNYjwBcd}7e@9hp35+J1kLm;x09qZ1UM;|tO8S6~gCj-H))Xhm)g z?M>*OZ$%S$3#;RPbe=<(Q-AmN6K>STqv)P~i{7s_JpQ89N8kHK=z`ra1#?4xKDyU~ zu^o;?7q|fpEP?L%9oP-;Lj&4vhY{{W2Y!xq@N_VlUku;ZRIH2L&2kbRl{Om!lJ|Lo4<;X5fqH z^Pgc?{0a^D{84cr>F5>~qOadbWZpzHn~VC~Scqn{0xj`cbb*cN!duWS*o6)7@4-{( zX|8rfymg(?Q{ESyZ#<@BNocRaB--n+rtkklT$tgLXv8m}Tk_Vq0USy+z!PWyl}5+? zY3OsAXu!SEfCq*CD>0S!b!g^G(JlThTETm;zVH7dTv+NCumkQ!1Na)vq}rA7gKg0O zv(QsM01ap=X5(TUf?F^Z&!UI1;h6Ye!MW(!nSh>w$(V4@=7j-^(2O2L&%kE1gwKTg z+t5tkL?_yhR^|XU!sF<|mB+^OG{J_n+hGpoqM2WhnYef?_4mfp+%VIZ(F_lurThYY zjn1H@^XuW>*TyE;23uh-G@}V<1!rO&mg5Bc8yZOWad9OEqlwNONBu3`0&X+XE#WD&B2C7}3pK~~v@_6vMxkHMY1j#uVIO=7bMZ^O9y<^XyArKMU(c@+T=e6j z&eicL9*#~t7rWrv(0(1e(*6RiQ0l~Z3p$`%n1N<=5qi1@1Pjm#UWQhBWUvU`+QiIo zV?G+uQgq>sXvXiL3%nQn5H0nm=t8H_)BRnr0v(@R6bD!vJtL`T0G-f)dLW4;qCQ-t zabsBMn2!Eh%?Zv!f28Jz{(FNP&*ReiY(srSpiRVg-W?X=tl|uCSaafF#&;@s*PK|EyqHxW5Rk?5)LHx3}EWrhZnBjI7Lz z%&b-yX7$XzxNBx+X8HXC#wQienN$AVfSmGvdEJxBN~f0Jkk__OVezbKWyRACha z(4YDo-#Lu`Kf^K^nN|9W;THX@pP3t%Cl9=({DFbn%kR$5 PE+3iSV(YH_SKIst(Rc(K delta 8343 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 diff --git a/languages/freemius-hu_HU.po b/languages/freemius-hu_HU.po index 1ce678aad..3b7eef38f 100644 --- a/languages/freemius-hu_HU.po +++ b/languages/freemius-hu_HU.po @@ -1,4 +1,4 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: # Peter Ambrus, 2018-2019,2021 @@ -6,875 +6,944 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Peter Ambrus, 2018-2019,2021\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n" -"Language: hu_HU\n" +"Language-Team: Hungarian (Hungary) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;" -"fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Szeretnéd folytatni a frissítést?" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "A Freemius SDK nem találja a bővítmény fő fájlját. Kérlek írj az sdk@freemius.com email címre a problémával kapcsolatban." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"A Freemius SDK nem találja a bővítmény fő fájlját. Kérlek írj az " +"sdk@freemius.com email címre a problémával kapcsolatban." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Hiba" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Jobb %st találtam" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Mi a %s neve?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deaktiválás" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Sablon váltás" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Egyéb" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Nincs tovább szükségem rá" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Csak egy kis időre használtam" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "A(z) %s hibát generált az oldalon" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "A(z) %s egyszer csak nem működött" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Nem tudom tovább fizetni" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Nem szeretném megosztani veletek az információt" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "A(z) %s nem működött" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Nem értettem, hogy kell használni" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "A(z) %s nagyszerű, de nekem olyan funkcióra van szükségem, amit nem tud" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Melyik funkcióra van szükséged?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "A(z) %s nem működik" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..." +msgstr "" +"Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók " +"számára..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Nem ezt kerestem" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Pontosan mit kerestél?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "A %s nem az elvárásoknak megfelelően működött" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Mire számítottál?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius hibakeresés" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr "" - -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Juhuuu" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, -#: includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, -#: includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Hoppá" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Licensz típusa: %s" -#: includes/class-freemius.php:5645 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "%s prémium verziója sikeresen aktiválva." -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Fantasztikus" - -#: includes/class-freemius.php:5672 -msgid "You have a %s license." -msgstr "Licensz típusa: %s" - -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." msgstr "" -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "A(z) %s egy prémium kiegészítő. A bővítmény aktiválásához előbb egy érvényes licenszt kell vásárolnod." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"A(z) %s egy prémium kiegészítő. A bővítmény aktiválásához előbb egy " +"érvényes licenszt kell vásárolnod." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "További információ" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Licensz vásárlása" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "próbaidő indítása" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "próbaidő indítása" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Már csak egy lépés van hátra - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "\"%s\" aktiválásának a befejezése most" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Néhány frissítést kapott a %s. %s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Iratkozz fel, hogy a(z) %s még jobb lehessen!" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "A(z) %s frissítése sikeres volt." -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Kiegészítő" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Bővítmény" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Sablon" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "" -"Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it " -"back, you can easily do it through your %s. If this was a mistake you can also %s." +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Felhasználó vezérlőpult" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." msgstr "" -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." msgstr "" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Tulajdonos módosítása" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Vásárolj licenszet most" - -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Licensz kulcs megújítása" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Vásárolj licenszet most" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s" - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "A próbaidőszakodat sikeresen aktiváltuk." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s" + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "A(z) %s aktiválása nem sikerült." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Kérlek írj nekünk a következő üzenettel:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Ismeretlen hiba." -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Előfizetés" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Próbaidő indítása" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Árak" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "Próbaidő indítása" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Ajánlórendszer" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Fiók" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19114, includes/class-freemius.php19116, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kapcsolat" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Kiegészítők" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Árak" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Támogató fórum" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Töltsd le a legfrissebb verziót" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Hiba érkezett a szervertől." -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Úgy tűnik, hogy még mindig a %s csomagban vagy. Ha biztosan előfizettél vagy csomagot váltottál, akkor valószínű a hiba a mi oldalunkon van. Elnézést!" - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Próbaidő" +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Úgy tűnik, hogy még mindig a %s csomagban vagy. Ha biztosan előfizettél " +"vagy csomagot váltottál, akkor valószínű a hiba a mi oldalunkon van. " +"Elnézést!" -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "" -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Írj nekünk itt" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Az előfizetés sikeresen módosítva: %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "A licensz lejárt. A(z) %s ingyenes verziója továbbra is használható korlátlanul." +msgstr "" +"A licensz lejárt. A(z) %s ingyenes verziója továbbra is használható " +"korlátlanul." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "A licensz kikapcsolásra került. Ha úgy gondolod, hogy ez tévedés volt, kérlek írj az ügyfélszolgálatra!" +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"A licensz kikapcsolásra került. Ha úgy gondolod, hogy ez tévedés volt, " +"kérlek írj az ügyfélszolgálatra!" -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." msgstr "" -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "" -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Úgy tűnik, hogy a licensz nem aktiválható." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "A licensz sikeresen aktiválva." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Úgy tűnik, hogy a weboldalhoz nem tartozik aktív licensz." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Úgy tűnik a licensz kikapcsolása nem sikerült." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "A(z) %s licensz kikapcsolása sikerült." -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "Rendben" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "" + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "" -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +#: includes/class-freemius.php:22160 +msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22111 -msgid "Your %s free trial was successfully cancelled." +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "Minden rendben!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Új" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "" - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Minden rendben!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." msgstr "" -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Nagyszerű" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23065 msgid "" -"Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize " -"which languages & regions the plugin should be translated and tailored to." +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Köszönjük!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "" - -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Gratulálunk" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "A neved sikeresen frissítettük." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Kérlek add meg a teljes neved!" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "A neved sikeresen frissítettük." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "A(z) %s sikeresen frissítve." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Ez egy ügyfélnek készült weboldal? %s ha szeretnéd inkább elrejteni az admin felületről az érzékeny információkat, mint például email cím, licensz kulcs, árak, számlázási adatok és számlák." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"Ez egy ügyfélnek készült weboldal? %s ha szeretnéd inkább elrejteni az " +"admin felületről az érzékeny információkat, mint például email cím, licensz " +"kulcs, árak, számlázási adatok és számlák." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "Kattints ide" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "" -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Figyelem" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Üdv" - -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." msgstr "" -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Bankkártya megadása nem kötelező" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Ingyenes próbaidőszak indítása" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Bővebben" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, -#: templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Licensz aktiválása" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Licensz módosítása" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Leiratkozás" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Feliratkozás" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "A(z) %1$s fizetős verziója sikeresen telepítve. Kérlek aktiváld, hogy a(z) %2$s minden funkciója elérhető legyen. %3$s" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "%s funkciók aktiválása" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Leiratkozás" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Töltsd fel és aktiváld a letöltött verziót" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Hogyan kell feltölteni és aktiválni?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +"A(z) %1$s fizetős verziója sikeresen telepítve. Kérlek aktiváld, hogy a(z) " +"%2$s minden funkciója elérhető legyen. %3$s" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "%s funkciók aktiválása" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Az előfizetés sikeresen frissítve." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "Az előfizetés sikeresen aktiválva." -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "A prémium verzió már aktív." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "" - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "" -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Fizetős funkciók megtekintése" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" +#: includes/class-freemius.php:25882 +msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "" -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +#: includes/class-freemius.php:25902 +msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25816 -msgid "Thank you so much for using our products!" -msgstr "" +#: includes/class-freemius.php:25911 +msgid "Products" +msgstr "Termékek" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25836 -msgid "%s and its add-ons" +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25845 -msgid "Products" -msgstr "Termékek" +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Igen" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat." +msgstr "" +"kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és " +"ajánlatokat." -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "Nem" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "" -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "A licensz kulcs üres." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Licensz megújítása" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Licensz vásárlása" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "új Béta verzió" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "új verzió" @@ -882,608 +951,519 @@ msgstr "új verzió" msgid "Important Upgrade Notice:" msgstr "Fontos frissítési információ:" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Bővítmény telepítése: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." msgstr "" #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Vásárlás folytatása" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Vásárlás" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Frissítés telepítése most" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Ingyenes verzió telepítése most" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Telepítés most" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "A legfrissebb ingyenes verzió letöltése" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Legfrissebb verzió letöltése" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Frissítés telepítése most" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Kiegészítő bekapcsolása" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Ingyenes verzió aktiválása" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Aktiválás" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Leírás" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Telepítés" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "GYIK" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Képernyőfotók" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Változtatások" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Vélemények" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Egyéb megjegyzések" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Funkciók & Árak" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Bővítmény telepítése" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s csomag" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Legjobb" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Havi" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Éves" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Örök" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s számlázás" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Éves" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Egyszeri" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Egy weboldalas licensz" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Korlátlan licensz" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Weboldalak száma: %s" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "hó" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "év" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Ár" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "%s mentése" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Részletek" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Verzió" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Szerző" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Utolsó frissítés" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "A következő WordPress verzió szükséges:" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Kompatibilitás:" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Letöltések száma:" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org bővítmény oldal" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Bővítmény oldala" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Bővítmény támogatása" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Átlagos értékelés" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s értékelés" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s értékelés" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s csillag" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s csillag" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Közreműködők" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Figyelmeztetés" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Legfrissebb verzió telepítve" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Legfrissebb ingyenes verzió telepítve" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Előfizetés módosítása kisebbre" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Előfizetés törlése" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 msgid "" -"Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a " -"price increase, which typically occurs once a year, you will be charged the updated price." +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" msgstr "" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." msgstr "" +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "%s csomag aktiválása" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Hátralévő idő: %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Licensz szinkronizálása" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Próbaidő törlése" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Csomag módosítása" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Váltás nagyobb csomagra" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Váltás kisebb csomagra" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Ingyenes" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Csomag" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Ingyenes próbaidő" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Fiók információk" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Számlázás" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Licensz deaktiválása" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Biztosan ezt szeretnéd?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Előfizetés törlése" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Szinkronizálás" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Név" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Email" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Felhasználó ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, -#: templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Weboldal ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Nincs ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Publikus kulcs" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Titkos kulcs" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Nincs titkos kulcs" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Licensz kulcs" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Próbaidő" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Licensz kulcs" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Jelentkezz a Béta programba" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "nem ellenőrzött" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Lejárt" +#: templates/account.php:600 +msgid "Free version" +msgstr "Ingyenes verzió" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Prémium verzió" -#: templates/account.php:604 -msgid "Free version" -msgstr "Ingyenes verzió" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Lejárt" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Email ellenőrzése" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "%s verzió letöltése" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Fizetős verzió letöltése" - -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Mutasd" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Felhasználó módosítása" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Mi a te %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Szerkesztés" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "%s verzió letöltése" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Felhasználó módosítása" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "Fizetős verzió letöltése" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Weboldalak" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Keresés cím alapján" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Cím" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licensz" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Csomag" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licensz" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Elrejt" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Feldolgozás alatt" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "próbaidő" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "%s törlése..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "előfizetés" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "A licensz deaktiválása után a prémium funkciók használata nem elérhető, de így tudod másik weboldalon aktiválni ugyanezt a licenszt. Folytatod a deaktiválást?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"A licensz deaktiválása után a prémium funkciók használata nem elérhető, de " +"így tudod másik weboldalon aktiválni ugyanezt a licenszt. Folytatod a " +"deaktiválást?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1496,25 +1476,13 @@ msgid "Add Ons for %s" msgstr "" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Aktív" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Telepítve" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Mégsem" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "" @@ -1523,11 +1491,16 @@ msgid "Automatic Installation" msgstr "Automatikus telepítés" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." msgstr "" #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." msgstr "" #: templates/auto-installation.php:109 @@ -1542,174 +1515,166 @@ msgstr "Pénztár" msgid "PCI compliant" msgstr "PCI megfelelés" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Üdv %s!" - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Engedélyezés és folytatás" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Aktivációs email újraküldése" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Köszönjük %s!" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "Köszönjük, hogy a(z) %s szoftverünket választottad! Kérlek add meg a licensz kulcsod: " +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" -#: templates/connect.php:236 +#: templates/connect.php:227 msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s " -"more compatible with your site and better at doing what you need it to." +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" +"Köszönjük, hogy a(z) %s szoftverünket választottad! Kérlek add meg a " +"licensz kulcsod: " -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Aktivációs email újraküldése" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Köszönjük %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." msgstr "" -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." msgstr "" -#: templates/connect.php:287 -msgid "%s's paid features" +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." msgstr "" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:278 +msgid "%s's paid features" msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." msgstr "" -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Licensz kulcs" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Nem találod a licensz kulcsod?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Ugrás" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "Licensszel kapcsolatos problémák?" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Nincs még licensz kulcsod?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Van licensz kulcsod?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Nincs még licensz kulcsod?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "A licenszkezelést és szoftver frissítést a Freemius biztosítja" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Adatkezelési tájékoztató" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "Licensz szerződés" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Szolgáltatási feltételek" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Email küldése" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Aktiválás" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Licensz szerződés" #: templates/contact.php:78 msgid "Contact" msgstr "Kapcsolat" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Ki" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Be" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Hibakeresés" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Események" @@ -1757,11 +1722,6 @@ msgstr "Kulcs" msgid "Value" msgstr "Érték" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK verziók" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK útvonal" @@ -1782,7 +1742,8 @@ msgstr "Bővítmények" msgid "Themes" msgstr "Sablonok" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Közvetlen hivatkozás" @@ -1790,11 +1751,6 @@ msgstr "Közvetlen hivatkozás" msgid "Title" msgstr "Cím" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "" @@ -1807,21 +1763,6 @@ msgstr "" msgid "Network User" msgstr "" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Kapcsolódva" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blokkolva" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" @@ -1831,14 +1772,10 @@ msgid "Simulate Network Upgrade" msgstr "" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Weboldalak" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1847,11 +1784,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "Licensz ID" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Törlés" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "" @@ -1888,15 +1820,11 @@ msgstr "Sikeres aktiválás" msgid "Blocking" msgstr "Blokkolás" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Típus" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Lejárat" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Hibakeresési napló" @@ -1909,11 +1837,13 @@ msgstr "Minden típus" msgid "All Requests" msgstr "Minden kérés" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Fájl" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Funkció" @@ -1925,7 +1855,8 @@ msgstr "Művelet ID" msgid "Logger" msgstr "" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Üzenet" @@ -1942,18 +1873,15 @@ msgid "Timestamp" msgstr "Időbélyeg" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Ügyfélszolgálat" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1970,16 +1898,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1991,7 +1925,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -2007,10 +1943,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licensz" @@ -2042,11 +1981,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Termékek" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2056,12 +1990,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2069,7 +2001,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2085,9 +2019,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s " -"should be translated and tailored to." +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2095,6 +2032,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2102,8 +2040,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2111,6 +2052,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2122,7 +2064,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "választható" @@ -2131,7 +2074,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2143,7 +2090,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2155,7 +2104,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2166,11 +2118,6 @@ msgstr "Hírlevél" msgid "Updates, announcements, marketing, no spam" msgstr "Frissítések, közlemények, marketing, de semmi SPAM!" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Frissítés" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Számlázás" @@ -2183,7 +2130,8 @@ msgstr "Cégnév" msgid "Tax / VAT ID" msgstr "Közösségi adószám" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Cím %d" @@ -2231,16 +2179,6 @@ msgstr "Mennyiség" msgid "Invoice" msgstr "Számla" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Leiratkozás" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Feliratkozás" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2257,11 +2195,6 @@ msgstr "Kód" msgid "Length" msgstr "Hossz" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Útvonal" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2282,21 +2215,18 @@ msgstr "" msgid "Log" msgstr "" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Bővítmények és sablonok szinkronizálása" @@ -2305,7 +2235,8 @@ msgstr "Bővítmények és sablonok szinkronizálása" msgid "Total" msgstr "Összesen" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Utolsó" @@ -2329,145 +2260,164 @@ msgstr "" msgid "Next" msgstr "Következő" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Jelentkezés ajánló partnernek" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." msgstr "" -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." msgstr "" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "" -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." msgstr "" -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." msgstr "" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" msgstr "" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "" -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." msgstr "" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Email cím" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Teljes név" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal fiók email címe" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." msgstr "" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Másik domain hozzáadása" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "További domainek" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Weboldal, email és közösségi média statisztikák (opcionális)" -#: templates/forms/affiliation.php:214 +#: templates/forms/affiliation.php:219 msgid "" -"Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information " -"confidential)." +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." msgstr "" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." msgstr "" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Mégsem" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "" @@ -2476,7 +2426,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2491,11 +2444,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Mégsem" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2528,12 +2476,15 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Frissítés" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:" #: templates/forms/license-activation.php:28 @@ -2541,17 +2492,24 @@ msgid "Update License" msgstr "Licensz frissítése" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Licensz elfogadása és aktiválása" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2572,10 +2530,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "A(z) %s új verziója érhető el." @@ -2588,41 +2542,54 @@ msgstr "" msgid "New Version Available" msgstr "Új verzió érhető el" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Mégsem" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Licensz kulcs küldése" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Add meg az email címet, amit a vásárlás során használtál és újraküldjük a licensz kulcsot." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Add meg az email címet, amit a vásárlás során használtál és újraküldjük a " +"licensz kulcsot." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "A(z) %s deaktiválása vagy törlése automatikusan törli az oldalhoz tartozó licenszed is, amit így másik weboldalon tudsz újra aktiválni." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"A(z) %s deaktiválása vagy törlése automatikusan törli az oldalhoz tartozó " +"licenszed is, amit így másik weboldalon tudsz újra aktiválni." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2633,18 +2600,25 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." msgstr "" #: templates/forms/trial-start.php:28 +#. translators: %s: Link to freemius.com msgid "" -"For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to " -"%s to check for version updates and to validate your trial." +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." msgstr "" #: templates/forms/user-change.php:26 @@ -2671,14 +2645,6 @@ msgstr "Prémium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Licensz aktiválása a hálózat minden aloldalán." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Licensz aktiválása a hálózat minden függő aloldalán." @@ -2687,19 +2653,31 @@ msgstr "Licensz aktiválása a hálózat minden függő aloldalán." msgid "Apply on all pending sites." msgstr "" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Licensz aktiválása a hálózat minden aloldalán." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "ugrás" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "" @@ -2711,39 +2689,37 @@ msgstr "Korlátlan frissítés" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +#: templates/account/partials/addon.php:200 +msgid "No expiration" msgstr "" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "Törölve" -#: templates/account/partials/addon.php:200 -msgid "No expiration" +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." msgstr "" #: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" - -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2786,7 +2762,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2839,5 +2816,455 @@ msgid "Click here to use the plugin anonymously" msgstr "Kattints ide, ha névtelenül szeretnéd használni a bővítményt" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Juhuuu" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "" + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "" + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Hoppá" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "Üdv" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Fantasztikus" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "\"%s\" aktiválásának a befejezése most" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Árak" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Ár" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Próbaidő" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Gratulálunk" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Figyelem" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Ingyenes próbaidőszak indítása" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Vásárlás" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Váltás nagyobb csomagra" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Váltás kisebb csomagra" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Szerkesztés" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Mutasd" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Elrejt" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Ugrás" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Törlés" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Frissítés" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Leiratkozás" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Feliratkozás" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "A legfrissebb ingyenes verzió letöltése" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Legfrissebb verzió letöltése" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Leírás" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Telepítés" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "GYIK" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Változtatások" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Vélemények" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Egyéb megjegyzések" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Funkciók & Árak" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s csomag" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Legjobb" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Havi" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Éves" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Éves" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Egyszeri" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s számlázás" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "hó" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "év" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Verzió" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Szerző" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Licensz szinkronizálása" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Csomag" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Szinkronizálás" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Nincs titkos kulcs" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licensz" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Aktív" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Telepítve" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Mégsem" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Üdv %s!" + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Email küldése" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Aktiválás" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Ki" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Be" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Hibakeresés" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK verziók" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Kapcsolódva" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Blokkolva" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Weboldalak" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Lejárat" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Termékek" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Útvonal" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Mégsem" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Mégsem" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" msgstr "" diff --git a/languages/freemius-it_IT.mo b/languages/freemius-it_IT.mo index 66469075a6e3bf522002f346610846ff038ddb4f..a28862de3b1b23528982036ec0977404f41a8ba9 100644 GIT binary patch delta 12026 zcmajk33OCNzQ^$kfk4=o5O#7|LRgXrghlp!6A&~YplnU2lU(R@hfXK#G&2Z-hzbD) z#Ssxu1Vkj_!XTo8fU>)wgP`a*zL^mfM|o}|@B2%Y^VIX^JdejuRo#25{`IdV0lzvM zcj`!7>{6Wy>m2?mDDOB;@S(b@QBM6|`%`R6{ZX8XAuQjR%xmj7 zDR=;@;z!ocF`oMOSjTZ4fo-3=z9Or^<_!#@~;4@@QCq3P9hT%jcQs+?|jr(v0 zR?KjmjaYzjSnUSKX@<2>0pEZca5UD$@wT3e3LuPC8Q+;hp%&hWiMS5y;SSq=2wPJ> zi;V4ji+Znh2Q$;2ScCdtRQp&|z#eMm3s8Y9!7jMc)?db0O&X3))8dr!=&{ zxXxx1wnp}mGZ6XK31V~Hgg$&3wL~qM4lz2Tu{JJ7?U6O8j68vw`SVy84`Bs-%eKGQ zh5Rd$%QR?BzP1nkWnZkwj?~PmpfXb%t7B8tfbDI2ZyZd0IO-JLhx%?8YT!~_gGW)D z^7d|~JrJ{nxmb+{t57L^5H-+NRI2x)GW9A>#1Bw2?0%zpJ`5G$L~8℘@RUo`((a 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 OIMWK0u0K1e{{H}oj-3Yp delta 13608 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 e%$@mZG54G&M~mfLIeI, 2016 # Daniele Scasciafratte Mte90 , 2015-2019,2022 # Dario Curvino , 2018,2020 +# Diego , 2023 # Tropicalista , 2019 # Leo Fajardo , 2022 # Alessandro Pelly Benassi , 2016-2017 @@ -12,869 +13,1024 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2022\n" -"Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n" -"Language: it_IT\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Diego , 2023\n" +"Language-Team: Italian (Italy) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " +"1 : 2;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;" -"fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Un aggiornamento per la versione Beta sostituirà la versione installata di %scon l'ultima versione Beta, utilizzare con attenzione e non su siti in produzione. Sei stato avvisato!" +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Un aggiornamento per la versione Beta sostituirà la versione installata di " +"%scon l'ultima versione Beta, utilizzare con attenzione e non su siti in " +"produzione. Sei stato avvisato!" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Vuoi procedere con l'aggiornamento?" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"L'SDK di Freemius non è riuscito a trovare il file principale del plugin. " +"Per favore contatta sdk@freemius.com riportando l'errore." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Errore" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Ho trovato un migliore %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Qual è il nome di %s?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema." -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Disattivazione" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Cambio tema" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Altro" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Non ho più bisogno di %s" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Ho avuto bisogno di %s per un breve periodo" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s ha rotto il mio sito" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s ha improvvisamente smesso di funzionare" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Non posso piú pagarlo" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Che prezzo ritieni opportuno pagare?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Non voglio condividere i miei dati con te" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s non funziona" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Non capisco come farlo funzionare" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Quale funzionalitá?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s non funziona" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..." +msgstr "" +"Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli " +"utenti futuri..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Non é quello che stavo cercando" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Che cosa stai cercando?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s non ha funzionato come mi aspettavo" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Che cosa ti aspettavi?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Debug Freemius" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Hai la licenza %s." -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr "Il %s %slink per scaricare%s, la licenza e le istruzioni d'installazione sono state inviate a %s. Se non trovi l'email entro 5 minuti cerca nella cartella dello spam." - -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Evvai" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s non può funzionare senza %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s non può funzionare senza il plugin." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, -#: includes/class-freemius.php21955, includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Ops" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" +"Il %s %slink per scaricare%s, la licenza e le istruzioni d'installazione " +"sono state inviate a %s. Se non trovi l'email entro 5 minuti cerca nella " +"cartella dello spam." -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "La versione 1%s Permium è stata attivata con successo." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Forte" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Hai la licenza %s." -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "La versione 1%s Permium è stata attivata con successo." + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"Il periodo di prova gratuito %s è stato annullato con successo. Siccome " +"l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo " +"in futuro, dovrai comprare una licenza." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s è un add-on premium. Devi comprare una licenza prima di poter attivare " +"il plugin." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Ulteriori informazioni su %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Acquista licenza" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "Inizia il periodo di prova gratuito" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" -msgstr "" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "%s per attivare la licenza dopo averla ricevuta." -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." -msgstr "" +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "Grazie per avere installato l'aggiornamento." -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "Inizia il periodo di prova gratuito" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." -msgstr "" +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "Grazie!" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Sei a un passo dalla fine - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Completa l'attivazione di \"%s\" ora" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Abbiamo fatto alcune migliore a %s,%s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Abilita \"%s\" per renderlo migliore!" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "L'aggiornamento di %s è stato completato con successo." -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "Un errore sconosciuto è avvenuto mentre si passava alla licenza in modalità whitelabel." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" +"Un errore sconosciuto è avvenuto mentre si passava alla licenza in modalità " +"whitelabel." -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "La tua licenza%s è stata segnata come white label per nascondere informazioni sensibili dalla bacheca di WP (es: la tua email, licenza, prezzi e indirizzi). Se vuoi tornare indietro puoi farlo semplicemente tramite%s. Se è stato un errore guarda anche %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" +"La tua licenza%s è stata segnata come white label per nascondere " +"informazioni sensibili dalla bacheca di WP (es: la tua email, licenza, " +"prezzi e indirizzi). Se vuoi tornare indietro puoi farlo semplicemente " +"tramite%s. Se è stato un errore guarda anche %s." -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Bacheca Utente" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "torna indietro" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "Un errore sconosciuto è avvenuto durante l'attivazione della modalità beta." -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "Nuovo utente ID o indirizzo email non valido." -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. " +"Un altro utente con lo stesso indirizzo email è già registrato." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante " +"Cambia proprietario." -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Cambia Proprietario" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "Raccolta dati siti non valida." -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Non siamo riusciti a trovare alcuna licenza attiva associata al tuo " +"indirizzo email, sei sicuro che sia l'indirizzo giusto?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro " +"che sia l'indirizzo giusto?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Compra una licenza ora" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Rinnova la tua licenza ora" -#: includes/class-freemius.php:14886 -msgid "%s to access version %s security & feature updates, and support." -msgstr "%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove funzionalità e supporto." +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Compra una licenza ora" -#: includes/class-freemius.php:17621 -msgid "%s opt-in was successfully completed." +#: includes/class-freemius.php:14998 +msgid "%s to access version %s security & feature updates, and support." msgstr "" +"%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove " +"funzionalità e supporto." -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Il tuo account è stato attivato correttamente con il piano %s." +#: includes/class-freemius.php:17670 +msgid "%s opt-in was successfully completed." +msgstr "%s l'iscrizione è stata completata con successo." -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "La versione di prova è stata avviata correttamente." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "Il tuo account è stato attivato correttamente con il piano %s." + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Non é stato possibile attivare %s." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Contattaci con il seguente messaggio:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Un errore sconosciuto è avvenuto." -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Aggiornamento" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Inizia il periodo di prova gratuito" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Prezzi" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "Inizia il periodo di prova gratuito" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Affiliazione" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Account" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19114, includes/class-freemius.php19116, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contattaci" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Addon" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Prezzi" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum di supporto" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Sì" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "sembra che la chiave che hai inserito non risulti nei nostri registri." -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "La modalità Debug è stata attivata con successo e sarà disattivata automaticamente in 60 minuti. Puoi disattivarla prima cliccando sul link \"Ferma Debug\"." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" +"La modalità Debug è stata attivata con successo e sarà disattivata " +"automaticamente in 60 minuti. Puoi disattivarla prima cliccando sul link " +"\"Ferma Debug\"." -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Il piano del tuo add-on %s è stato aggiornato con successo." -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "L' add-on %s è stato acquistato con successo." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Scarica l'ultima versione" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova." +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la " +"tua chiave pubblica, Secret Key & User ID e riprova." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Errore ricevuto dal server:" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Uhm" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Prova gratuita" +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o " +"cambiato il piano, è probabile che ci sia un problema nei nostri sistemi." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, " +"il piano rimane %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Contattaci qui" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Il piano è stato cambiato con successo a %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre." +msgstr "" +"La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s " +"per sempre." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare " +"%3$s senza interruzioni." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto." +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"La tua licenza è stata cancellata. Se credi sia un errore, per favore " +"contatta il supporto." -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le " +"funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare " +"a ricevere gli aggiornamenti ed il supporto." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte " +"le funzionalità gratuite." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad " +"usare %3$s senza interruzioni." -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" -msgstr "" +msgstr "Mostra i dettagli dell'errore." -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Sembra che la licenza non possa essere attivata." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "La tua licenza è stata attivata correttamente." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Sembra che la disattivazione della licenza non sia riuscita." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "La tua licenza%s è stata disattivata con successo." -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Sembra che stai avendo dei problemi temporanei con la cancellazione della sottoscrizione. Prova nuovamente tra pochi minuti." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Sembra che stai avendo dei problemi temporanei con la cancellazione della " +"sottoscrizione. Prova nuovamente tra pochi minuti." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "La tua sottoscrizione è stata cancellata con successo. La licenza del piano %sscadrà in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"La tua sottoscrizione è stata cancellata con successo. La licenza del piano " +"%sscadrà in %s." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Stai già usando %s in modalità prova." -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "Hai già utilizzato una prova gratuita in passato." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "Nessuno dei piani di %ssupporta il periodo di prova." + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova." +msgstr "" +"Il piano %s non esiste, per questo motivo non è possibile iniziare il " +"periodo di prova." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "Il piano %s non supporta il periodo di prova." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Nessuno dei piani di %ssupporta il periodo di prova." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente " +"che tu debba annullare :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto." +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di " +"prova. Riprova tra qualche minuto." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "Sembra che tu abbia la versione più recente." + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "Sei fantastico!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "La versione %s é stata rilasciata." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Scarica %s." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "l'ultima versione %s é quì" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Nuovo" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Sembra che tu abbia la versione più recente." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Sei fantastico!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora " +"arrivata, per favore controlla nella tua casella di posta indesiderata." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "Sito accettato con successo." -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Fantastico" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "" +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "Le informazioni diagnostiche non saranno più inviate da %s a %s." -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23065 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" +"Condividere informazioni diagnostiche con %s aiuta a fornire funzionalità " +"mirate al vostro sito web. La condivisione dei dati permette, inoltre, di " +"evitare errori di incompatibilità relative a versioni di WordPress o PHP, e " +"di determinare in quali lingue, e per quali regioni, il plugin necessita di " +"traduzioni e miglioramenti." + +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Grazie!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" +"Una email di conferma è stata inviata a %s. Puoi confermare l'aggiornamento " +"nelle prossime 4 ore. Se non puoi trovare l'email verifica la tua cartella " +"dello spam." -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "Un email di conferma è stata inviata a %s. Il proprietario dell'email deve confermare l'aggiornamento nelle prossime 4 ore." - -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "Una email di conferma è stata inviata a %s. Puoi confermare l'aggiornamento nelle prossime 4 ore. Se non puoi trovare l'email verifica la tua cartella dello spam." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" +"Un email di conferma è stata inviata a %s. Il proprietario dell'email deve " +"confermare l'aggiornamento nelle prossime 4 ore." -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Grazie per aver confermato il cambiamento del proprietario. Un' email è " +"stata appena inviata a %s per la conferma finale." -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s è il nuovo proprietario dell'account." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Congratulazioni" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "Il tuo nome è stato aggiornato correttamente." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Per favore inserisci il tuo nome completo." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Il tuo nome è stato aggiornato correttamente." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Hai aggiornato con successo il tuo %s." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Si tratta di un sito di un cliente?%sse vuoi puoi nascondere informazioni sensibili come la tua email, licenza, prezzi e indirizzi dalla tua bacheca di WP." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"Si tratta di un sito di un cliente?%sse vuoi puoi nascondere informazioni " +"sensibili come la tua email, licenza, prezzi e indirizzi dalla tua bacheca " +"di WP." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "Clicca qui" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" -msgstr "" +msgstr "Pacchetto" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno." -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Attenzione" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" - -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Come sta andando con %s? Prova tutte le funzionalità premium di %s con una " +"prova gratuita di %d giorni." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Nessuna carta di credito richiesta" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Inizia il periodo di prova gratuito" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi " +"diventare un nostro ambasciatore e guadagnare denaro!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Scopri altro" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Attiva licenza" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambia licenza" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Cancella iscrizione" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Iscriviti" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "La versione a pagamento di %1$sè già installata. Attiva questione versione per iniziare ad usare le funzionalità di %2$s.%3$s" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "Attiva le funzionalità di %s" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Cancella iscrizione" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Segui i passi seguenti per completare l'aggiornamento" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Scarica l'ultima versione di %s" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Carica e attiva la versione scaricata" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Come faccio a caricare ed attivare?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +"La versione a pagamento di %1$sè già installata. Attiva questione versione " +"per iniziare ad usare le funzionalità di %2$s.%3$s" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "Attiva le funzionalità di %s" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Il piano è stato aggiornato con successo." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "Il tuo piano è stato attivato con successo." -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza." -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." -msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso." +msgstr "" +"L'installazione automatica funziona solo per gli utenti che hanno dato il " +"consenso." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "ID modulo non valida." -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Versione Premium dell'add-on già installata." + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Versione Premium già attiva." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "Non disponi di una licenza valida per accedere alla versione Premium." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium." - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "Versione Premium dell'add-on già installata." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Il plugin è un \"Serviceware\", quindi non dispone di una versione del " +"codice Premium." -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Vedi funzionalità a pagamento" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Grazie per utilizzare %se i suoi addon!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "Grazie per utilizzare %s!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "Grazie per utilizzare i nostri prodotti!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%se i suoi addon" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Prodotti" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Grazie per utilizzare %se i suoi addon!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "Grazie per utilizzare %s!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s." + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte." +msgstr "" +"inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e " +"offerte." -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti " +"formativi e offerte." -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "Causa la %sDirettiva per la protezione dei Dati Europea (GDPR)%sabbiamo adeguato i requisiti che fornisci per il consenso, confermando che accetti di lasciare i dati." +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" +"Causa la %sDirettiva per la protezione dei Dati Europea (GDPR)%sabbiamo " +"adeguato i requisiti che fornisci per il consenso, confermando che accetti " +"di lasciare i dati." -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:" +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di " +"funzionalità, contenuti formativi e offerte occasionali:" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "La chiave licenza è vuota." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Rinnova licenza" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Compra la licenza" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "C'è un %sdi %s disponibile." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "nuova versione Beta" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nuova versione" @@ -882,605 +1038,534 @@ msgstr "nuova versione" msgid "Important Upgrade Notice:" msgstr "Avviso Importante di aggiornamento:" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installazione plugin: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Il pacchetto remoto del plugin non contiene una cartella con lo slug " +"desiderato e la rinominazione non ha funzionato." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Continua a comprare" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Acquisto" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Inizia la mia %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installa l'ultima versione gratuita" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installa l'aggiornamento ora" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installa la versione gratuita ora" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installa ora" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Scarica l'ultima versione gratuita" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installa l'ultima versione gratuita" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Scarica l'ultima versione" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installa l'aggiornamento ora" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Attivare questo addon" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Attiva versione gratuita" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Attiva" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Descrizione" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installazione" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Screenshot" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Recensioni" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Altre note" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Caratteristiche & prezzi" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Installazione del plugin" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "Piano %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Migliore" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Mensilmente" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Annuale" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Tutta la vita" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Fatturato %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Annualmente" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Una volta" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licenza per sito singolo" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Licenze illimitate" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Fino a %s siti" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mese" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "anno" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Prezzo" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Risparmia %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Nessun impegno con %s - cancella quando vuoi" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Dopo il tuo %s gratuito, paghi solamente %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Dettagli" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Versione" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autore" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Ultimo aggiornamento" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s fa" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Richiede la versione di WordPress" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s o superiore" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatibile fino a" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "" +msgstr "Versione PHP richiesta" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Scaricato" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s volta" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s volte" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Pagina dei plugin di WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Homepage del plugin" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Fai una donazione a questo plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Valutazione media" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "basato su %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s valutazione" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s valutazioni" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s stella" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s stelle" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Contributori" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "" +msgstr "Questo plugin richiede una versione di PHP più recente." -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Avviso" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Questo plugin non è stato segnato come compatibile con la tua versione di " +"WordPress." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Questo plugin non è stato testato con la versione corrente di WordPress." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Versione più recente (%s) installata" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Nuova versione gratuita (%s) installata" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Versione più recente installata" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Ultima versione gratuita installata" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Versione più recente (%s) installata" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Nuova versione gratuita (%s) installata" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Torna al piano precedente" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Cancella la sottoscrizione" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$sfermerà tutti i pagamenti ricorrenti futuri e il tuo piano %2$sche scadrà in %3$s." - -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Si prega di notare che non saremo in grado di garantire lo stesso prezzo per rinnovi/sottoscrizioni dopo la cancellazione. Se scegli di rinnovare l'abbonamento manualmente in futuro, dopo un aumento del prezzo, che di solito avviene una volta l'anno, ti verrà addebitato il nuovo prezzo." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1$sfermerà tutti i pagamenti ricorrenti futuri e il tuo piano %2$sche " +"scadrà in %3$s." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Si prega di notare che non saremo in grado di garantire lo stesso prezzo " +"per rinnovi/sottoscrizioni dopo la cancellazione. Se scegli di rinnovare " +"l'abbonamento manualmente in futuro, dopo un aumento del prezzo, che di " +"solito avviene una volta l'anno, ti verrà addebitato il nuovo prezzo." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Cancellando il periodo di prova gratuito bloccherai immediatamente " +"l'accesso a tutte le funzionalità premium. Vuoi continuare?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Puoi continuare ad utilizzare le funzionalità%sma non avrai accesso agli aggiornamenti di sicurezza, nuove funzionalità o supporto." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Puoi continuare ad utilizzare le funzionalità%sma non avrai accesso agli " +"aggiornamenti di sicurezza, nuove funzionalità o supporto." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Quando la tua licenza scadrà, potrai comunque continuare a usare la " +"versione gratuita, ma NON avrai accesso alle funzionalità %s." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Attivare il piano %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Rinnovo automatico in %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Scade in %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sincronizza la licenza" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Annulla prova gratuita" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Cambia piano" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Aggiornamento" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratuito" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Piano" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "Piano Bundle" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Prova gratuita" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Dettagli dell'account" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Avvia Debug" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Ferma Debug" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Avvia Debug" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Ricevute e Fatture" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Disattiva licenza" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Sei sicuro di voler procedere?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Annulla sottoscrizione" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sincronizza" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Nome" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Email" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "ID utente" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "ID del sito" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Nessun ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Chiave pubblica" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Chiave segreta" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Nessuna chiave" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Chiave della licenza" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Prova gratuita" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Chiave della licenza" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Entra nel programma Beta" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "non verificato" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Scaduto" +#: templates/account.php:600 +msgid "Free version" +msgstr "Versione gratuita" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Versione premium" -#: templates/account.php:604 -msgid "Free version" -msgstr "Versione gratuita" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Scaduto" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verifica email" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Scarica la versione %s" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Scarica la versione a pagamento" - -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Mostra" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Cambia utente" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Qual è il tuo %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Modifica" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Scarica la versione %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Cambia utente" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "Scarica la versione a pagamento" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Siti" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Cerca per indirizzo" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Indirizzo" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licenza" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Piano" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licenza" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Nascondi" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Elaborazione" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "Ottieni gli aggiornamenti per le nuove versioni Beta di %s." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Cancellazione di %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "prova" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Cancellazione %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "sottoscrizione" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai " +"attivare la licenza su un altro sito. Sei sicuro di voler continuare?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "Disabilita la modalità white label" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "Abilita la modalità white label" @@ -1493,39 +1578,40 @@ msgid "Add Ons for %s" msgstr "Add-on per %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Non possiamo caricare la lista degli addon. Probabilmente è un nostro problema, prova di nuovo fra qualche minuto." +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" +"Non possiamo caricare la lista degli addon. Probabilmente è un nostro " +"problema, prova di nuovo fra qualche minuto." -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Attiva" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installato" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Chiudi" - -#: templates/auto-installation.php:45 -msgid "%s sec" -msgstr "%s sec" +#: templates/auto-installation.php:45 +#. translators: %s: Number of seconds +msgid "%s sec" +msgstr "%s sec" #: templates/auto-installation.php:83 msgid "Automatic Installation" msgstr "Installazione automatica" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "Un download con installazione automatica di %s (versione a pagamento) da %s inizierà in %s. Se preferisci farlo manualmente, fai clic sul pulsante per annullare." +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"Un download con installazione automatica di %s (versione a pagamento) da %s " +"inizierà in %s. Se preferisci farlo manualmente, fai clic sul pulsante per " +"annullare." #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minuti per completarsi. Attendi finchè non ha finito, assicurandoti di non ricaricare questa pagina." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"Il processo d'installazione è iniziato e potrebbe impiegare alcuni minuti " +"per completarsi. Attendi finchè non ha finito, assicurandoti di non " +"ricaricare questa pagina." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1539,172 +1625,174 @@ msgstr "Cassa" msgid "PCI compliant" msgstr "PCI compliant" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Grazie per avere installato l'aggiornamento %1$s v%2$s." -#: templates/connect.php:187 +#: templates/connect.php:178 msgid "Never miss an important update" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" - -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Consenti & Continua" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Invia nuovamente l'email di attivazione" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Grazie %s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:225 +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "Benvenuto nel %s! Per iniziare inserisci la tua licenza:" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Invia nuovamente l'email di attivazione" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "" +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Grazie %s!" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:271 +msgid "We're excited to introduce the Freemius network-level integration." msgstr "" +"Siamo felici di presentarvi il supporto al sistema multi network di " +"Freemius." -#: templates/connect.php:280 -msgid "We're excited to introduce the Freemius network-level integration." -msgstr "Siamo felici di presentarvi il supporto al sistema multi network di Freemius." +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del " +"network che sono in attesa di un tuo controllo." -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono " +"in attesa della attivazione della licenza." -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione." +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai " +"clic sul pulsante di attivazione." -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "Funzionalità a pagamento di %s" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente nella tua pagina di attivazione network di %s." - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"In caso puoi saltare per adesso e attivare la licenza successivamente nella " +"tua pagina di attivazione network di %s." -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Chiave di licenza" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Non trovi la tua chiave di licenza?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Salta" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Delega ai proprietari del sito" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "Se fai clic questa decisione sarà delegata agli amministratori del sito." -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "Problemi di licenza?" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Non hai una chiave di licenza?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Hai una chiave di licenza?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Non hai una chiave di licenza?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius è il nostro servizio di licenze e aggiornamenti" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Politica sulla privacy" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "License Agreement" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Termini del Servizio" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Invio email" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Attivazione" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "License Agreement" #: templates/contact.php:78 msgid "Contact" msgstr "Contatti" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Non attivo" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Attivo" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Azioni" @@ -1752,11 +1840,6 @@ msgstr "Chiave" msgid "Value" msgstr "Valore" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Versioni SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Percorso SDK" @@ -1777,7 +1860,8 @@ msgstr "Plugin" msgid "Themes" msgstr "Temi" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1785,11 +1869,6 @@ msgstr "Slug" msgid "Title" msgstr "Titolo" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Stato di Freemius" @@ -1802,21 +1881,6 @@ msgstr "Network Blog" msgid "Network User" msgstr "Utente Network" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Connesso" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Bloccato" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simula la prova Trial" @@ -1826,14 +1890,10 @@ msgid "Simulate Network Upgrade" msgstr "Simula aggiornamento network" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installazioni" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Siti" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1842,11 +1902,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "License ID" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Elimina" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Addon del modulo %s" @@ -1883,15 +1938,11 @@ msgstr "Attivato" msgid "Blocking" msgstr "Bloccato" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Tipo" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Scadenza" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1904,11 +1955,13 @@ msgstr "Tutti i tipi" msgid "All Requests" msgstr "Tutte le richieste" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "File" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Funzione" @@ -1920,7 +1973,8 @@ msgstr "ID processo" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Messaggio" @@ -1937,18 +1991,15 @@ msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Pagina sicura su protocollo HTTPS %s eseguita su dominio esterno" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Supporto" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1965,17 +2016,29 @@ msgstr "Azione di risoluzione del clone fallita." msgid "products" msgstr "prodotti" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s è entrato in modalità sicurezza perché è stato rilevato che %2$s è una copia esatta di %3$s./" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "Il prodotto sottostante è stato messo in modalità sicurezza perchè abbiamo notato che %2$s è una copia esatta di %3$s: %1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" +"Il prodotto sottostante è stato messo in modalità sicurezza perchè abbiamo " +"notato che %2$s è una copia esatta di %3$s: %1$s" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "Il prodotto sottostante è stato messo in modalità sicurezza perchè abbiamo notato che %2$s è una copia esatta di questi siti %3$s: %1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" +"Il prodotto sottostante è stato messo in modalità sicurezza perchè abbiamo " +"notato che %2$s è una copia esatta di questi siti %3$s: %1$s" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" +"%1$s è entrato in modalità sicurezza perché è stato rilevato che %2$s è una " +"copia esatta di %3$s./" #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" @@ -1986,7 +2049,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "%2$s è un duplicato di %4$s?" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "Si, %2$s è un duplicato di %4$s per il motivo di test, staging o sviluppo." #: includes/managers/class-fs-clone-manager.php:1257 @@ -2002,10 +2067,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "%2$s è la nuova home di %4$s?" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licenza" @@ -2037,11 +2105,6 @@ msgstr "Richiede la attivazione della licenza." msgid "New Website" msgstr "Nuovo sito" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Prodotti" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "Hai segnato questo sito, %s, come duplicato temporaneo di %s." @@ -2051,21 +2114,26 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "Hai marchiato questo sito, %s, come duplicato temporaneo di questi siti" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s con aggiornamenti automatici di sicurezza e funzionalità con le funzionalità a pagamento manterrà il funzionamento senza interruzioni fino a %s (o quando la licenza scade, oppure quello che avviene prima)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "Il %s" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" +"%s con aggiornamenti automatici di sicurezza e funzionalità con le " +"funzionalità a pagamento manterrà il funzionamento senza interruzioni fino " +"a %s (o quando la licenza scade, oppure quello che avviene prima)." #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" msgstr "I prodotti seguenti" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "Se questo è un duplicato a lungo termine per mantenere gli aggiornamenti automatico e funzionalità a pagamento dopo %s, verifica %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "" +"Se questo è un duplicato a lungo termine per mantenere gli aggiornamenti " +"automatico e funzionalità a pagamento dopo %s, verifica %s." #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" @@ -2080,7 +2148,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2088,6 +2161,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2095,8 +2169,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2104,6 +2181,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2115,7 +2193,8 @@ msgstr "Puoi riutilizzare la licenza quando %s non è piu attivo." msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "opzionale" @@ -2124,7 +2203,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2136,7 +2219,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2148,7 +2233,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2159,11 +2247,6 @@ msgstr "Newsletter" msgid "Updates, announcements, marketing, no spam" msgstr "Aggiornamenti, annunci, marketing, no spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Aggiorna" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Fatturazione" @@ -2176,7 +2259,8 @@ msgstr "Nome della compagnia" msgid "Tax / VAT ID" msgstr "Numero Partita Iva o VAT" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Riga indirizzo %d" @@ -2224,16 +2308,6 @@ msgstr "Importo" msgid "Invoice" msgstr "Fattura" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Cancella iscrizione" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Iscriviti" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2250,11 +2324,6 @@ msgstr "Codice" msgid "Length" msgstr "Lunghezza" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Percorso" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2275,21 +2344,18 @@ msgstr "Fine" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "In %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s fa" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Sincronizzazione plugin e temi" @@ -2298,7 +2364,8 @@ msgstr "Sincronizzazione plugin e temi" msgid "Total" msgstr "Totale" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Ultimo" @@ -2322,143 +2389,186 @@ msgstr "Tipo di Cron" msgid "Next" msgstr "Successivo" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Non in scadenza" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Applica per diventare un affiliato" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "La tua applicazione di affiliazione per %s è stata accettata! Accedi alla tua area di affiliazione a %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"A causa della violazione dei nostri termini di affiliazione abbiamo deciso " +"di bloccare temporaneamente il tuo account affiliativo. Se hai domande " +"contatta il supporto." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "Grazie per la partecipazione al nostro programma di affiliazione, valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo per maggiori informazioni." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"Grazie per la partecipazione al nostro programma di affiliazione, " +"sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova " +"nuovamente fra 30 giorni." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Il tuo account di affiliazione è stato sospeso temporaneamente." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "Grazie per la partecipazione al nostro programma di affiliazione, sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova nuovamente fra 30 giorni." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"Grazie per la partecipazione al nostro programma di affiliazione, " +"valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo " +"per maggiori informazioni." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "A causa della violazione dei nostri termini di affiliazione abbiamo deciso di bloccare temporaneamente il tuo account affiliativo. Se hai domande contatta il supporto." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"La tua applicazione di affiliazione per %s è stata accettata! Accedi alla " +"tua area di affiliazione a %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Ti piace %s? Diventa il nostro ambasciatore e guadagna denaro ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni " +"vendita avvenuta!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Sommario programma" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%scommissione quando un utente acquista una nuova lcienza." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Ottieni delle commissioni dal sistema automatizzato di rinnovo." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s cookie di tracciamento dopo che la prima visita per massimizzare i margini di guadagno. " +msgstr "" +"%s cookie di tracciamento dopo che la prima visita per massimizzare i " +"margini di guadagno. " -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Commissioni illimitate." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s quantità minima per il pagamento." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "I pagamenti sono in Dollari Americani e processati mensilmente da PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se sono più vecchie di 30 giorni." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se " +"sono più vecchie di 30 giorni." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliati" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Indirizzo email" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Nome completo" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Indirizzo account email Paypal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Dove vuoi promuovere %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." msgstr "Inserisci il dominio del tuo sito o altri siti da dove vuoi promuovere %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Aggiungi un altro dominio" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Domini aggiuntivi" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Domini aggiuntivi dove ci sarà il modulo promozionale." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Metodi promozionali" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social network (Facebook, Twitter, ecc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Applicazioni mobile" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Siti, email e statistiche dei social network (opzionali)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "Facci sapere ogni sito o statistiche social valide, es: visite uniche mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste informazioni come riservate)." +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"Facci sapere ogni sito o statistiche social valide, es: visite uniche " +"mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste " +"informazioni come riservate)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Come ci promuoverai?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo possibile)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo " +"possibile)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annulla" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Diventa un affiliato" @@ -2467,8 +2577,14 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "Inserisci la chiave della licenza per abilitare la modalità Debug:" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Abilita la modalità Debug, inserisci la chiave segreta del proprietario della licenza (UserID = %d), che puoi trovare nella sezione \"Profilo\" della dashboard utente:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Abilita la modalità Debug, inserisci la chiave segreta del proprietario " +"della licenza (UserID = %d), che puoi trovare nella sezione \"Profilo\" " +"della dashboard utente:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2482,11 +2598,6 @@ msgstr "Chiave utente" msgid "Email address update" msgstr "Aggiorna l'indirizzo email" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Chiudi" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "Inserisci il nuovo indirizzo email" @@ -2519,30 +2630,42 @@ msgstr "Si muovi tutti i miei e risorse da %s a %s" msgid "No - only move this site's data to %s" msgstr "No sposta solo i dati di questo sito su %s" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Aggiorna" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Per favore inserisci la chiave di licenza che hai ricevuto via mail subito " +"dopo l'acquisto:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Aggiorna licenza" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Accetta e attiva la licenza" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "Associa con il proprietario della licenza" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2563,10 +2686,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "C'è una nuova versione di %s disponibile." @@ -2579,42 +2698,64 @@ msgstr "%sper accedere alla versione%s per aggiornamenti, funzionalità e suppor msgid "New Version Available" msgstr "Nuova versione disponibile" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Chiudi" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Invia chiave di licenza" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Inserisci qui sotto l'indirizzo email che hai usato per registrare l'aggiornamento e ti invieremo di nuovo la chiave di licenza." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Inserisci qui sotto l'indirizzo email che hai usato per registrare " +"l'aggiornamento e ti invieremo di nuovo la chiave di licenza." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Disattivare o disinstallare %s che disabiliterà automaticamente la licenza, che permetterà di utilizzarla in un altro sito." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Disattivare o disinstallare %s che disabiliterà automaticamente la licenza, " +"che permetterà di utilizzarla in un altro sito." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "In caso NON hai pianificato di usare %s su questo sito (o ogni altro sito) vuoi cancellare %s?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"In caso NON hai pianificato di usare %s su questo sito (o ogni altro sito) " +"vuoi cancellare %s?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Annulla %s, non ho bisogno di aggiornamenti di funzionalità e sicurezza o supporto per %sperché non ho intenzione di usare %ssu questo sito o qualunque altro sito." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Annulla %s, non ho bisogno di aggiornamenti di funzionalità e sicurezza o " +"supporto per %sperché non ho intenzione di usare %ssu questo sito o " +"qualunque altro sito." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Non annullare %s, sono interessato in ottenere gli aggiornamenti di sicurezza, nuove funzionalità o contattare il supporto." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"Non annullare %s, sono interessato in ottenere gli aggiornamenti di " +"sicurezza, nuove funzionalità o contattare il supporto." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Quando la tua licenza scadrà non potrai più usare %s, a meno che lo attivi di nuovo con una licenza premium valida." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Quando la tua licenza scadrà non potrai più usare %s, a meno che lo attivi " +"di nuovo con una licenza premium valida." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2624,17 +2765,33 @@ msgstr "Annulla %s?" msgid "Proceed" msgstr "Prosegui" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Annulla %s & Prosegui" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito di %1$s giorni per il piano %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito di " +"%1$s giorni per il piano %2$s." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Per essere accettato del regolamento WordPress.org, prima di attivare il " +"periodo di prova devi accettare di condividere informazioni come il tuo " +"utente e dati non sensibili. Permettendo a %s di inviare dati " +"periodicamente a %s per verificare gli aggiornamenti e approvare il periodo " +"di prova." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2660,14 +2817,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Attiva la licenza su tutti i siti del network." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Applica su tutti i siti della rete." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Attiva le licenze su tutti i siti in attesa." @@ -2676,19 +2825,31 @@ msgstr "Attiva le licenze su tutti i siti in attesa." msgid "Apply on all pending sites." msgstr "Applica su tutti i siti in attesa." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Attiva la licenza su tutti i siti del network." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Applica su tutti i siti della rete." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "permetti" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "delega" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "salta" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Fare clic per visualizzare lo screenshot in grandi dimensioni %d" @@ -2700,39 +2861,37 @@ msgstr "Aggiornamenti Illimitati" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s rimanenti" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Ultima licenza" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s fermerà subito tutti i futuri pagamenti ricorrenti e il tuo piano licenza scadrà in %s.," +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "Nessuna scadenza" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "Annullato" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "Nessuna scadenza" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." msgstr "" -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2757,7 +2916,9 @@ msgstr "Sottoscrivi" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo permesso." +msgstr "" +"Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo " +"permesso." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2775,7 +2936,8 @@ msgstr "ora" msgid "hours" msgstr "ore" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "giorni" @@ -2828,5 +2990,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Fai clic qui per usare il plugin anonimamente" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Potresti non averci fatto caso, ma non sei obbligato a condividere i tuoi dati e puoi semplicemente %s la tua partecipazione." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Potresti non averci fatto caso, ma non sei obbligato a condividere i tuoi " +"dati e puoi semplicemente %s la tua partecipazione." + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Evvai" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s non può funzionare senza %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s non può funzionare senza il plugin." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Ops" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Forte" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "l'indirizzo email per il supporto relativo al prodotto." + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Completa l'attivazione di \"%s\" ora" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Prezzi" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Prezzo" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "Sì" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Uhm" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Prova gratuita" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Congratulazioni" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Attenzione" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Inizia il periodo di prova gratuito" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Acquisto" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Aggiornamento" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Downgrade" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Modifica" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Mostra" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Nascondi" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Salta" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Elimina" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Aggiorna" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Cancella iscrizione" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Iscriviti" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Scarica l'ultima versione gratuita" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Scarica l'ultima versione" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Descrizione" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installazione" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Recensioni" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Altre note" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Caratteristiche & prezzi" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "Piano %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Migliore" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Mensilmente" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Annuale" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Annualmente" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Una volta" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Fatturato %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mese" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "anno" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Versione" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autore" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s fa" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sincronizza la licenza" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Piano" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sincronizza" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Nessuna chiave" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licenza" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Attiva" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installato" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Chiudi" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Invio email" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Attivazione" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Non attivo" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Attivo" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debugging" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Versioni SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Connesso" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Bloccato" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Siti" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Scadenza" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Prodotti" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "Il %s" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Percorso" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Chiudi" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Chiudi" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s rimanenti" diff --git a/languages/freemius-ja.mo b/languages/freemius-ja.mo index 6acf2df5e215c77d81ace8ff9df9039037fff573..ff6b277a33421e13ad5d5fe4af4fa7e10788f375 100644 GIT binary patch delta 8209 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

GH}-JjyF=Q^i5OHql<-$VWNzTeMR=#oytTL$%iq z6yfZE4e6JNdM+9DTt62NLXA5LRf%kzjd!9FI*ID|=dX9O^Z);oSKs@ekLzjg z|4e+<$iI2|s(ZiYd)39?JYbiYU6NCpH>2$8wZ{F&V*k6tRpa<-3YPhXPCe*LD@^kJ NG__4#Y2m$N{tXL`mQw%# delta 10550 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 diff --git a/languages/freemius-ja.po b/languages/freemius-ja.po index 8337dbab1..45d47fed9 100644 --- a/languages/freemius-ja.po +++ b/languages/freemius-ja.po @@ -1,4 +1,4 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: # Odyssey <8bitodyssey+github@gmail.com>, 2016 @@ -8,930 +8,930 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Tomohyco Tsunoda, 2018\n" -"Language-Team: Japanese (http://www.transifex.com/freemius/wordpress-sdk/language/ja/)\n" -"Language: ja\n" +"Language-Team: Japanese " +"(http://app.transifex.com/freemius/wordpress-sdk/language/ja/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;" -"fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;" -"fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;" -"fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 +#: includes/class-freemius.php1781, templates/account.php:943 msgid "" -"An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not " -"on production sites. You have been warned." +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." msgstr "" -"Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してくだ" -"さい。" +"Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com " +"に連絡してください。" -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "エラー" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "より良い %sを見つけました" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "%sの名前は何ですか?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "無効化" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "テーマ変更" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "その他" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "%sはもう不要です" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "短期間だけ %sが 必要です。" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s の影響でサイトを崩れました" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s の動作が突然停止しました" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "もう払うことができません" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr " 支払ってもよいと思う価格はいくらですか?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "自分の情報を共有したくありません" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s が動作しませんでした" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "どうしたら動作するか分かりませんでした。" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "何の機能ですか?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s が動作していません" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…" -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "探していたものではありません" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "探していたのは何ですか?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%sが期待通りに動きませんでした " -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "何を期待していましたか?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius デバッグ" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 +#: includes/class-freemius.php:4832 msgid "" -" The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after " -"5 min, please check your spam box." +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "ヤッホー" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s は、%s が無いと実行することができません。" - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s は、プラグインが無いと実行することができません。" - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, -#: includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, -#: includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, -#: includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "おっと" - -#: includes/class-freemius.php:5065 +#: includes/class-freemius.php:5138 msgid "" -"There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't " -"work, contact the %s's author with the following:" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "プレミアムバージョンの %sは有効化に成功しました。" - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "やったー" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "%s ライセンスを持っています。" -#: includes/class-freemius.php:5961 +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "プレミアムバージョンの %sは有効化に成功しました。" + +#: includes/class-freemius.php:6034 msgid "" -"%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use " -"it in the future, you'll have to purchase a license." +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." msgstr "" -"%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセ" -"ンスを購入する必要があります。" +"%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 " +"将来使用したい場合は、ライセンスを購入する必要があります。" -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。" -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "%s に関する詳細情報" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "ライセンスを購入" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "" -"You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email " -"to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "トライアルを開始" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "トライアルを開始" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "もうあとわずかです - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "すぐに \"%s\" 有効化を完了してください" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "プラグインを微調整します、 %s, %s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "%s のアップグレードが完了しました。" -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, -#: includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "アドオン" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, -#: templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "プラグイン" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, -#: templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "テーマ" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "" -"Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, " -"prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a " -"mistake you can also %s." +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。" -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "オーナーを変更" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。" -#: includes/class-freemius.php:14756 +#: includes/class-freemius.php:14562 msgid "" -"Account is pending activation. Please check your email and click the link to activate your account and then submit the " -"affiliate form again." -msgstr "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "アカウントが %s プランで有効化できました。" - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "トライアル版の利用を開始しました。" -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "アカウントが %s プランで有効化できました。" + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "%s を有効化できません。" -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "以下のメッセージとともに私たちに連絡をください。" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "アップグレード" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "トライアルを開始" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "料金表" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "トライアルを開始" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "アフィリエイト" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "アカウント" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "連絡" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "アドオン" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "料金表" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "サポートフォーラム" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "あなたのメールアドレスの承認が完了しました。すごい!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "そうだ" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 +#: includes/class-freemius.php:20930 msgid "" -"Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking " -"the \"Stop Debug\" link." +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "%s のアドオンのプランのアップグレードが完了しました。" -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s のアドオンの支払いが完了しました。" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "最新版をダウンロード" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。" -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "サーバーからエラーを受信しました。" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, -#: includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "ふむ" - -#: includes/class-freemius.php:21483 +#: includes/class-freemius.php:21532 msgid "" -"It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "" -"まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありま" -"せん。" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。" -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "トライアル" - -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。" -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "こちらで私たちに連絡をとってください。" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "プランの %s への変更が成功しました。" -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。" -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。" -#: includes/class-freemius.php:21554 +#: includes/class-freemius.php:21603 msgid "" -"Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue " -"getting updates and support." +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." msgstr "" -"ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセン" -"スをアップデートする必要があります。" +"ライセンスは有効期限がきれました。%s " +"の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。" -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。" -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "" -"フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。" +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。" -#: includes/class-freemius.php:21628 +#: includes/class-freemius.php:21677 msgid "" -"Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to " -"whitelist the following domains:%2$s" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "ライセンスの有効化ができませんでした。" -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "ライセンスの有効化が成功しました。" -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "サイトは有効なライセンスを持っていないようです。" -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "ライセンスの無効化ができませんでした。" -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "すでに%sをトライアルモードで利用中です。" -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "以前すでに試用版を利用しました。" -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "%sのプランにはトライアル期間はありません。" + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "%s プランは存在しないため、試用を開始できません。" -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "%s プランにはトライアル期間はありません。" -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "%sのプランにはトライアル期間はありません。" - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。" -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "%s のフリートライアルはキャンセルされました。" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "最新版を取得できました。" + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "すべて完璧です!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "バージョン %s をリリースしました。" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "%s をダウンロードしてください。" -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "最新の %s バージョンはこちらです。" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "新規" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "最新版を取得できました。" - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "すべて完璧です!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。" -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "サイトのオプトインに成功しました。" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "すごい!" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23065 msgid "" -"Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP " -"version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated " -"and tailored to." +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "ありがとうございます!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "" - -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23183 +#: includes/class-freemius.php:23233 msgid "" -"A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, " -"please check your spam folder." +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。" -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s は新しいオーナーです。" -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "おめでとう" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "名前のアップデートが成功しました。" -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "フルネームを入力してください。" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "名前のアップデートが成功しました。" - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "%s のアップデートが成功しました。" -#: includes/class-freemius.php:23339 +#: includes/class-freemius.php:23406 msgid "" -"Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & " -"invoices from the WP Admin." +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。" -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "警告" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "ヘイ" - -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。" -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "%s 日以内であればいつでもキャンセルできます。" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "クレジットカードは必要ありません。" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "フリートライアルを開始" - -#: includes/class-freemius.php:24182 +#: includes/class-freemius.php:24242 msgid "" -"Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "" -"こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょ" -"う!" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "詳細はこちら" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, -#: templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "ライセンスを有効化" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "ライセンスを変更" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "オプトアウト" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "オプトイン" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "オプトアウト" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "アップグレードを完了するには以下の手順を完了させてください。" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "最新の %s をダウンロード" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "ダウンロードしたバージョンをアップロードして有効化" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "アップロードと有効化の方法" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "プランのアップグレードが成功しました。" -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "自動インストールはオプトインしたユーザのみで動作します。" -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, -#: includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "モジュール ID が不正です" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "プレミアムアドオンバージョンはすでにインストール済みです。" + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "プレミアムバージョンはすでに有効になっています。" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。" -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。" -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "プレミアムアドオンバージョンはすでにインストール済みです。" - -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "有料の機能を表示する" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "%sとアドオンのご利用ありがとうございます!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "%sのご利用ありがとうございます!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "プロダクトのご利用ありがとうございます!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%sとそのアドオン" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "プロダクト" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "%sとアドオンのご利用ありがとうございます!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "%sのご利用ありがとうございます!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "はい" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "いいえ" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。" -#: includes/class-freemius.php:25866 +#: includes/class-freemius.php:25932 msgid "" -"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your " -"explicit consent, again, confirming that you are onboard :-)" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" -"Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "" -"セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "ライセンスキーが空です。" -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "ライセンスを更新" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -939,631 +939,516 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "インストール中プラグイン: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "ファイルシステムに接続できません。視覚情報を確認してください。" -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。" #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "購入" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "無料の %s を開始" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "フリーバージョンの更新を今すぐインストール" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "今すぐ更新をインストール" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "フリーバージョンを今すぐインストール" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, -#: templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "今すぐインストール" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "最新のフリーバージョンをダウンロード" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "フリーバージョンの更新を今すぐインストール" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, -#: templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "最新版をダウンロード" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "今すぐ更新をインストール" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "このアドオンを有効化" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "フリーバージョンを有効化" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, -#: templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "有効化" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "説明" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "インストール" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "スクリーンショット" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "変更履歴" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "レビュー" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "その他の記述" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "機能 & 料金" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "プラグインのインストール" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s プラン" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "ベスト" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "月" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "年次" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "ライフタイム" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s への請求" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "毎年" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "一度" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "シングルサイトライセンス" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "無制限ライセンス" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "%sサイトまで" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "月" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "年" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "料金" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "%s を保存" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "%s の拘束はありません。いつでもキャンセルできます。" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "無料の %s の後は、わずか %s だけお支払ください。" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "詳細" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, -#: templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "バージョン" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "作者" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "最終更新" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s 前" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "必要な WordPress のバージョン" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%sまたはそれ以上" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "互換性のある最新バージョン" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "ダウンロード済み" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s回" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s回" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org のプラグインページ" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "プラグインのホームページ" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "このプラグインに寄付する" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "レーティングの平均" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "%sを基に" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s評価" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s評価" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%sスター" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%sスター" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "クリックして%sの評価をしているレビューを観る" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "コントリビューター" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "警告" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。" + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。" - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "有料アドオンは Freemius にデプロイされている必要があります。" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。" -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "新しいバージョン (%s) がインストールされました" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "新しいフリーバージョン (%s) がインストールされました" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "最新版がイストールされました" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "最新のフリーバージョンがインストールされました" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "新しいバージョン (%s) がインストールされました" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "新しいフリーバージョン (%s) がインストールされました" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 msgid "" -"Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If " -"you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you " -"will be charged the updated price." +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。" +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "%s プランを有効化" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "%s に自動更新" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "%s で期間終了" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "ライセンスを同期" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "トライアルをキャンセル" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "プラン変更" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "アップグレード" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "ダウングレード" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, -#: templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "無料" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "プラン" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "フリートライアル" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "アカウント詳細" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "ライセンスを無効化" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "本当に続行していいですか?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "サブスクリプションをキャンセルする" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "同期" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "名前" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Email" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "ユーザー ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, -#: templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, -#: templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "サイト ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "ID がありません" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "公開鍵" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, -#: templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "秘密鍵" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "秘密鍵がありません" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "ライセンスキー" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "トライアル" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "ライセンスキー" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "未認証" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "期限切れ" +#: templates/account.php:600 +msgid "Free version" +msgstr "フリーバージョン" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "プレミアムバージョン" -#: templates/account.php:604 -msgid "Free version" -msgstr "フリーバージョン" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "期限切れ" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "認証メール" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "%s バージョンをダウンロード" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "表示" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "自分の %s はなんですか?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "編集" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "%s バージョンをダウンロード" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "サイト数" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "住所で検索する" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "住所" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "ライセンス" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "プラン" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "ライセンス" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "非表示" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 +#: templates/account.php:1032 msgid "" -"Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure " -"you want to proceed?" -msgstr "" -"ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになりま" -"す。本当に実行しますか?" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1576,25 +1461,13 @@ msgid "Add Ons for %s" msgstr "%s のアドオン" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "有効" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "却下" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s秒" @@ -1604,18 +1477,16 @@ msgstr "自動インストール" #: templates/auto-installation.php:93 msgid "" -"An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - " -"click the cancellation button now." -msgstr "" -"%sから %s (有料版) の自動ダウンロードと自動インストールが%sで開始します。手動で行う場合は今すぐにキャンセルボタンをクリックして" -"ください。" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "%sから %s (有料版) の自動ダウンロードと自動インストールが%sで開始します。手動で行う場合は今すぐにキャンセルボタンをクリックしてください。" #: templates/auto-installation.php:104 msgid "" -"The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this " -"page." -msgstr "" -"インストールプロセスが開始され、数分で完了します。完了までしばらくお待ちください。ページのリフレッシュなどは行わないでください。" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "インストールプロセスが開始され、数分で完了します。完了までしばらくお待ちください。ページのリフレッシュなどは行わないでください。" #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1629,180 +1500,164 @@ msgstr "チェックアウト" msgid "PCI compliant" msgstr "PCI コンプライアント" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "おおい %s さん、" - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "許可して続ける" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "有効化メールを再送信" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "ありがとう $s さん!" - -#: templates/connect.php:214 +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) msgid "" -"You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some " -"basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you " -"need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 +#: templates/connect.php:227 msgid "" -"We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and " -"better at doing what you need it to." +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some " -"basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "有効化メールを再送信" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "ありがとう $s さん!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Freeminus ネットワークレベルのインテグレーションをご紹介できることに興奮しています。" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。" + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." msgstr "アップデートの処理中に%dサイトがライセンスの有効化が保留中であることを検知しました。" -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." msgstr "これらのサイトで%sを使う場合は、ライセンスキーを入力し、アクティベーションボタンをクリックしてください。" -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%sの有料機能" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." msgstr "または、今すぐスキップして、%sのネットワークレベルのアカウントページでライセンスを有効にすることもできます。" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。" - -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "ライセンスキー" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "ライセンスキーは見つかりませんか?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "スキップ" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "サイト管理者に委任する" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "決定をサイトの管理者に委任するにはクリックしてください。" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "ライセンスキーをお持ちではありませんか?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "ライセンスキーはお持ちですか?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "ライセンスキーをお持ちではありませんか?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "プライバシーポリシー" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "利用規約" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "メール送信中" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "有効化中" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "" #: templates/contact.php:78 msgid "Contact" msgstr "連絡" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "オフ" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "オン" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "デバッグ" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "アクション" @@ -1850,11 +1705,6 @@ msgstr "キー" msgid "Value" msgstr "値" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK バージョン" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK のパス" @@ -1875,7 +1725,8 @@ msgstr "プラグイン" msgid "Themes" msgstr "テーマ" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "スラッグ" @@ -1883,11 +1734,6 @@ msgstr "スラッグ" msgid "Title" msgstr "タイトル" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius ステータス" @@ -1900,21 +1746,6 @@ msgstr "ネットワークブログ" msgid "Network User" msgstr "ネットワークユーザ" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "接続" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "ブロック" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" @@ -1924,14 +1755,10 @@ msgid "Simulate Network Upgrade" msgstr "ネットワークアップグレードをシミュレートする" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%sインストール" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "サイト数" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "ブログ ID" @@ -1940,11 +1767,6 @@ msgstr "ブログ ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "削除" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "モジュールのアドオン%s" @@ -1981,15 +1803,11 @@ msgstr "有効化済み" msgid "Blocking" msgstr "ブロッキング" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "タイプ" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "期限切れ" - #: templates/debug.php:660 msgid "Debug Log" msgstr "デバッグログ" @@ -2002,11 +1820,13 @@ msgstr "すべてのタイプ" msgid "All Requests" msgstr "すべてのリクエスト" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "ファイル" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "機能" @@ -2018,7 +1838,8 @@ msgstr "プロセス ID" msgid "Logger" msgstr "ロガー" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "メッセージ" @@ -2035,18 +1856,15 @@ msgid "Timestamp" msgstr "タイムスタンプ" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "外部ドメインで実行中のセキュアな HTTPS %sページ" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "サポート" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -2063,16 +1881,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -2084,7 +1908,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -2100,10 +1926,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "" @@ -2135,11 +1964,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "プロダクト" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2150,13 +1974,9 @@ msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 msgid "" -"%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your " -"license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2164,7 +1984,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2180,9 +2002,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can " -"break your website, and recognize which languages & regions the %s should be translated and tailored to." +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2190,6 +2015,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2197,10 +2023,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to " -"websites you authorize." +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2208,6 +2035,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2219,7 +2047,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2228,9 +2057,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the " -"%s should be translated and tailored to." +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2242,7 +2073,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2255,8 +2088,9 @@ msgstr "" #: includes/managers/class-fs-permission-manager.php:384 msgid "" -"Never miss important updates, get security warnings before they become public knowledge, and receive notifications about " -"special offers and awesome new features." +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2267,11 +2101,6 @@ msgstr "ニュースレター" msgid "Updates, announcements, marketing, no spam" msgstr "更新、発表、マーケティング、スパムなし" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "更新" - #: templates/account/billing.php:33 msgid "Billing" msgstr "請求書" @@ -2284,7 +2113,8 @@ msgstr "商号" msgid "Tax / VAT ID" msgstr "税金 / VAT ID" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "住所欄 %d" @@ -2332,16 +2162,6 @@ msgstr "総額" msgid "Invoice" msgstr "請求書" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "オプトアウト" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "オプトイン" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2358,11 +2178,6 @@ msgstr "コード" msgid "Length" msgstr "長さ" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "パス" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "本文" @@ -2383,21 +2198,18 @@ msgstr "終了" msgid "Log" msgstr "グ" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "%s 内" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s 前" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "秒" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "プラグインとテーマを同期" @@ -2406,7 +2218,8 @@ msgstr "プラグインとテーマを同期" msgid "Total" msgstr "トータル" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "最終" @@ -2430,158 +2243,166 @@ msgstr "Cron タイプ" msgid "Next" msgstr "次" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "期限のない" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "アフィリエイトに応募する" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s" +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問い合わせください。" -#: templates/forms/affiliation.php:123 +#: templates/forms/affiliation.php:134 msgid "" -"Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you " -"with further information." -msgstr "" -"アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改めてお申込みください。" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "アフィリエイトアカウントは一時的に停止されました。" -#: templates/forms/affiliation.php:129 +#: templates/forms/affiliation.php:128 msgid "" -"Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please " -"try again in 30 days." -msgstr "" -"アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改" -"めてお申込みください。" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。" -#: templates/forms/affiliation.php:132 +#: templates/forms/affiliation.php:113 msgid "" -"Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, " -"please contact support." -msgstr "" -"アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問" -"い合わせください。" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "%sは気に入りましたか? アンバサダーになって報酬を得ましょう ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" msgstr "新規カスタマーに私たちの%sを紹介して、売り上げごとに%sのコミッションを得ましょう" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "プログラム概要" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "カスタマーが新規ライセンスを購入するごとに%sのコミッションが発生します。" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "サブスクリプションの自動更新でコミッションを得ましょう。" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "%s初回の訪問後、クッキーをトラッキングして収益の可能性を最大化しましょう。" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "無制限のコミッション。" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%sお支払いの最低金額" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "お支払いは USD かつ PayPal 経由で毎月行われます。" -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." msgstr "30日間の返金期間があるため、コミッションのお支払いは30日以降になります。" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "アフィリエイト" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "メールアドレス" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "フルネーム" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal アカウントのメールアドレス" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "%sのプロモーションを行うサイトはどこですか?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." msgstr "%sのプロモーションを行う予定のあなたのサイトや他のサイトのドメイン名を入力してください。" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "ドメイン名を追加する" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "追加のドメイン名" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "プロダクトフォームのマーケティングを行う追加ドメイン名。" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "プロモーション方法" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "ソーシャルメディア(Facebook、Twitter、その他)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "モバイルアプリケーション" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "ウェブサイト、Email またはソーシャルメディアの統計 (オプション)" -#: templates/forms/affiliation.php:214 +#: templates/forms/affiliation.php:219 msgid "" -"Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email " -"subscribers, followers, etc. (we will keep this information confidential)." +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." msgstr "" "関係のあるウェブサイトやソーシャルメディアの統計を提供してください。例: サイトの月間訪問者数、Emailの購読者数、フォロワー数等 " "(機密情報として取り扱います)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "どのように我々をプロモートしますか?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "キャンセル" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "アフィリエイトになる" @@ -2591,8 +2412,9 @@ msgstr "" #: templates/forms/data-debug-mode.php:27 msgid "" -"To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My " -"Profile\" section of your User Dashboard:" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2607,11 +2429,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "却下" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2644,12 +2461,15 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "更新" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "購入後すぐにメールで受け取ったライセンスキーを入力してください:" #: templates/forms/license-activation.php:28 @@ -2658,18 +2478,23 @@ msgstr "ライセンスを更新" #: templates/forms/license-activation.php:34 msgid "" -"The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the " -"validity of your license." +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "同意してライセンスを有効化" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2690,10 +2515,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "%sの入手可能な新しいバージョンがあります" @@ -2706,44 +2527,50 @@ msgstr "" msgid "New Version Available" msgstr "新しいバージョンがあります" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "却下" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "ライセンスキーを送信" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." msgstr "アップグレードに使用したメールアドレスを下に入力してください。そうすれば、ライセンスキーをお送りします。" #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 msgid "" -"Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, " -"or any other site." +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 msgid "" -"Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2754,22 +2581,29 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." msgstr "%2$s プランの%1$s日間のフリートライアルを開始するまであとワンクリックです。" #: templates/forms/trial-start.php:28 +#. translators: %s: Link to freemius.com msgid "" -"For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-" -"sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your " -"trial." +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." msgstr "" -"WordPress.orgのガイドラインに準拠するため、トライアルを開始する前に、ユーザーと重要でないサイト情報のオプトイン、更新の確認やト" -"ライアルの状態確認のために%sが%sに対して定期的にデータを送信する許可を得るように設定してください。" +"WordPress." +"orgのガイドラインに準拠するため、トライアルを開始する前に、ユーザーと重要でないサイト情報のオプトイン、更新の確認やトライアルの状態確認のために%" +"sが%sに対して定期的にデータを送信する許可を得るように設定してください。" #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2795,14 +2629,6 @@ msgstr "プレミアム" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "ネットワーク上にあるすべてのサイトのライセンスを有効にする。" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "ネットワーク上にあるすべてのサイトに対して反映させる。" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "保留中のサイトすべてでライセンスを有効にする。" @@ -2811,19 +2637,31 @@ msgstr "保留中のサイトすべてでライセンスを有効にする。" msgid "Apply on all pending sites." msgstr "保留中のサイトすべてに反映させる。" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "ネットワーク上にあるすべてのサイトのライセンスを有効にする。" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "ネットワーク上にあるすべてのサイトに対して反映させる。" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "許可" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "代表" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "スキップ" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "クリックしてフルサイズのスクリーンショットを見る %d" @@ -2835,39 +2673,37 @@ msgstr "無制限のアップデート" msgid "Localhost" msgstr "localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "あと %s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "最新のライセンス" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "" +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "有効期限なし" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "キャンセル" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "有効期限なし" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." msgstr "" -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2910,7 +2746,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2963,5 +2800,455 @@ msgid "Click here to use the plugin anonymously" msgstr "匿名でプラグインを使用するにはこちらをクリック" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." msgstr "見逃していたかもしれませんが、どんな情報も共有する必要はなく、オプトインを $s することができます。 " + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "ヤッホー" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s は、%s が無いと実行することができません。" + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s は、プラグインが無いと実行することができません。" + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "おっと" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "ヘイ" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "やったー" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "すぐに \"%s\" 有効化を完了してください" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "料金表" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "料金" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "そうだ" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "ふむ" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "トライアル" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "おめでとう" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "警告" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "フリートライアルを開始" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "購入" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "アップグレード" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "ダウングレード" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "編集" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "表示" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "非表示" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "スキップ" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "削除" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "更新" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "オプトアウト" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "オプトイン" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "最新のフリーバージョンをダウンロード" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "最新版をダウンロード" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "説明" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "インストール" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "変更履歴" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "レビュー" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "その他の記述" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "機能 & 料金" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s プラン" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "ベスト" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "月" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "年次" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "毎年" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "一度" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s への請求" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "月" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "年" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "バージョン" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "作者" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s 前" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "ライセンスを同期" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "プラン" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "同期" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "秘密鍵がありません" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "ライセンス" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "有効" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "却下" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "おおい %s さん、" + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "メール送信中" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "有効化中" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "オフ" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "オン" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "デバッグ" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK バージョン" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "接続" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "ブロック" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "サイト数" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "期限切れ" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "プロダクト" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "パス" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "秒" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "却下" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "却下" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "あと %s" diff --git a/languages/freemius-nl_NL.mo b/languages/freemius-nl_NL.mo index fa3f8e857b5f1873e8066ef895ae6ce6d6da2afb..37c9c5b1227d406a329bf32d1186b6219d128abf 100644 GIT binary patch delta 4343 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 aR;Km{R`_cJIU@@4M&*wHh$|z?HuM diff --git a/languages/freemius-nl_NL.po b/languages/freemius-nl_NL.po index 9490bfec3..ba65e69b2 100644 --- a/languages/freemius-nl_NL.po +++ b/languages/freemius-nl_NL.po @@ -1,16 +1,18 @@ # Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Swashata Ghosh, 2024 -# +# Benny Vluggen , 2017-2018 +# Leo Fajardo , 2022 +# Patrick Buntsma , 2018 msgid "" msgstr "" -"Project-Id-Version: freemius\n" +"Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 08:37+0000\n" -"Last-Translator: Swashata Ghosh, 2024\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Leo Fajardo , 2022\n" "Language-Team: Dutch (Netherlands) " -"(https://app.transifex.com/freemius/teams/184351/nl_NL/)\n" +"(http://app.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -336,11 +338,11 @@ msgstr "" msgid "Change Ownership" msgstr "Eigendom Overdragen" -#: includes/class-freemius.php:14434 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "Ongeldige verzameling van Site Details." -#: includes/class-freemius.php:14556 +#: includes/class-freemius.php:14564 msgid "" "We can't see any active licenses associated with that email address, are " "you sure it's the right address?" @@ -348,7 +350,7 @@ msgstr "" "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat " "dat het juiste adres is?" -#: includes/class-freemius.php:14554 +#: includes/class-freemius.php:14562 msgid "" "We couldn't find your email address in the system, are you sure it's the " "right address?" @@ -356,117 +358,117 @@ msgstr "" "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat " "het juiste adres is?" -#: includes/class-freemius.php:14860 +#: includes/class-freemius.php:14868 msgid "" "Account is pending activation. Please check your email and click the link " "to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14986, +#: includes/class-freemius.php14994, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Vernieuw je licentie nu" -#: includes/class-freemius.php14974, +#: includes/class-freemius.php14982, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Koop nu een licentie" -#: includes/class-freemius.php:14990 +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support." -#: includes/class-freemius.php:17662 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17686, includes/class-freemius.php:21607 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "U proefperiode is met succes gestart." -#: includes/class-freemius.php:17676 +#: includes/class-freemius.php:17684 msgid "Your account was successfully activated with the %s plan." msgstr "Je account is succesvol geactiveerd met het %s plan." -#: includes/class-freemius.php18320, includes/class-freemius.php18433, -#: includes/class-freemius.php:18610 +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Kon %s niet activeren." -#: includes/class-freemius.php18321, includes/class-freemius.php18434, -#: includes/class-freemius.php:18611 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Neem a.u.b. contact met ons op met het volgende bericht:" -#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18972, includes/class-freemius.php:24391 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:18980 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Prijzen" -#: includes/class-freemius.php:18978 +#: includes/class-freemius.php:18986 msgid "Start Trial" msgstr "Start Proefperiode" -#: includes/class-freemius.php19060, includes/class-freemius.php:19062 +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Affiliatie" -#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: includes/class-freemius.php19098, includes/class-freemius.php19100, #: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contacteer Ons" -#: includes/class-freemius.php19119, includes/class-freemius.php19121, -#: includes/class-freemius.php24405, templates/account.php130, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Uitbreidingen" -#: includes/class-freemius.php19370, +#: includes/class-freemius.php19378, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:20391 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!" -#: includes/class-freemius.php:20898 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20922 +#: includes/class-freemius.php:20930 msgid "" "Debug mode was successfully enabled and will be automatically disabled in " "60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21157 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. " -#: includes/class-freemius.php:21159 +#: includes/class-freemius.php:21167 #. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s Add-on werd succesvol aangekocht." -#: includes/class-freemius.php:21162 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Download de meeste recente versie" -#: includes/class-freemius.php:21280 +#: includes/class-freemius.php:21288 msgid "" "It seems like one of the authentication parameters is wrong. Update your " "Public Key, Secret Key & User ID, and try again." @@ -475,12 +477,12 @@ msgstr "" "je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het " "nogmaals. " -#: includes/class-freemius.php21280, includes/class-freemius.php21677, -#: includes/class-freemius.php21778, includes/class-freemius.php:21865 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Foutmelding ontvangen van de server:" -#: includes/class-freemius.php:21524 +#: includes/class-freemius.php:21532 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -489,7 +491,7 @@ msgstr "" "geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze " "kant - sorry." -#: includes/class-freemius.php:21530 +#: includes/class-freemius.php:21538 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -497,21 +499,21 @@ msgstr "" "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft " "het plan %s." -#: includes/class-freemius.php21534, includes/class-freemius.php:21586 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Neem hier a.u.b. contact met ons op" -#: includes/class-freemius.php:21556 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Je plan is succesvol veranderd naar %s." -#: includes/class-freemius.php:21572 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven " "gebruiken." -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:21582 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -521,7 +523,7 @@ msgstr "" "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties " "te blijven gebruiken." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21590 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -529,7 +531,7 @@ msgstr "" "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan " "alsjeblieft contact op met support." -#: includes/class-freemius.php:21595 +#: includes/class-freemius.php:21603 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -539,7 +541,7 @@ msgstr "" "je zal je licentie moeten vernieuwen om weer updates en support te " "ontvangen." -#: includes/class-freemius.php:21621 +#: includes/class-freemius.php:21629 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -547,7 +549,7 @@ msgstr "" "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis " "features blijven gebruiken." -#: includes/class-freemius.php:21623 +#: includes/class-freemius.php:21631 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -557,46 +559,46 @@ msgstr "" "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder " "interrupties te blijven gebruiken. " -#: includes/class-freemius.php:21669 +#: includes/class-freemius.php:21677 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21671 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21774 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden." -#: includes/class-freemius.php:21816 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Je licentie is succesvol geactiveerd." -#: includes/class-freemius.php:21840 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft." -#: includes/class-freemius.php:21864 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is." -#: includes/class-freemius.php:21893 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21894 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan." -#: includes/class-freemius.php:21897 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "Oké" -#: includes/class-freemius.php:21950 +#: includes/class-freemius.php:21958 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -604,7 +606,7 @@ msgstr "" "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van " "je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." -#: includes/class-freemius.php:21959 +#: includes/class-freemius.php:21967 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -612,27 +614,27 @@ msgstr "" "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over " "%s aflopen." -#: includes/class-freemius.php:22001 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Je draait de %s al in proefmodus." -#: includes/class-freemius.php:22012 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "U heeft reeds een proefperiode gebruikt." -#: includes/class-freemius.php:22048 +#: includes/class-freemius.php:22056 msgid "None of the %s's plans supports a trial period." msgstr "Geen van de %s plannen ondersteunt een proefperiode." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden." -#: includes/class-freemius.php:22037 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "Plan %s ondersteunt geen proefperiode." -#: includes/class-freemius.php:22097 +#: includes/class-freemius.php:22105 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -640,7 +642,7 @@ msgstr "" "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt " "niets stop te zetten." -#: includes/class-freemius.php:22133 +#: includes/class-freemius.php:22141 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -648,35 +650,35 @@ msgstr "" "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van " "uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." -#: includes/class-freemius.php:22152 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Uw gratis %s proefperiode is succesvol opgezegd. " -#: includes/class-freemius.php:22496 +#: includes/class-freemius.php:22504 msgid "Seems like you got the latest release." msgstr "Het lijkt erop dat je de meest recente versie hebt." -#: includes/class-freemius.php:22497 +#: includes/class-freemius.php:22505 msgid "You are all good!" msgstr "Alles is goed!" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "Versie %s is vrijgegeven." -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "A.u.b. %s downloaden." -#: includes/class-freemius.php:22486 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "de meest recente %s versie hier" -#: includes/class-freemius.php:22491 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Nieuw" -#: includes/class-freemius.php:22900 +#: includes/class-freemius.php:22908 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -684,19 +686,19 @@ msgstr "" "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. " "hebt ontvangen, kijk dan alsjeblieft in je spambox." -#: includes/class-freemius.php:23040 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "Site opt-in geslaagd. " -#: includes/class-freemius.php23041, includes/class-freemius.php:24101 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Geweldig" -#: includes/class-freemius.php:23067 +#: includes/class-freemius.php:23075 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23057 +#: includes/class-freemius.php:23065 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -704,24 +706,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23058 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "Bedankt!" -#: includes/class-freemius.php:23227 +#: includes/class-freemius.php:23235 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23225 +#: includes/class-freemius.php:23233 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23239 +#: includes/class-freemius.php:23247 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -729,38 +731,38 @@ msgstr "" "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een " "e-mail verstuurd naar %s voor de definitieve goedkeuring. " -#: includes/class-freemius.php:23245 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s is de nieuwe eigenaar van het account." -#: includes/class-freemius.php:23269 +#: includes/class-freemius.php:23277 msgid "Your name was successfully updated." msgstr "Je naam is succesvol bijgewerkt." -#: includes/class-freemius.php:23264 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Geef alsjeblieft je volledige naam." -#: includes/class-freemius.php:23334 +#: includes/class-freemius.php:23342 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Je hebt je %s succesvol geüpdatet." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23406 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23401 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23438 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23511 +#: includes/class-freemius.php:23519 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -768,7 +770,7 @@ msgstr "" "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van " "een externe server." -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -776,15 +778,15 @@ msgstr "" "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende " "een%d-daagse gratis proefperiode." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!" -#: includes/class-freemius.php:24150 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Geen creditcard nodig" -#: includes/class-freemius.php:24234 +#: includes/class-freemius.php:24242 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -792,11 +794,11 @@ msgstr "" "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s " "goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" -#: includes/class-freemius.php:24243 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Lees meer" -#: includes/class-freemius.php24429, templates/account.php569, +#: includes/class-freemius.php24437, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -804,86 +806,86 @@ msgstr "Lees meer" msgid "Activate License" msgstr "Activeer Licentie" -#: includes/class-freemius.php24430, templates/account.php663, +#: includes/class-freemius.php24438, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Verander Licentie" -#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php:24803 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien" -#: includes/class-freemius.php:24807 +#: includes/class-freemius.php:24815 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download de meeste recente %s versie" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Upload en activeer de gedownloade versie" -#: includes/class-freemius.php:24813 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Hoe te uploaden en activeren?" -#: includes/class-freemius.php:24780 +#: includes/class-freemius.php:24788 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24790 +#: includes/class-freemius.php:24798 msgid "Activate %s features" msgstr "Activeer %s features." -#: includes/class-freemius.php:24848 +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Je plan is succesvol geüpgraded." -#: includes/class-freemius.php:24849 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24979 +#: includes/class-freemius.php:24987 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren." -#: includes/class-freemius.php:25148 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "Automatische installatie werkt alleen voor opted-in gebruikers." -#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-freemius.php25166, includes/class-freemius.php25199, #: includes/class-fs-plugin-updater.php1289, #: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Ongeldige Module-ID" -#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Premium add-on versie is reeds geïnstalleerd." -#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Premium versie reeds actief." -#: includes/class-freemius.php:25174 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "Je hebt geen geldige licentie voor de premium versie." -#: includes/class-freemius.php:25181 +#: includes/class-freemius.php:25189 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -891,15 +893,15 @@ msgstr "" "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie " "bevat. " -#: includes/class-freemius.php:25559 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Bekijk betaalde kenmerken" -#: includes/class-freemius.php:25874 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "Hartelijk bedankt voor het gebruiken van onze producten!" -#: includes/class-freemius.php:25875 +#: includes/class-freemius.php:25883 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -907,23 +909,23 @@ msgstr "" "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze " "te blijven verbeteren." -#: includes/class-freemius.php:25894 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%sen bijbehorende uitbreidingen" -#: includes/class-freemius.php:25903 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "Producten" -#: includes/class-freemius.php:25863 +#: includes/class-freemius.php:25871 msgid "Thank you so much for using %s and its add-ons!" msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" -#: includes/class-freemius.php:25864 +#: includes/class-freemius.php:25872 msgid "Thank you so much for using %s!" msgstr "Hartelijk bedankt voor het gebruik van %s!" -#: includes/class-freemius.php:25870 +#: includes/class-freemius.php:25878 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -931,19 +933,19 @@ msgstr "" "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te " "blijven verbeteren." -#: includes/class-freemius.php25910, templates/connect.php:313 +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php25911, templates/connect.php:314 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." -#: includes/class-freemius.php25912, templates/connect.php:319 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "Nee" -#: includes/class-freemius.php25914, templates/connect.php:321 +#: includes/class-freemius.php25922, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -951,14 +953,14 @@ msgstr "" "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of " "aanbiedingen." -#: includes/class-freemius.php:25924 +#: includes/class-freemius.php:25932 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25926, templates/connect.php:328 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -967,7 +969,7 @@ msgstr "" "beveiliging & feature updates, educatieve content en zo nu en dan " "aanbiedingen:" -#: includes/class-freemius.php:26216 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "Licentiesleutel is leeg." @@ -1254,6 +1256,7 @@ msgid "Cancelling the subscription" msgstr "Het abonnement annuleren" #: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, #: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' @@ -2814,14 +2817,6 @@ msgstr "Localhost" msgid "Last license" msgstr "Laatste licentie" -#: templates/account/partials/addon.php:34 -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -msgid "" -"%1$s will immediately stop all future recurring payments and your %s plan " -"license will expire in %s." -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Geen verloopdatum" @@ -2958,8 +2953,8 @@ msgstr "" "Misschien heb je het gemist, maar je hoeft geen gegevens te delen en kunt " "de opt-in %s." -#: includes/class-freemius.php4842, includes/class-freemius.php21166, -#: includes/class-freemius.php:24835 +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Hoera" @@ -2975,17 +2970,17 @@ msgid "%s cannot run without the plugin." msgstr "%s werkt niet zonder de plug-in." #: includes/class-freemius.php4859, includes/class-freemius.php6051, -#: includes/class-freemius.php13828, includes/class-freemius.php14567, -#: includes/class-freemius.php18322, includes/class-freemius.php18435, -#: includes/class-freemius.php18612, includes/class-freemius.php20897, -#: includes/class-freemius.php21996, includes/class-freemius.php23012, -#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oeps" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgctxt "exclamation" msgid "Hey" msgstr "Hoi" @@ -3024,17 +3019,17 @@ msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Voltooi \"%s\" Activatie Nu" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php19157, templates/pricing.php:110 +#: includes/class-freemius.php19165, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "Prijzen" @@ -3044,36 +3039,36 @@ msgctxt "noun" msgid "Price" msgstr "Prijs" -#: includes/class-freemius.php:20392 +#: includes/class-freemius.php:20400 msgctxt "a positive response" msgid "Right on" msgstr "Toppie" -#: includes/class-freemius.php21511, includes/class-freemius.php21783, -#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21525, templates/account.php132, +#: includes/class-freemius.php21533, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Proefperiode" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23255 msgctxt "as congratulations" msgid "Congrats" msgstr "Gefeliciteerd" -#: includes/class-freemius.php:23512 +#: includes/class-freemius.php:23520 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Aankondiging" -#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start gratis proefperidoe" diff --git a/languages/freemius-ru_RU.mo b/languages/freemius-ru_RU.mo index 781c0edd5a0f5637372614f2a075417a2238fca7..c62ea8f84f814e4c5458584f654bccda32c696b2 100644 GIT binary patch delta 3608 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 diff --git a/languages/freemius-ru_RU.po b/languages/freemius-ru_RU.po index ae9987df4..7a5c557e9 100644 --- a/languages/freemius-ru_RU.po +++ b/languages/freemius-ru_RU.po @@ -1,16 +1,17 @@ # Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Swashata Ghosh, 2024 -# +# Leo Fajardo , 2021 +# Robert Premmerce , 2018 msgid "" msgstr "" -"Project-Id-Version: freemius\n" +"Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 08:37+0000\n" -"Last-Translator: Swashata Ghosh, 2024\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: Leo Fajardo , 2021\n" "Language-Team: Russian (Russia) " -"(https://app.transifex.com/freemius/teams/184351/ru_RU/)\n" +"(http://app.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -338,11 +339,11 @@ msgstr "" msgid "Change Ownership" msgstr "Сменить владельца лицензии " -#: includes/class-freemius.php:14434 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14556 +#: includes/class-freemius.php:14564 msgid "" "We can't see any active licenses associated with that email address, are " "you sure it's the right address?" @@ -350,7 +351,7 @@ msgstr "" "Активная лицензия выданная на этот электронный адрес не была найдена. Вы " "уверены, что предоставили правильный электронный адрес?" -#: includes/class-freemius.php:14554 +#: includes/class-freemius.php:14562 msgid "" "We couldn't find your email address in the system, are you sure it's the " "right address?" @@ -358,117 +359,117 @@ msgstr "" "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что " "предоставили правильный адрес? " -#: includes/class-freemius.php:14860 +#: includes/class-freemius.php:14868 msgid "" "Account is pending activation. Please check your email and click the link " "to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14986, +#: includes/class-freemius.php14994, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php14974, +#: includes/class-freemius.php14982, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "" -#: includes/class-freemius.php:14990 +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17662 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17686, includes/class-freemius.php:21607 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "Ваш тестовый период успешно начат" -#: includes/class-freemius.php:17676 +#: includes/class-freemius.php:17684 msgid "Your account was successfully activated with the %s plan." msgstr "Ваша учетная запись была успешно активирована согласно плану %s" -#: includes/class-freemius.php18320, includes/class-freemius.php18433, -#: includes/class-freemius.php:18610 +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "Невозможно активировать %s" -#: includes/class-freemius.php18321, includes/class-freemius.php18434, -#: includes/class-freemius.php:18611 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "Пожалуйста, напишите нам сообщение следующего содержания:" -#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18972, includes/class-freemius.php:24391 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "Сделать апгрейд " -#: includes/class-freemius.php:18980 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "Цены " -#: includes/class-freemius.php:18978 +#: includes/class-freemius.php:18986 msgid "Start Trial" msgstr "Начать тестовый период" -#: includes/class-freemius.php19060, includes/class-freemius.php:19062 +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "Партнерство " -#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: includes/class-freemius.php19098, includes/class-freemius.php19100, #: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Личный кабинет" -#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Контакты " -#: includes/class-freemius.php19119, includes/class-freemius.php19121, -#: includes/class-freemius.php24405, templates/account.php130, +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Настройки плагина " -#: includes/class-freemius.php19370, +#: includes/class-freemius.php19378, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Форум поддержки " -#: includes/class-freemius.php:20391 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!" -#: includes/class-freemius.php:20898 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20922 +#: includes/class-freemius.php:20930 msgid "" "Debug mode was successfully enabled and will be automatically disabled in " "60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21157 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Ваш %s план был успешно обновлен" -#: includes/class-freemius.php:21159 +#: includes/class-freemius.php:21167 #. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "Покупка %s плагина успешно состоялась" -#: includes/class-freemius.php:21162 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "Скачай последнюю версию" -#: includes/class-freemius.php:21280 +#: includes/class-freemius.php:21288 msgid "" "It seems like one of the authentication parameters is wrong. Update your " "Public Key, Secret Key & User ID, and try again." @@ -476,12 +477,12 @@ msgstr "" "Вероятно один из параметров является неверным. Обновите свой Public Key, " "Secret Key&User ID и повторите попытку." -#: includes/class-freemius.php21280, includes/class-freemius.php21677, -#: includes/class-freemius.php21778, includes/class-freemius.php:21865 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "Ошибка сервера" -#: includes/class-freemius.php:21524 +#: includes/class-freemius.php:21532 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -490,7 +491,7 @@ msgstr "" "обновляли или меняли свой тарифный план, то вероятно существуют какие-то " "трудности связанные с Вашим программным обеспечением. Извините. " -#: includes/class-freemius.php:21530 +#: includes/class-freemius.php:21538 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -498,21 +499,21 @@ msgstr "" "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой " "тарифный план не меняется. " -#: includes/class-freemius.php21534, includes/class-freemius.php:21586 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "Пожалуйста, напишите нам сообщение здесь. " -#: includes/class-freemius.php:21556 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "Ваш тарифный план был успешно изменен на %s." -#: includes/class-freemius.php:21572 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться " "бесплатной версией %s на бессрочной основе." -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:21582 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -520,7 +521,7 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21590 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -528,7 +529,7 @@ msgstr "" "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, " "пожалуйста свяжитесь с нашей службой поддержки. " -#: includes/class-freemius.php:21595 +#: includes/class-freemius.php:21603 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -538,13 +539,13 @@ msgstr "" "всеми возможностями %s продлив Вашу лицензию. Вы также будете получать " "доступ к обновлениям и поддержке. " -#: includes/class-freemius.php:21621 +#: includes/class-freemius.php:21629 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "" -#: includes/class-freemius.php:21623 +#: includes/class-freemius.php:21631 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -552,86 +553,86 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21669 +#: includes/class-freemius.php:21677 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21671 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21774 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "Вероятно возникли трудности с активацией лицензии. " -#: includes/class-freemius.php:21816 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "Ваша лицензия была успешно активирована. " -#: includes/class-freemius.php:21840 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. " -#: includes/class-freemius.php:21864 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "Вероятно деактивация лицензии не состоялась. " -#: includes/class-freemius.php:21893 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21894 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s." -#: includes/class-freemius.php:21897 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K." -#: includes/class-freemius.php:21950 +#: includes/class-freemius.php:21958 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21959 +#: includes/class-freemius.php:21967 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22001 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "Вы уже пользуетесь тестовой версией %s " -#: includes/class-freemius.php:22012 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "Вы уже использовали Ваш тестовый период" -#: includes/class-freemius.php:22048 +#: includes/class-freemius.php:22056 msgid "None of the %s's plans supports a trial period." msgstr "Тарифные планы %s не предусматривают тестовый период. " -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" "Тарифного плана %s не существует, поэтому Вы не можете начать тестовый " "период. " -#: includes/class-freemius.php:22037 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "Тарифный план %s не предусматривает тестового периода. " -#: includes/class-freemius.php:22097 +#: includes/class-freemius.php:22105 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "Возможно, Ваш тестовый период уже закончился. " -#: includes/class-freemius.php:22133 +#: includes/class-freemius.php:22141 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -639,35 +640,35 @@ msgstr "" "К сожалению у нас возникли трудности с отменой Вашего тестового периода. " "Пожалуйста, повторите попытку через несколько минут." -#: includes/class-freemius.php:22152 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "Ваш бесплатный тестовый период был успешно отменен. " -#: includes/class-freemius.php:22496 +#: includes/class-freemius.php:22504 msgid "Seems like you got the latest release." msgstr "Вероятно, Вы пользуетесь последней версией" -#: includes/class-freemius.php:22497 +#: includes/class-freemius.php:22505 msgid "You are all good!" msgstr "Все прошло хорошо!" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "Релиз версии %s состоялся. " -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "Пожалуйста, скачайте %s" -#: includes/class-freemius.php:22486 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "Последняя версия %s здесь" -#: includes/class-freemius.php:22491 +#: includes/class-freemius.php:22499 msgid "New" msgstr "Новое " -#: includes/class-freemius.php:22900 +#: includes/class-freemius.php:22908 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -675,19 +676,19 @@ msgstr "" "Письмо подтверждение было только что отправлено на %s. Если Вы не получите " "его через 5 минут, пожалуйста, проверьте папку спам." -#: includes/class-freemius.php:23040 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23041, includes/class-freemius.php:24101 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "Отлично!" -#: includes/class-freemius.php:23067 +#: includes/class-freemius.php:23075 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23057 +#: includes/class-freemius.php:23065 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -695,24 +696,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23058 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23227 +#: includes/class-freemius.php:23235 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23225 +#: includes/class-freemius.php:23233 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23239 +#: includes/class-freemius.php:23247 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -720,38 +721,38 @@ msgstr "" "Спасибо, что подтвердили изменение прав использования. Вам отправлено " "письмо на %s для окончательного подтверждения. " -#: includes/class-freemius.php:23245 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%я является новым владельцем аккаунта" -#: includes/class-freemius.php:23269 +#: includes/class-freemius.php:23277 msgid "Your name was successfully updated." msgstr "Ваше имя было успешно обновлено" -#: includes/class-freemius.php:23264 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "Пожалуйста, введите Ваше полное имя" -#: includes/class-freemius.php:23334 +#: includes/class-freemius.php:23342 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Вы успешно обновили Ваш %s" -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23406 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23401 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23438 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23511 +#: includes/class-freemius.php:23519 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -759,7 +760,7 @@ msgstr "" "Сообщаем, что информация о дополнительных настройках %s предоставляется со " "стороннего сервера. " -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -767,15 +768,15 @@ msgstr "" "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум " "возможностями на протяжении %d - дневного тестового периода. " -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. " -#: includes/class-freemius.php:24150 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "Не требуются данные платежной карты" -#: includes/class-freemius.php:24234 +#: includes/class-freemius.php:24242 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -783,11 +784,11 @@ msgstr "" "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам " "нравится %s, Вы можете стать нашим представителем и зарабатывать!" -#: includes/class-freemius.php:24243 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "Узнать больше" -#: includes/class-freemius.php24429, templates/account.php569, +#: includes/class-freemius.php24437, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -795,86 +796,86 @@ msgstr "Узнать больше" msgid "Activate License" msgstr "Активировать лицензию" -#: includes/class-freemius.php24430, templates/account.php663, +#: includes/class-freemius.php24438, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Изменить лицензию " -#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: includes/class-freemius.php24553, includes/class-freemius.php24547, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Присоединиться" -#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Отказаться от использования" -#: includes/class-freemius.php:24803 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд" -#: includes/class-freemius.php:24807 +#: includes/class-freemius.php:24815 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Скачайте последнюю версию %s" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "Загрузите и активируйте скачанную версию" -#: includes/class-freemius.php:24813 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "Как загрузить и активировать?" -#: includes/class-freemius.php:24780 +#: includes/class-freemius.php:24788 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24790 +#: includes/class-freemius.php:24798 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24848 +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "Ваш тарифный план был успешно изменен. " -#: includes/class-freemius.php:24849 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24979 +#: includes/class-freemius.php:24987 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25148 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "Авто установка работает только для зарегистрированных пользователей." -#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-freemius.php25166, includes/class-freemius.php25199, #: includes/class-fs-plugin-updater.php1289, #: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Неверный ID модуля" -#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Премиум версия плагина была установлена" -#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Премиум версия уже активирована" -#: includes/class-freemius.php:25174 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией" -#: includes/class-freemius.php:25181 +#: includes/class-freemius.php:25189 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -882,74 +883,74 @@ msgstr "" "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию " "кода. " -#: includes/class-freemius.php:25559 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "Просмотр платных возможностей" -#: includes/class-freemius.php:25874 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25875 +#: includes/class-freemius.php:25883 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "" -#: includes/class-freemius.php:25894 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25903 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "" -#: includes/class-freemius.php:25863 +#: includes/class-freemius.php:25871 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25864 +#: includes/class-freemius.php:25872 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25870 +#: includes/class-freemius.php:25878 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "" -#: includes/class-freemius.php25910, templates/connect.php:313 +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php25911, templates/connect.php:314 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25912, templates/connect.php:319 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php25914, templates/connect.php:321 +#: includes/class-freemius.php25922, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "" -#: includes/class-freemius.php:25924 +#: includes/class-freemius.php:25932 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25926, templates/connect.php:328 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26216 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "" @@ -1234,6 +1235,7 @@ msgid "Cancelling the subscription" msgstr "" #: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, #: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' @@ -2761,14 +2763,6 @@ msgstr "Локальный хостинг " msgid "Last license" msgstr "Последняя лицензия " -#: templates/account/partials/addon.php:34 -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -msgid "" -"%1$s will immediately stop all future recurring payments and your %s plan " -"license will expire in %s." -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Бессрочный период пользования " @@ -2901,8 +2895,8 @@ msgstr "" "Возможно, Вы не обратили внимание, но Вы не обязаны делиться никакими " "данными и можете просто %s кнопку \"Присоединиться\". " -#: includes/class-freemius.php4842, includes/class-freemius.php21166, -#: includes/class-freemius.php:24835 +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Ура!" @@ -2918,17 +2912,17 @@ msgid "%s cannot run without the plugin." msgstr "%s не может работать без плагина. " #: includes/class-freemius.php4859, includes/class-freemius.php6051, -#: includes/class-freemius.php13828, includes/class-freemius.php14567, -#: includes/class-freemius.php18322, includes/class-freemius.php18435, -#: includes/class-freemius.php18612, includes/class-freemius.php20897, -#: includes/class-freemius.php21996, includes/class-freemius.php23012, -#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Упс!" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgctxt "exclamation" msgid "Hey" msgstr "Привет!" @@ -2967,17 +2961,17 @@ msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Закончить активацию %s сейчас " -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow left icon" msgid "←" msgstr "" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "" -#: includes/class-freemius.php19157, templates/pricing.php:110 +#: includes/class-freemius.php19165, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "Цены" @@ -2987,36 +2981,36 @@ msgctxt "noun" msgid "Price" msgstr "Стоимость " -#: includes/class-freemius.php:20392 +#: includes/class-freemius.php:20400 msgctxt "a positive response" msgid "Right on" msgstr "Все верно!" -#: includes/class-freemius.php21511, includes/class-freemius.php21783, -#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Хм..." -#: includes/class-freemius.php21525, templates/account.php132, +#: includes/class-freemius.php21533, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Тестовый период" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23255 msgctxt "as congratulations" msgid "Congrats" msgstr "Поздравления! " -#: includes/class-freemius.php:23512 +#: includes/class-freemius.php:23520 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Внимание!" -#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Начни тестовый период!" diff --git a/languages/freemius-ta.mo b/languages/freemius-ta.mo index 0fbe1eb42c0db62c20d833cafe9dd4c04cc27960..b3559142df784b8815ffd10ea4cf27db7f3122db 100644 GIT binary patch delta 9017 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 aHm|A^88bH0bL~X5XZyKgyDpCQ-Tr?mrCw72 diff --git a/languages/freemius-ta.po b/languages/freemius-ta.po index d84ff7d8f..d2265c4bc 100644 --- a/languages/freemius-ta.po +++ b/languages/freemius-ta.po @@ -1,4 +1,4 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: # Sankar Srinivasan , 2019 @@ -6,871 +6,975 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Sankar Srinivasan , 2019\n" -"Language-Team: Tamil (http://www.transifex.com/freemius/wordpress-sdk/language/ta/)\n" -"Language: ta\n" +"Language-Team: Tamil " +"(http://app.transifex.com/freemius/wordpress-sdk/language/ta/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;" -"fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "எச்சரிக்கை: %sன் முன்னோட்ட Beta பதிப்பின் மேம்பட்ட வடிவம் பழைய பதிப்பின் மீது நிறுவப்படுகிறது. " +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"எச்சரிக்கை: %sன் முன்னோட்ட Beta பதிப்பின் மேம்பட்ட வடிவம் பழைய பதிப்பின் " +"மீது நிறுவப்படுகிறது. " -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "மேம்படுத்தப்பட்ட பதிப்பில் தொடர விரும்புகிறீர்களா?" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "ப்ளக்இன் முக்கிய கோப்பை Freemius SDKவால் கண்டறிய முடியவில்லை. தயவுசெய்து பின்வரும் செய்தியுடன் sdk@freemius.comக்கு மின்னஞ்சல் அனுப்பவும்" +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"ப்ளக்இன் முக்கிய கோப்பை Freemius SDKவால் கண்டறிய முடியவில்லை. தயவுசெய்து " +"பின்வரும் செய்தியுடன் sdk@freemius.comக்கு மின்னஞ்சல் அனுப்பவும்" -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "தவறு" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "எனக்கு வேறு ஒரு நல்ல %s கிடைத்துவிட்டது" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "%sன் பெயர் என்ன?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "செயல்நிறுத்து" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "தீம் மாற்றம்" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "மற்றவை" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "இனி எனக்கு %s தேவையில்லை" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "குறுகிய காலத்திற்கு மட்டும் %s போதும்" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s எனது இணையதளத்தை செயலிழக்க வைத்துவிட்டது" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s திடீரென நின்றுவிட்டது" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "இதற்குமேல் பணம் செலுத்தமாட்டேன்" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "என்ன விலை உங்களுக்கு வசதியாக இருக்கும்?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "என் தனிப்பட்ட தகவலை உங்களோடு பகிர விரும்பவில்லை." -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s வேலை செய்யவில்லை" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "இதை எப்படி உபயோகிப்பது என்று எனக்குப் புரியவில்லை" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s நல்லதுதான். ஆனால், எனக்கு தேவைப்படும் வசதி இதில் இல்லை" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "என்ன வசதி?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s சரிவர வேலை செய்யவில்லை" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "என்ன வேலை செய்யவில்லை என்பதை விளக்கமாக சொன்னால், அதை நாங்கள் சரி செய்வோம்." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "நான் எதிர்பார்த்தது இதுவல்ல." -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "நீங்கள் என்ன எதிர்பார்க்கிறீர்கள்?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s நான் எதிர்பார்த்தது போல் இல்லை" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "நீங்கள் என்ன எதிர்பார்த்தீர்கள்?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius தவறுநீக்கி Debug" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Yee-haw" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s இல்லாமல் %s இயங்காது" - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது" - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, -#: includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "அரே ஓ சம்போ!" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "உங்களிடம் %sன் உரிமம் உள்ளது" -#: includes/class-freemius.php:5961 -msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "ஆட் ஆன் விலையுள்ளது என்பதால் %sன் விலையில்லா முன்னோட்டம் ரத்தானது. நீங்கள் உரிமம் வாங்கிப் பயன்பாட்டைத் தொடரலாம்." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது." + +#: includes/class-freemius.php:6034 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "" +"ஆட் ஆன் விலையுள்ளது என்பதால் %sன் விலையில்லா முன்னோட்டம் ரத்தானது. நீங்கள் " +"உரிமம் வாங்கிப் பயன்பாட்டைத் தொடரலாம்." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." msgstr "%s ஒரு விலையுள்ள ஆட்ஆன். ப்ளக்இன் செயல்பட நீங்கள் உரிமம் வாங்கவேண்டும்" -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "%s குறித்த மேலதிக தகவல்" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "உரிமம் வாங்குங்கள்" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "வெள்ளோட்டம் துவங்கலாம்" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "வெள்ளோட்டம் துவங்கலாம்" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "இன்னும் ஒருபடி அருகில் - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "\"%s\" செயல்படுத்தலை முடியுங்கள்" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "%s, %sக்கு சில சுவாரஸ்யங்களை உருவாக்கியிருக்கிறோம்" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு செய்யுங்கள்" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "%sன் மேம்படுத்தல் முடிந்தது" -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "ஆட் ஆன்" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "ப்ளக்இன்" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "தீம்" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "உபயோகிப்பாளரின் பீட்டாவை செயல்படுத்துகையில், புதிய தவறு உருவாகியுள்ளது." -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு செய்திருக்கிறார்." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு " +"செய்திருக்கிறார்." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை அழுத்தவும்." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை " +"அழுத்தவும்." -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "உரிமை மாற்றம்" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "தவறான தள விவர சேர்ப்பு" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. " - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14564 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" msgstr "இந்த மின்னஞ்சலின் பதிவில் எந்த உரிமமும் இல்லை. தங்கள் மின்னஞ்சல் சரியானதா?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "" +#: includes/class-freemius.php:14562 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. " -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "புது உரிமம் வாங்குங்கள்" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "உரிமத்தை புதுப்பியுங்கள்" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "புது உரிமம் வாங்குங்கள்" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "%s பாதுகாப்பு மேம்படுத்தல் மற்றும் உதவிக்கு %s" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது" -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது." + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "%sஐ செயல்படுத்த முடியவில்லை." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "பின்வரும் செய்தியோடு எங்களைத் தொடர்பு கொள்ளுங்கள்" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "மேம்படுத்து" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "வெள்ளோட்டம் துவக்கு" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "விலை விவரம்" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "வெள்ளோட்டம் துவக்கு" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "புரிந்துணர்வு" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "கணக்கு" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19114, includes/class-freemius.php19116, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "தொடர்பு கொள்ளுங்கள்" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "ஆட்-ஆன்ஸ்" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "விலை விவரம்" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "உதவி மையம்" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கப்பட்டது - நன்றி!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Right on" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20930 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "உங்கள் %s ஆட்-ஆன் திட்டம் மேம்படுத்தப்பட்டது." -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s ஆட்-ஆனை வாங்கிவிட்டீர்கள்." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "புதிய பதிப்பை பதிவிறக்கலாம்" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்." +#: includes/class-freemius.php:21288 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public " +"Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது." -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -msgstr "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். " - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "வெள்ளோட்டம்" +#: includes/class-freemius.php:21532 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" +"நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை " +"மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். " -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "எங்களை இங்கு அணுகலாம்" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் தொடரலாம். " +msgstr "" +"உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் " +"தொடரலாம். " -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை மேம்படுத்துங்கள்." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை " +"மேம்படுத்துங்கள்." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை அணுகவும்." +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை " +"அணுகவும்." -#: includes/class-freemius.php:21554 -msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -msgstr "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்." +#: includes/class-freemius.php:21603 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "" +"உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், " +"தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$sஇவற்றை மேம்படுத்துங்கள்." +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s " +"%2$sஇவற்றை மேம்படுத்துங்கள்." -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21677 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்." +#: includes/class-freemius.php:21958 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் " +"முயற்சிக்கவும்." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்." -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை." + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +#: includes/class-freemius.php:22141 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "" "94%match\n" -"உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்" +"உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் " +"முயற்சிக்கவும்" -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது." + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "நல்லது... மகிழ்ச்சி" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "%s பதிப்பு வெளியாகிவிட்டது." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "%sஐ பதிவிறக்கலாம்." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "%sன் அண்மைய பதிப்பு இதோ" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "புதியது" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "நல்லது... மகிழ்ச்சி" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்." +#: includes/class-freemius.php:22908 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 " +"நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "தளம் தெரிவு செய்யப்பட்டது." -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "அடி தூள்" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23065 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "நன்றி!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23233 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23247 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு " +"இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது." -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது." - -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "கணக்கின் புதிய உரிமையாளர் %s." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "வாழ்த்துக்கள்" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "உங்கள் பெயர் ஏற்றப்பட்டது." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "உங்கள் முழுப் பெயரைத் தரவும்." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "உங்கள் பெயர் ஏற்றப்பட்டது." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "உங்கள் %s மேம்படுத்தப்பட்டது." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23406 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +#: includes/class-freemius.php:23519 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்." -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Heads up" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" - -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் " +"விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "கடன் அட்டை தேவையில்லை" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்" - -#: includes/class-freemius.php:24182 -msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -msgstr "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!" +#: includes/class-freemius.php:24242 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" +msgstr "" +"வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் " +"விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "மேலும் அறிய" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "உரிமம் செயல்படுத்த" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "உரிமம் மாற்ற" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "தெரிவை அகற்று" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "தெரிவு செய்" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த அதை செயல்படுத்தவும். %3$s" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "%s வசதிகளை செயல்படுத்த" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "தெரிவை அகற்று" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +"%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த " +"அதை செயல்படுத்தவும். %3$s" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "%s வசதிகளை செயல்படுத்த" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது." -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "module ID தவறானது." -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது." + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்." -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது." - -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "%s பயன்படுத்துவதற்கு நன்றி!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ மேம்படுத்த உதவும்." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் உருவாக்கத்தை மேம்படுத்த உதவும்." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் " +"உருவாக்கத்தை மேம்படுத்த உதவும்." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%sம் அதன் ஆட்-ஆன்களும்" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "தயாரிப்புகள்" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "%s பயன்படுத்துவதற்கு நன்றி!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ " +"மேம்படுத்த உதவும்." + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "ஆம்" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும்." +msgstr "" +"பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு " +"அனுப்பவும்." -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "இல்லை" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும். %s செய்க, %s தேவையில்லை" +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு " +"அனுப்பவும். %s செய்க, %s தேவையில்லை" -#: includes/class-freemius.php:25866 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)" +#: includes/class-freemius.php:25932 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" +"புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான " +"உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்." +#: includes/class-freemius.php25934, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு " +"நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்." -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "License key காலியாக உள்ளது." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "உரிமத்தை புதுப்பியுங்கள்" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "உரிமம் வாங்க" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "%sன் %s கிடைக்கிறது." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "புதிய பீட்டா பதிப்பு" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "புதிய பதிப்பு" @@ -878,605 +982,534 @@ msgstr "புதிய பதிப்பு" msgid "Important Upgrade Notice:" msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "%s: பிளக்இன் நிறுவப்படுகிறது" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." msgstr "பெயர் மாற்றமுடியாது. Slug உடனான folder, பிளக்இன் பேக்கில் இல்லை." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "மேலும் வாங்குக" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "வாங்குக" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "என் விலையில்லா %sஐ துவக்கவும்" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "மேம்படுத்தலை நிறுவலாம்" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "விலையில்லா பதிப்பை நிறுவலாம்" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "நிறுவலாம்" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "அண்மைய பதிப்பை பதிவிறக்க" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "மேம்படுத்தலை நிறுவலாம்" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "ஆட்-ஆன் செயல்படுத்த" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "விலையில்லா பதிப்பை செயல்படுத்த" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "செயல்படுத்து" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "விளக்கம்" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "நிறுவுதல்" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "திரை நகல்கள்" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "கருத்துரைகள்" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "பிற குறிப்புகள்" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "வசதிகள் & விலை" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "பிளக்இன் நிறுவுதல்" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s திட்டம்" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "சிறப்பு" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "மாதாமாதம்" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "ஆண்டு" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "வாழ்நாள்" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s பில் எழுதப்பட்டது" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "ஆண்டுக்காண்டு" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "ஒருமுறை" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "ஒரு தள உரிமம்" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "பல்தள உரிமம்" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "%s தளங்கள் வரை" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "மாதம்" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "வருடம்" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "விலை" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "%s சேமிக்கலாம்" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "%sக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "விலையில்லா %sக்குப் பிறகு, குறைந்தளவு %s செலுத்துங்கள்" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "விபரங்கள்" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "பதிப்பு" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "உருவாக்கியவர்" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "கடைசி மேம்படுத்தல்" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s முன்பு" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "WordPress பதிப்பை வேண்டுகிறது" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s அல்லது அதிகமாக" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "ஒத்திசைவு உயர்நிலை" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "பதிவிறக்கப்பட்டது" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s முறை" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s முறைகள்" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org பிளக்இன் பக்கம்" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "பிளக்இன் முகப்புப்பக்கம்" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "இந்த பிளக்இன்னுக்கு நன்கொடை தாருங்கள்" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "உத்தேச மதிப்பீட்டெண்" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "%s அடிப்படையிலானது" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s மதிப்பீட்டெண்" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s மதிப்பீட்டெண்கள்" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s நட்சத்திரம்" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s நட்சத்திரங்கள்" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "%s குறித்த மதிப்பீடு & விமர்சனங்களை கிளிக் செய்து காண்க" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "பங்கெடுத்தோர்" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "எச்சரிக்கை" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"இந்த பிளக்இன் உங்கள் WordPress பதிப்புடன் ஒத்திசைவானது என்று " +"குறிக்கப்படவில்லை." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "இந்த பிளக்இன் உங்கள் தற்போதைய WordPress பதிப்புடன் சோதிக்கப்படவில்லை." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "இந்த பிளக்இன் உங்கள் WordPress பதிப்புடன் ஒத்திசைவானது என்று குறிக்கப்படவில்லை." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "விலையுள்ள ஆட்ஆன் Freemiusல் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." -msgstr "ஆட்ஆன் WordPress.org அல்லது Freemius ஏதாவது ஒன்றில் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்." - -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "புதிய பதிப்பு (%s) நிறுவப்பட்டது" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "புதிய விலையில்லா பதிப்பு (%s) நிறுவப்பட்டது" +msgstr "" +"ஆட்ஆன் WordPress.org அல்லது Freemius ஏதாவது ஒன்றில் வரிசைப்படுத்தப் " +"பட்டிருக்க வேண்டும்." -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "சமீபத்திய பதிப்பு நிறுவப்பட்டது" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "புதிய பதிப்பு (%s) நிறுவப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "புதிய விலையில்லா பதிப்பு (%s) நிறுவப்பட்டது" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "உங்கள் திட்டம் கீழ்ப்படுத்தப்படுகிறது" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "சந்தா ரத்தாகிறது" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "வருகின்ற அனைத்து பணம் செலுத்துதல்களையும் %1$s உடன் நிறுத்துகிறது, மற்றும் உங்கள் %2$s திட்ட உரிமம் %3$sல் காலாவதியாகிறது." - -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "தயவுசெய்து கவனிக்கவும். ரத்துசெய்த பிறகு மீண்டும் புதிய சந்தா/புதுப்பித்தலுக்கு பழைய விலையை எங்களால் வசூலிக்க முடியாது. விலை ஆண்டுக்கொரு முறை உயரும். நீங்கள் இனி புதுப்பிக்க விரும்பினால் புதிய விலையை செலுத்தவேண்டும்." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"வருகின்ற அனைத்து பணம் செலுத்துதல்களையும் %1$s உடன் நிறுத்துகிறது, மற்றும் " +"உங்கள் %2$s திட்ட உரிமம் %3$sல் காலாவதியாகிறது." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "வெள்ளோட்டத்தை ரத்து செய்தால் அனைத்து விலையுள்ள வசதிகளும் நிறுத்தப்படும். சரியா?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"தயவுசெய்து கவனிக்கவும். ரத்துசெய்த பிறகு மீண்டும் புதிய " +"சந்தா/புதுப்பித்தலுக்கு பழைய விலையை எங்களால் வசூலிக்க முடியாது. விலை " +"ஆண்டுக்கொரு முறை உயரும். நீங்கள் இனி புதுப்பிக்க விரும்பினால் புதிய விலையை " +"செலுத்தவேண்டும்." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"வெள்ளோட்டத்தை ரத்து செய்தால் அனைத்து விலையுள்ள வசதிகளும் நிறுத்தப்படும். " +"சரியா?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "நீங்கள் %sன் வசதிகளை பயன்படுத்த முடியும். ஆனால் %s பாதுகாப்பு & மேம்படுத்தல் மற்றும் உதவியை அணுக இயலாது." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"நீங்கள் %sன் வசதிகளை பயன்படுத்த முடியும். ஆனால் %s பாதுகாப்பு & " +"மேம்படுத்தல் மற்றும் உதவியை அணுக இயலாது." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "உங்கள் உரிமம் முடிந்ததும் நீங்கள் அனைத்து விலையில்லா வசதிகளையும் பயன்படுத்திக் கொள்ள முடியும். ஆனால் %s வசதிகளை அணுக இயலாது." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"உங்கள் உரிமம் முடிந்ததும் நீங்கள் அனைத்து விலையில்லா வசதிகளையும் " +"பயன்படுத்திக் கொள்ள முடியும். ஆனால் %s வசதிகளை அணுக இயலாது." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "%s திட்டம் செயல்படுத்த" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "%sல் தானாக புதுப்பிக்கிறது" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "%sல் காலாவதியாகிறது" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sync License" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "வெள்ளோட்டம் ரத்து செய்க" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "திட்டம் மாற்ற" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "மேம்படுத்து" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "தரமிறக்கு" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "விலையில்லை" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "திட்டம்" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "கூட்டுத்திட்டம்" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "விலையில்லா வெள்ளோட்டம்" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "கணக்கு விபரங்கள்" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "பில் & இன்வாய்ஸ்" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "உரிமத்தை செயல்நிறுத்த" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "மேலே தொடர விருப்பமா?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "சந்தாவை ரத்து செய்" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "பெயர்" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "உபயோகிப்பாளர் ஐடி" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ஐடி" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "இணையதள ஐடி" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "ஐடி இல்லை" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Public Key" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Secret Key" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "No Secret" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "License Key" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "வெள்ளோட்டம்" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "License Key" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "பீட்டா பதிப்பு சோதனையில் சேரவும்" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "உறுதிப்படுத்தப்படவில்லை" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "காலாவதியானது" +#: templates/account.php:600 +msgid "Free version" +msgstr "விலையில்லா பதிப்பு" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "விலையுள்ள பதிப்பு" -#: templates/account.php:604 -msgid "Free version" -msgstr "விலையில்லா பதிப்பு" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "காலாவதியானது" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "மின்னஞ்சல் சரிபார்த்திடுங்கள்" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "%s பதிப்பை பதிவிறக்கலாம்" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "காட்டு" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "உங்கள் %s என்ன?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "திருத்து" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "%s பதிப்பை பதிவிறக்கலாம்" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "தளங்கள்" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "முகவரி மூலம் தேட" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "முகவரி" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "உரிமம்" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "திட்டம்" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "உரிமம்" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "மறைத்திடு" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "செயலில்" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "%sன் பீட்டா பதிப்பு மேம்படுத்தலைப் பெறுங்கள்." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "%s ரத்தாகிறது" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "வெள்ளோட்டம்" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "%s ரத்தாகிறது..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "சந்தா" -#: templates/account.php:1036 -msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -msgstr "உரிமத்தை செயல்நிறுத்துவதானது, அனைத்து விலையுள்ள வசதிகளையும் நிறுத்திவிடும். ஆனாலும் பிற தளங்களில் செயல்படுத்தலாம். தொடரலாமா?" +#: templates/account.php:1032 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" +"உரிமத்தை செயல்நிறுத்துவதானது, அனைத்து விலையுள்ள வசதிகளையும் நிறுத்திவிடும். " +"ஆனாலும் பிற தளங்களில் செயல்படுத்தலாம். தொடரலாமா?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1489,25 +1522,13 @@ msgid "Add Ons for %s" msgstr "%sக்கான ஆட்ஆன்கள்" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "செயல்பாட்டில்" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "நிறுவப்பட்டது" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "போய்த் தொலை" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s sec" @@ -1516,12 +1537,22 @@ msgid "Automatic Installation" msgstr "தானியங்கி நிறுவுதல்" #: templates/auto-installation.php:93 -msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." -msgstr "%sலிருந்து %s (பணம் செலுத்திய) பதிப்பின் தானியங்கி பதிவிறக்கமும், நிறுவுதலும் %sல் ஆரம்பமாகும். இதை நீங்களே செய்ய விரும்பினால் ரத்து செய்யும் பட்டனை அழுத்தவும். " +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" +"%sலிருந்து %s (பணம் செலுத்திய) பதிப்பின் தானியங்கி பதிவிறக்கமும், " +"நிறுவுதலும் %sல் ஆரம்பமாகும். இதை நீங்களே செய்ய விரும்பினால் ரத்து செய்யும் " +"பட்டனை அழுத்தவும். " #: templates/auto-installation.php:104 -msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." -msgstr "நிறுவப்படுகிறது. சில நிமிடங்கள் காத்திருக்கவும். இந்தப் பக்கத்தை Refresh செய்யவேண்டாம்." +msgid "" +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." +msgstr "" +"நிறுவப்படுகிறது. சில நிமிடங்கள் காத்திருக்கவும். இந்தப் பக்கத்தை Refresh " +"செய்யவேண்டாம்." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1535,172 +1566,172 @@ msgstr "Checkout" msgid "PCI compliant" msgstr "PCI compliant" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "வணக்கம் %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "அனுமதித்து தொடர்க" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "செயல்படுத்தும் மின்னஞ்சலை மீண்டும் அனுப்புக" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "நன்றி %s!" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "செயல்படுத்தும் மின்னஞ்சலை மீண்டும் அனுப்புக" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "நன்றி %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Freemius network-level integrationஐ அறிமுகம் செய்வதில் பேருவகை அடைகிறோம்." -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "மேம்படுத்தல் நடைபெறும்போதே இன்னும் %d தளங்களில் உரிமம் செயல்பாட்டில் இல்லை என்று அறிகிறோம்." - #: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "அந்தத் தளங்களிலும் %sஐ உபயோகிக்க விரும்பினால், கீழே License Key உள்ளிட்டு செயல்படுத்தலை அழுத்தவும்." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"மேம்படுத்தல் நடைபெறும்போதே Networkல்லுள்ள %s தளங்கள் உங்கள் கவனிப்பைக் " +"கோருகின்றன என்றறிகிறோம்." + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"மேம்படுத்தல் நடைபெறும்போதே இன்னும் %d தளங்களில் உரிமம் செயல்பாட்டில் இல்லை " +"என்று அறிகிறோம்." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"அந்தத் தளங்களிலும் %sஐ உபயோகிக்க விரும்பினால், கீழே License Key உள்ளிட்டு " +"செயல்படுத்தலை அழுத்தவும்." -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%sன் விலையுள்ள வசதிகள்" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "இல்லாவிட்டால், Network-level கணக்குப் பக்கத்தில் எப்போது வேண்டுமானாலும் உரிமத்தை செயல்படுத்திக் கொள்ளலாம்." - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "மேம்படுத்தல் நடைபெறும்போதே Networkல்லுள்ள %s தளங்கள் உங்கள் கவனிப்பைக் கோருகின்றன என்றறிகிறோம்." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"இல்லாவிட்டால், Network-level கணக்குப் பக்கத்தில் எப்போது வேண்டுமானாலும் " +"உரிமத்தை செயல்படுத்திக் கொள்ளலாம்." -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "License key" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "License Key காணவில்லையா?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "கடந்திடு" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "தள நிர்வாகிகளுக்கான சிறப்பாளர்" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "இதை கிளிக் செய்தால், இந்த முடிவு தள நிர்வாகிகளுக்கு அனுப்பப்படும்." -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "License Key இல்லையா?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "License key உள்ளதா?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "License Key இல்லையா?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "தனியுரிமைக் கொள்கைகள்" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "உரிம ஒப்பந்தம்" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "சேவை நிபந்தனைகள்" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "மின்னஞ்சல் அனுப்பப்படுகிறது" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "செயல்படுத்துகிறது" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "உரிம ஒப்பந்தம்" #: templates/contact.php:78 msgid "Contact" msgstr "தொடர்பு" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Off" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "On" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "தவறை சோதிக்கிறது" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "செயல்கள்" @@ -1748,11 +1779,6 @@ msgstr "Key" msgid "Value" msgstr "Value" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK பதிப்புகள்" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK Path" @@ -1773,7 +1799,8 @@ msgstr "பிளக்இன்கள்" msgid "Themes" msgstr "தீம்கள்" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1781,11 +1808,6 @@ msgstr "Slug" msgid "Title" msgstr "தலைப்பு" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius நிலை" @@ -1798,21 +1820,6 @@ msgstr "Network Blog" msgid "Network User" msgstr "Network பயனர்" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "இணைக்கப்பட்டது" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "தடுக்கப்பட்டது" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" @@ -1822,14 +1829,10 @@ msgid "Simulate Network Upgrade" msgstr "Simulate Network Upgrade" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s நிறுவுதல்கள்" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "தளங்கள்" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1838,11 +1841,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "அழி" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Module %sன் ஆட்ஆன்கள்" @@ -1879,15 +1877,11 @@ msgstr "செயல்படுத்தப்பட்டது" msgid "Blocking" msgstr "தடுக்கப்படுகிறது" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "மாதிரி" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "காலாவதி" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1900,11 +1894,13 @@ msgstr "அனைத்து மாதிரிகள்" msgid "All Requests" msgstr "அனைத்து வேண்டுகோள்கள்" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "File" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Function" @@ -1916,7 +1912,8 @@ msgstr "Process ID" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "செய்தி" @@ -1933,18 +1930,15 @@ msgid "Timestamp" msgstr "நேர முத்திரை" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "பாதுகாப்பான HTTPS %s பக்கம், வெளி முகவரியிலிருந்து இயங்குகிறது" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "உதவி" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1961,16 +1955,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1982,7 +1982,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1998,10 +2000,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "உரிமம்" @@ -2033,11 +2038,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "தயாரிப்புகள்" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2047,12 +2047,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2060,7 +2058,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2076,7 +2076,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2084,6 +2089,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2091,8 +2097,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2100,6 +2109,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2111,7 +2121,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2120,7 +2131,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2132,7 +2147,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2144,7 +2161,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2155,11 +2175,6 @@ msgstr "செய்திக்கடிதம்" msgid "Updates, announcements, marketing, no spam" msgstr "மேம்படுத்தல், அறிவிப்புகள், வணிக செய்திகள். Spam இல்லை" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "மேம்படுத்து" - #: templates/account/billing.php:33 msgid "Billing" msgstr "வசூல்" @@ -2172,7 +2187,8 @@ msgstr "தொழிலின் பெயர்" msgid "Tax / VAT ID" msgstr "Tax / VAT ID" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "முகவரி வரி %d" @@ -2220,16 +2236,6 @@ msgstr "தொகை" msgid "Invoice" msgstr "இன்வாய்ஸ்" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "தெரிவை அகற்று" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "தெரிவு செய்" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2246,11 +2252,6 @@ msgstr "Code" msgid "Length" msgstr "நீளம்" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "வழி" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "அமைப்பு" @@ -2271,21 +2272,18 @@ msgstr "முடிவு" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "%sல்" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s முன்பு" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "பிளக்இன் & தீம் Sync" @@ -2294,7 +2292,8 @@ msgstr "பிளக்இன் & தீம் Sync" msgid "Total" msgstr "மொத்தம்" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "கடைசி" @@ -2318,143 +2317,183 @@ msgstr "Cron மாதிரி" msgid "Next" msgstr "அடுத்து" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "காலாவதியாகாதது" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Affiliate ஆக விண்ணப்பியுங்கள்" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "%sக்கான உங்கள் Affiliate விண்ணப்பம் ஏற்கப்பட்டது. உள்நுழைந்து %sல் உங்கள் affiliate areaவை அணுகவும்." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"எங்கள் affiliate திட்ட விதிமுறை மீறல் காரணமாக உங்கள் affiliate கணக்கை " +"தற்காலிகமாக தடை செய்கிறோம். கேள்விகள் இருந்தால் உதவியை தொடர்பு கொள்ளவும்." -#: templates/forms/affiliation.php:123 -msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." -msgstr "எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. உங்கள் விவரங்களை பரிசீலித்து, 14 நாட்களில் மேலதிக தகவலோடு தொடர்பு கொள்கிறோம்." +#: templates/forms/affiliation.php:134 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" +"எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. எதிர்பாரா விதமாக " +"உங்கள் விண்ணப்பம் தள்ளுபடி செய்யப்பட்டது. 30 நாட்களில் மீண்டும் " +"விண்ணப்பிக்கவும்." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "உங்கள் affiliate கணக்கு தற்காலிகமாக இடைநிறுத்தப்பட்டுள்ளது." -#: templates/forms/affiliation.php:129 -msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." -msgstr "எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. எதிர்பாரா விதமாக உங்கள் விண்ணப்பம் தள்ளுபடி செய்யப்பட்டது. 30 நாட்களில் மீண்டும் விண்ணப்பிக்கவும்." +#: templates/forms/affiliation.php:128 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" +"எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. உங்கள் விவரங்களை " +"பரிசீலித்து, 14 நாட்களில் மேலதிக தகவலோடு தொடர்பு கொள்கிறோம்." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "எங்கள் affiliate திட்ட விதிமுறை மீறல் காரணமாக உங்கள் affiliate கணக்கை தற்காலிகமாக தடை செய்கிறோம். கேள்விகள் இருந்தால் உதவியை தொடர்பு கொள்ளவும்." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"%sக்கான உங்கள் Affiliate விண்ணப்பம் ஏற்கப்பட்டது. உள்நுழைந்து %sல் உங்கள் " +"affiliate areaவை அணுகவும்." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "%sஐ விரும்புகிறீர்களா? எங்கள் Ambassador ஆக பணியாற்றி பணம் பெறலாம் :-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "எங்கள் %sக்கு புதிய வாடிக்கையாளர்களை பரிந்துரை செய்து, ஒவ்வொரு விற்பனைக்கும் %s லாபப் பங்கீடாகப் பெறலாம்." +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"எங்கள் %sக்கு புதிய வாடிக்கையாளர்களை பரிந்துரை செய்து, ஒவ்வொரு " +"விற்பனைக்கும் %s லாபப் பங்கீடாகப் பெறலாம்." -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "திட்டத்தின் சுருக்கம்" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "ஒரு வாடிக்கையாளர் புது உரிமம் வாங்கும்போது %s லாபப் பங்கீடு." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "தானியங்கி சந்தா புதுப்பித்தலுக்கும் லாபப் பங்கீடு பெறுங்கள்." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "வருமானம் அதிகரிக்க, முதல் தள வருகையில் %s tracking cookie." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "அளவில்லா லாபப் பங்கீடு." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s குறைந்தபட்ச பணம் பெறுதல்." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "பணம் பெறுதல் USDயில் மாதாமாதம் PayPal மூலம் பெறலாம்." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "வாடிக்கையாளர் 30 நாட்களுக்கு பணம் திரும்பப் பெறலாம் Refund என்பதால் உங்களுக்கு லாபப் பங்கீடு 30 நாட்களுக்குப் பிறகே கிடைக்கும்." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"வாடிக்கையாளர் 30 நாட்களுக்கு பணம் திரும்பப் பெறலாம் Refund என்பதால் " +"உங்களுக்கு லாபப் பங்கீடு 30 நாட்களுக்குப் பிறகே கிடைக்கும்." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "மின்னஞ்சல் முகவரி" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "முழுப்பெயர்" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal கணக்கின் மின்னஞ்சல் முகவரி" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "%sஐ எங்கு எப்படி முன்னிலைப் படுத்துவீர்கள்?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "%sஐ எந்தெந்த தளங்களில் முன்னிலைப் படுத்துவீர்களோ அந்தத் தளங்களின் பெயர்களை உள்ளிடுங்கள்." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"%sஐ எந்தெந்த தளங்களில் முன்னிலைப் படுத்துவீர்களோ அந்தத் தளங்களின் பெயர்களை " +"உள்ளிடுங்கள்." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "அடுத்த தளத்தைச் சேர்க்க" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "மேலதிக தளங்கள்" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "தயாரிப்புகளை சந்தைப்படுத்தும் மேலதிக தளங்கள்." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "முன்னிலைப்படுத்தும் வழிமுறைகள்" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "சமூக ஊடகங்கள் (Facebook, Twitter etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "அலைபேசி செயலிகள்" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "இணையதளம், மின்னஞ்சல் மற்றும் சமூக ஊடக புள்ளி விவரங்கள் (விரும்பினால் தரலாம்)" -#: templates/forms/affiliation.php:214 -msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." -msgstr "இணைய தள அல்லது சமூக ஊடக வருகையாளர் எண்ணிக்கை, மின்னஞ்சல் சந்தாதாரர்கள், பின்தொடர்வோர் போன்ற புள்ளிவிவரங்கள் தருக. (நாங்கள் ரகசியம் காப்போம்)" +#: templates/forms/affiliation.php:219 +msgid "" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "" +"இணைய தள அல்லது சமூக ஊடக வருகையாளர் எண்ணிக்கை, மின்னஞ்சல் சந்தாதாரர்கள், " +"பின்தொடர்வோர் போன்ற புள்ளிவிவரங்கள் தருக. (நாங்கள் ரகசியம் காப்போம்)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "எங்களை நீங்கள் எப்படி முன்னிலைப் படுத்துவீர்கள்?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "%sஐ எப்படி முன்னிலைப் படுத்துவீர்கள் என்ற விவரம் தரவும். (தயவுசெய்து குறிப்பிட்டுச் சொல்லவும்)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"%sஐ எப்படி முன்னிலைப் படுத்துவீர்கள் என்ற விவரம் தரவும். (தயவுசெய்து " +"குறிப்பிட்டுச் சொல்லவும்)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "ரத்து" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Affiliate ஆகுங்கள்" @@ -2463,7 +2502,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2478,11 +2520,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "போய்த் தொலை" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2515,12 +2552,15 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "மேம்படுத்து" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "உங்கள் மின்னஞ்சலுக்கு வந்த License Keyஐ உள்ளிடுங்கள்:" #: templates/forms/license-activation.php:28 @@ -2528,17 +2568,24 @@ msgid "Update License" msgstr "உரிமம் மேம்படுத்த" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "ஒப்புக்கொண்டு உரிமத்தை செயல்படுத்துக" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2559,10 +2606,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "%sன் புதிய பதிப்பு இப்போது கிடைக்கிறது." @@ -2575,42 +2618,63 @@ msgstr "%s பதிப்பின் பாதுகாப்பு & வச msgid "New Version Available" msgstr "புதிய பதிப்பு கிடைக்கிறது" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "போய்த் தொலை" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "License key அனுப்புக" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "தரம் உயர்த்துதலின் போது நீங்கள் உள்ளிட்ட மின்னஞ்சல் முகவரியைத் தந்தால், license keyஐ மீண்டும் அனுப்புகிறோம்." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"தரம் உயர்த்துதலின் போது நீங்கள் உள்ளிட்ட மின்னஞ்சல் முகவரியைத் தந்தால், " +"license keyஐ மீண்டும் அனுப்புகிறோம்." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "%sஐ செயல்நிறுத்தினாலோ, அகற்றினாலோ பிற தளங்களில் பயன்படுத்தும் வாய்ப்பிருந்தும், உரிமம் தானாகவே செயலிழக்கும்." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"%sஐ செயல்நிறுத்தினாலோ, அகற்றினாலோ பிற தளங்களில் பயன்படுத்தும் " +"வாய்ப்பிருந்தும், உரிமம் தானாகவே செயலிழக்கும்." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "ஒருவேளை %s இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்கவில்லை என்றால் %sஐ ரத்து செய்ய விரும்புகிறீர்களா?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"ஒருவேளை %s இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்கவில்லை என்றால் %sஐ " +"ரத்து செய்ய விரும்புகிறீர்களா?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "நான் %sஐ இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்க விரும்பவில்லை என்பதால் %sக்கு உதவியோ, பாதுகாப்பு மேம்படுத்தலோ தேவையில்லை. %sஐ ரத்து செய்யவும்." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"நான் %sஐ இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்க விரும்பவில்லை என்பதால் " +"%sக்கு உதவியோ, பாதுகாப்பு மேம்படுத்தலோ தேவையில்லை. %sஐ ரத்து செய்யவும்." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "%s ரத்துசெய்ய வேண்டாம் - அதற்கு உதவியை அணுகவும், பாதுகாப்பு மேம்படுத்தல்களைப் பெறவும் விரும்புகிறேன்." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"%s ரத்துசெய்ய வேண்டாம் - அதற்கு உதவியை அணுகவும், பாதுகாப்பு " +"மேம்படுத்தல்களைப் பெறவும் விரும்புகிறேன்." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "மீண்டும் உரிமத்தை செயல்படுத்தினால் தவிர, உரிமம் காலாவதியானால் %s பயன்படுத்த முடியாது." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"மீண்டும் உரிமத்தை செயல்படுத்தினால் தவிர, உரிமம் காலாவதியானால் %s பயன்படுத்த " +"முடியாது." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2620,17 +2684,33 @@ msgstr "%s ரத்து செய்யவா?" msgid "Proceed" msgstr "தொடர்க" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "%s ரத்து செய்க & தொடர்க" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "%2$s திட்டத்தின் %1$s-நாள் விலையில்லா வெள்ளோட்டத்தைத் துவக்க இன்னும் 1 கிளிக் மட்டுமே." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"%2$s திட்டத்தின் %1$s-நாள் விலையில்லா வெள்ளோட்டத்தைத் துவக்க இன்னும் 1 " +"கிளிக் மட்டுமே." #: templates/forms/trial-start.php:28 -msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -msgstr "Wordpress.orgயின் வழிகாட்டு நெறிமுறைகள்படி, உங்கள் வெள்ளோட்டம் துவங்கும்முன் நாங்கள் கேட்டுக் கொள்வதெல்லாம், உங்கள் பயன்பாட்டுத் தகவலை நாங்கள் பின்தொடர எங்களை அனுமதிக்கும் தெரிவை தெரிவு செய்யுங்கள் என்பதே. இது %sஐ அனுமதித்து தகவலை %sக்கு அனுப்பச்செய்து மேம்படுத்தலுக்கு உதவும். மற்றும் உங்கள் வெள்ளோட்டத்தை உறுதிசெய்யும்." +#. translators: %s: Link to freemius.com +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." +msgstr "" +"Wordpress.orgயின் வழிகாட்டு நெறிமுறைகள்படி, உங்கள் வெள்ளோட்டம் " +"துவங்கும்முன் நாங்கள் கேட்டுக் கொள்வதெல்லாம், உங்கள் பயன்பாட்டுத் தகவலை " +"நாங்கள் பின்தொடர எங்களை அனுமதிக்கும் தெரிவை தெரிவு செய்யுங்கள் என்பதே. இது " +"%sஐ அனுமதித்து தகவலை %sக்கு அனுப்பச்செய்து மேம்படுத்தலுக்கு உதவும். மற்றும் " +"உங்கள் வெள்ளோட்டத்தை உறுதிசெய்யும்." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2656,14 +2736,6 @@ msgstr "Premium" msgid "Beta" msgstr "பீட்டா" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "வலைப்பின்னலில் உள்ள எல்லா தளங்களிலும் உரிமத்தை செயல்படுத்துக" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "வலைப்பின்னலின் அனைத்து தளங்களின் மீதும் பிரயோகிக்க" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "மீதமுள்ள எல்லா தளங்களிலும் உரிமத்தை செயல்படுத்துக" @@ -2672,19 +2744,31 @@ msgstr "மீதமுள்ள எல்லா தளங்களிலும msgid "Apply on all pending sites." msgstr "மீதமுள்ள அனைத்து தளங்களின் மீதும் பிரயோகிக்க" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "வலைப்பின்னலில் உள்ள எல்லா தளங்களிலும் உரிமத்தை செயல்படுத்துக" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "வலைப்பின்னலின் அனைத்து தளங்களின் மீதும் பிரயோகிக்க" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "அனுமதி" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "delegate" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "கடந்திடு" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "கிளிக் செய்து %dன் முழுஅளவு திரைநகல் காண்க" @@ -2696,39 +2780,37 @@ msgstr "அளவில்லா மேம்படுத்தல்கள்" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s இருக்கிறது" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "கடைசி உரிமம்" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s உடனடியாக அனைத்து எதிர்வரும் பணம் செலுத்தல்களை நிறுத்தும் மற்றும் உங்கள் %s திட்ட உரிமம் %sல் காலாவதியாகும்." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "ரத்தானது" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "காலாவதியாகாது" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "ரத்தானது" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2753,7 +2835,9 @@ msgstr "சந்தா" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "தவறுக்கு வருந்துகிறோம். எங்களுக்கு ஒரு வாய்ப்புத் தந்தால் உங்களுக்கு உதவக் காத்திருக்கிறோம்." +msgstr "" +"தவறுக்கு வருந்துகிறோம். எங்களுக்கு ஒரு வாய்ப்புத் தந்தால் உங்களுக்கு உதவக் " +"காத்திருக்கிறோம்." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2771,7 +2855,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2824,5 +2909,457 @@ msgid "Click here to use the plugin anonymously" msgstr "பிளக்இன்னை அநாமதேயமாக பயன்படுத்த இங்கே கிளிக் செய்யவும்" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "விட்டுவிட்டீர்கள், ஆனாலும் நீங்கள் எந்த தகவலையும் பகிர வேண்டியதில்லை %sதெரிந்தெடுப்பு மட்டுமே" +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"விட்டுவிட்டீர்கள், ஆனாலும் நீங்கள் எந்த தகவலையும் பகிர வேண்டியதில்லை " +"%sதெரிந்தெடுப்பு மட்டுமே" + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Yee-haw" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s இல்லாமல் %s இயங்காது" + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது" + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "அரே ஓ சம்போ!" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "\"%s\" செயல்படுத்தலை முடியுங்கள்" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "விலை விவரம்" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "விலை" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "Right on" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "வெள்ளோட்டம்" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "வாழ்த்துக்கள்" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Heads up" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "வாங்குக" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "மேம்படுத்து" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "தரமிறக்கு" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "திருத்து" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "காட்டு" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "மறைத்திடு" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "கடந்திடு" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "அழி" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "மேம்படுத்து" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "தெரிவை அகற்று" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "தெரிவு செய்" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "அண்மைய பதிப்பை பதிவிறக்க" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "விளக்கம்" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "நிறுவுதல்" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "கருத்துரைகள்" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "பிற குறிப்புகள்" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "வசதிகள் & விலை" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s திட்டம்" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "சிறப்பு" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "மாதாமாதம்" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "ஆண்டு" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "ஆண்டுக்காண்டு" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "ஒருமுறை" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s பில் எழுதப்பட்டது" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "மாதம்" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "வருடம்" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "பதிப்பு" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "உருவாக்கியவர்" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s முன்பு" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sync License" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "திட்டம்" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "No Secret" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "உரிமம்" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "செயல்பாட்டில்" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "நிறுவப்பட்டது" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "போய்த் தொலை" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "வணக்கம் %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "மின்னஞ்சல் அனுப்பப்படுகிறது" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "செயல்படுத்துகிறது" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Off" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "On" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "தவறை சோதிக்கிறது" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK பதிப்புகள்" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "இணைக்கப்பட்டது" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "தடுக்கப்பட்டது" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "தளங்கள்" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "காலாவதி" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "தயாரிப்புகள்" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "வழி" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "போய்த் தொலை" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "போய்த் தொலை" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s இருக்கிறது" diff --git a/languages/freemius-zh_CN.mo b/languages/freemius-zh_CN.mo index 6ac09184a8cf8253b5a23eeae6fcc69e0fe4d49f..d4f4fda1950f5c572e02489060430d3949d7d773 100644 GIT binary patch delta 19735 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 delta 13887 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 G`u!g!Aoo=O diff --git a/languages/freemius-zh_CN.po b/languages/freemius-zh_CN.po index 8fac1f33d..2beea9ac9 100644 --- a/languages/freemius-zh_CN.po +++ b/languages/freemius-zh_CN.po @@ -1,970 +1,936 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: +# linn Yu <977869645@qq.com>, 2023 # Xiaheng Chen , 2020 -# Yulinn <977869645@qq.com>, 2022 -# Yulinn <977869645@qq.com>, 2021-2022 +# linn Yu <977869645@qq.com>, 2022 +# linn Yu <977869645@qq.com>, 2021-2022 msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Yulinn <977869645@qq.com>, 2022\n" -"Language-Team: Chinese (China) (http://www.transifex.com/freemius/wordpress-sdk/language/zh_CN/)\n" -"Language: zh_CN\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"PO-Revision-Date: 2015-10-01 21:38+0000\n" +"Last-Translator: linn Yu <977869645@qq.com>, 2023\n" +"Language-Team: Chinese (China) " +"(http://app.transifex.com/freemius/wordpress-sdk/language/zh_CN/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-Basepath: ..\n" -"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;" -"fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;" -"get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;" -"fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;" -"fs_esc_html_echo_x_inline:1,2c\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_" +"inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_" +"html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1" +",2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_" +"inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 +#: includes/class-freemius.php1781, templates/account.php:943 msgid "" -"An update to a Beta version will replace your installed version of %s with the latest Beta release - " -"use with caution, and not on production sites. You have been warned." +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "测试版的更新将用最新的测试版替换您安装的%s版本-请小心使用,不要在生产站点上使用。你被警告了。" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "是否继续更新?" -#: includes/class-freemius.php:1980 +#: includes/class-freemius.php:2013 msgid "" -"Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current " -"error." +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." msgstr "Freemius SDK找不到插件的主文件。请关于当前错误与sdk@freemius.com联系。" -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "错误" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "我找到了更好的%s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "%s的名字是什么?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "这是一个临时的 %s - 我正在解决一个问题" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "停用" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "主题切换" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "其他" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "我不再需要%s" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "我只需要在短时间内使用%s" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s破坏了我的网站" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s突然停止工作" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "我再也付不起了" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "你愿意付出什么价钱?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "我不想和你分享我的信息" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s不起作用" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "我不明白该怎么做" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s很好,但我需要您不支持的特定功能" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "什么功能?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s不起作用" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "请分享什么地方出了错,以便我们可以为未来的用户修复它..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "这不是我要找的" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "你在找什么?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s没有按预期工作" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "你期望什么?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius 调试" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "您购买了 %s 许可证。" -#: includes/class-freemius.php:4759 +#: includes/class-freemius.php:4832 msgid "" -" The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you " -"can't find the email after 5 min, please check your spam box." -msgstr "" -"%s 的 %s 下载链接 %s、许可证密钥和安装说明已发送到 %s。如果您在 5 分钟后找不到该电子邮件,请检查您的" -"垃圾邮件箱。" - -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "哟哈" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "没有%s,%s无法运行。" - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "没有插件,%s无法运行。" - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, -#: includes/class-freemius.php14469, includes/class-freemius.php18281, -#: includes/class-freemius.php18394, includes/class-freemius.php18571, -#: includes/class-freemius.php20856, includes/class-freemius.php21955, -#: includes/class-freemius.php22971, includes/class-freemius.php23101, -#: includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "哎呀" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "%s 的 %s 下载链接 %s、许可证密钥和安装说明已发送到 %s。如果您在 5 分钟后找不到该电子邮件,请检查您的垃圾邮件箱。" -#: includes/class-freemius.php:5065 +#: includes/class-freemius.php:5138 msgid "" -"There was an unexpected API error while processing your request. Please try again in a few minutes " -"and if it still doesn't work, contact the %s's author with the following:" -msgstr "" - -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "高级%s版本已成功激活。" - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "处理您的请求时出现意外的 API 错误。请过几分钟再试,如果还是不行,请联系 %s 的作者并提供以下信息:" -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "您有%s许可证。" -#: includes/class-freemius.php:5961 +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "高级%s版本已成功激活。" + +#: includes/class-freemius.php:6034 msgid "" -"%s free trial was successfully cancelled. Since the add-on is premium only it was automatically " -"deactivated. If you like to use it in the future, you'll have to purchase a license." -msgstr "" -"%s免费试用已成功取消。因为附加组件是高级的,所以它被自动停用。如果你想在将来使用它,你必须购买许可" -"证。" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "%s免费试用已成功取消。因为附加组件是高级的,所以它被自动停用。如果你想在将来使用它,你必须购买许可证。" -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." msgstr "%s是一款仅限高级的附加组件。在激活插件之前,必须先购买许可证。" -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "有关%s的详细信息" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "购买许可证" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "" -"You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click " -"the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "开始试用" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." -msgstr "" +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "在接下来的 5 分钟内,您将在 %2$s 的邮箱中收到 %3$s 的 %1$s。" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" -msgstr "" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "%s获得许可证后激活它。" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" -msgstr "" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "如果您没有收到电子邮件,请尝试检查您的垃圾邮件文件夹或搜索来自%4$s。" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." -msgstr "" +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "谢谢你的升级。" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" -msgstr "" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "您应该会在 %2$s 的邮箱中收到一封 %1$s 的确认邮件。请确保您点击了发送至 %3$s 的电子邮件中的按钮。" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "开始试用" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." -msgstr "" +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" +msgstr "完成选择加入" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." -msgstr "" +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "谢谢!" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "你离%s只差一步。" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "立即完成”%s“激活" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "我们对%s,%s进行了一些调整" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "选择加入以使“%s”更好!" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "%s的升级已成功完成。" -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, -#: includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "附加组件" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, -#: templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "插件" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, -#: templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "主题" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "尝试切换许可证的白标模式时发生未知错误。" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "" -"Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. " -"your email, license key, prices, billing address & invoices). If you ever wish to revert it back, " -"you can easily do it through your %s. If this was a mistake you can also %s." +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -"您的%s许可证被标记为白标,以对WP管理员隐藏敏感信息(例如,您的电子邮件,许可证密钥,价格,账单地址和" -"发票)。如果您希望将其还原,则可以通过%s轻松完成。如果这是一个错误,您也可以%s。" +"您的%s许可证被标记为白标,以对WP管理员隐藏敏感信息(例如,您的电子邮件,许可证密钥,价格,账单地址和发票)。如果您希望将其还原,则可以通过%" +"s轻松完成。如果这是一个错误,您也可以%s。" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "用户仪表盘" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "现在还原" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "尝试设置用户的测试模式时发生了未知错误。" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "无效的新用户ID或电子邮件地址。" -#: includes/class-freemius.php:13731 +#: includes/class-freemius.php:13829 msgid "" -"Sorry, we could not complete the email update. Another user with the same email is already " -"registered." +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." msgstr "对不起,我们无法完成电子邮件更新。具有相同电子邮件的另一个用户已注册。" -#: includes/class-freemius.php:13732 +#: includes/class-freemius.php:13830 msgid "" -"If you would like to give up the ownership of the %s's account to %s click the Change Ownership " -"button." +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." msgstr "如果要将%s帐户的所有权放弃给%s,请单击“更改所有权”按钮。" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "变更所有权" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "无效网站详细信息集合。" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "我们在系统中找不到您的电子邮件地址,您确定地址正确吗?" - -#: includes/class-freemius.php:14458 +#: includes/class-freemius.php:14564 msgid "" -"We can't see any active licenses associated with that email address, are you sure it's the right " -"address?" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" msgstr "我们看不到与该电子邮件地址关联的任何活动许可证,您确定它是正确的地址吗?" -#: includes/class-freemius.php:14756 +#: includes/class-freemius.php:14562 msgid "" -"Account is pending activation. Please check your email and click the link to activate your account " -"and then submit the affiliate form again." -msgstr "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "我们在系统中找不到您的电子邮件地址,您确定地址正确吗?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "立即购买许可证" +#: includes/class-freemius.php:14868 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "帐户正在等待激活。请检查您的电子邮件并单击链接激活您的帐户,然后再次提交会员表格。" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14994, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "立即续订许可证" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14982, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "立即购买许可证" + +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "%s以访问版本%s的安全和功能更新以及支持。" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." -msgstr "" - -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "您的帐户已用%s计划成功激活。" +msgstr "%s选择加入已成功完成。" -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "您的试用已成功开始。" -#: includes/class-freemius.php18279, includes/class-freemius.php18392, -#: includes/class-freemius.php:18569 +#: includes/class-freemius.php:17684 +msgid "Your account was successfully activated with the %s plan." +msgstr "您的帐户已用%s计划成功激活。" + +#: includes/class-freemius.php18328, includes/class-freemius.php18441, +#: includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "无法激活%s。" -#: includes/class-freemius.php18280, includes/class-freemius.php18393, -#: includes/class-freemius.php:18570 +#: includes/class-freemius.php18329, includes/class-freemius.php18442, +#: includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "请通过以下信息与我们联系:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "发生未知错误。" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "升级" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "开始试用" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "定价" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18986 +msgid "Start Trial" +msgstr "开始试用" + +#: includes/class-freemius.php19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "推广联盟" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, -#: templates/debug.php:366 +#: includes/class-freemius.php19098, includes/class-freemius.php19100, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "帐户" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, +#: includes/class-freemius.php19114, includes/class-freemius.php19116, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "联系我们" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, -#: includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19127, includes/class-freemius.php19129, +#: includes/class-freemius.php24413, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "附加组件" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "定价" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19378, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "支持论坛" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "你的电子邮件已被成功验证-你太棒了!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "就在" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "好像你输入的钥匙和我们的记录不符。" -#: includes/class-freemius.php:20881 +#: includes/class-freemius.php:20930 msgid "" -"Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also " -"disable it earlier by clicking the \"Stop Debug\" link." +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "调试模式已成功启用,将在60分钟以内自动禁用。您也可以通过单击“停止调试”链接提前禁用。" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "%s加载项计划已成功升级。" -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21167 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "已成功购买%s加载项。" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "下载最新版本" -#: includes/class-freemius.php:21239 +#: includes/class-freemius.php:21288 msgid "" -"It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & " -"User ID, and try again." +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." msgstr "似乎身份验证参数中的一个不正确。请更新您的公钥、密钥和用户ID,然后重试。" -#: includes/class-freemius.php21239, includes/class-freemius.php21636, -#: includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21288, includes/class-freemius.php21685, +#: includes/class-freemius.php21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "从服务器收到错误:" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, -#: includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "嗯" - -#: includes/class-freemius.php:21483 +#: includes/class-freemius.php:21532 msgid "" -"It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an " -"issue on our side - sorry." +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." msgstr "看来你还在%s计划中。如果你确实升级或更改了计划,这可能是我们这边的问题-对不起。" -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, -#: templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "试用" - -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +#: includes/class-freemius.php:21538 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." msgstr "我已经升级了我的帐户,但是当我尝试同步许可证时,计划仍然是%s。" -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "请在这里联系我们" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "您的计划已成功更改为%s。" -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "您的许可证过期了。您仍然可以继续永远使用免费的%s。" -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "您的许可证过期了。%1$s立即升级%2$s以继续使用%3$s而不中断。" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." +#: includes/class-freemius.php:21590 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." msgstr "你的许可证被取消了。如果您认为这是一个错误,请联系支持人员。" -#: includes/class-freemius.php:21554 +#: includes/class-freemius.php:21603 msgid "" -"Your license has expired. You can still continue using all the %s features, but you'll need to renew " -"your license to continue getting updates and support." +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." msgstr "您的许可证过期了。您仍然可以继续使用所有%s功能,但您需要续订许可证才能继续获取更新和支持。" -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21629 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "您的免费试用已过期。您仍然可以继续使用我们所有的免费功能。" -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21631 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" -"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "您的免费试用已过期。%1$s立即升级%2$s以继续使用%3$s而不中断。" -#: includes/class-freemius.php:21628 +#: includes/class-freemius.php:21677 msgid "" -"Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. " -"Please contact your host to whitelist the following domains:%2$s" -msgstr "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "您的服务器阻止访问 Freemius 的 API,这对 %1$s 同步至关重要。请联系您的主机以将以下域列入白名单:%2$s" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21679 msgid "Show error details" -msgstr "" +msgstr "显示错误详细信息" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "似乎无法激活许可证。" -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "您的许可证已成功激活。" -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "您的站点当前似乎没有活动许可证。" -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "许可证停用似乎失败。" -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "您的%s许可证已成功停用。" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "您的许可证已成功停用,您回到了%s计划。" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "好" -#: includes/class-freemius.php:21909 +#: includes/class-freemius.php:21958 msgid "" -"Seems like we are having some temporary issue with your subscription cancellation. Please try again " -"in few minutes." +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "似乎关于您的订阅取消发生了一些暂时的问题。请过几分钟再试一次。" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21967 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "您的订阅已成功取消。您的%s计划许可证将在%s后过期。" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "您已经在试用模式下运行%s。" -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "您以前已经试用过。" -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22056 +msgid "None of the %s's plans supports a trial period." +msgstr "%s的任何计划都不支持试用期。" + +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "计划%s不存在,因此无法启动试用。" -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "计划%s不支持试用期。" -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "%s的任何计划都不支持试用期。" - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22105 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "看起来您不再处于试用模式,所以没有什么需要取消的:)" -#: includes/class-freemius.php:22092 +#: includes/class-freemius.php:22141 msgid "" -"Seems like we are having some temporary issue with your trial cancellation. Please try again in few " -"minutes." +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." msgstr "看来关于您的试用取消发生了一些暂时的问题。请过几分钟再试一次。" -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "您的%s免费试用已成功取消。" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22504 +msgid "Seems like you got the latest release." +msgstr "好像你得到了最新的版本。" + +#: includes/class-freemius.php:22505 +msgid "You are all good!" +msgstr "你们都很好!" + +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "版本%s已发布。" -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "请下载%s。" -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "这儿有最新的%s版本" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22499 msgid "New" msgstr "新的" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "好像你得到了最新的版本。" - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "你们都很好!" - -#: includes/class-freemius.php:22859 +#: includes/class-freemius.php:22908 msgid "" -"Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." msgstr "验证邮件刚刚发送到%s。如果5分钟后找不到,请检查垃圾邮件框。" -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "站点已成功选择加入。" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "真棒" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23075 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "诊断数据将不再从 %s 发送到 %s。" + +#: includes/class-freemius.php:23065 msgid "" -"Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, " -"avoid WordPress or PHP version incompatibilities that can break your website, and recognize which " -"languages & regions the plugin should be translated and tailored to." +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" +"与 %s 共享诊断数据有助于提供与您的网站更相关的功能,避免可能破坏您的网站的 WordPress 或 PHP " +"版本不兼容,并识别插件应该翻译和定制的语言和地区。" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "谢谢您!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "" +#: includes/class-freemius.php:23235 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "刚刚向 %s 发送了一封确认电子邮件。您必须在接下来的 4 小时内确认更新。如果您找不到该电子邮件,请检查您的垃圾邮件文件夹。" -#: includes/class-freemius.php:23181 +#: includes/class-freemius.php:23233 msgid "" -"A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 " -"hours." +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "刚刚向 %s 发送了一封确认电子邮件。电子邮件所有者必须在接下来的 4 小时内确认更新。" -#: includes/class-freemius.php:23183 +#: includes/class-freemius.php:23247 msgid "" -"A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If " -"you cannot find the email, please check your spam folder." -msgstr "" -"刚刚向 %s 发送了一封确认电子邮件。您必须在接下来的 4 小时内确认更新。如果您找不到该电子邮件,请检查您" -"的垃圾邮件文件夹。" - -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "感谢您确认所有权变更。刚刚向%s发送了一封电子邮件以获得最终批准。" -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "%s是帐户的新主人。" -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "恭喜" +#: includes/class-freemius.php:23277 +msgid "Your name was successfully updated." +msgstr "您的姓名已成功更新。" -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "请提供您的全名。" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "您的姓名已成功更新。" - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23342 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "您已成功更新%s。" -#: includes/class-freemius.php:23339 +#: includes/class-freemius.php:23406 msgid "" -"Is this your client's site? %s if you wish to hide sensitive info like your email, license key, " -"prices, billing address & invoices from the WP Admin." -msgstr "" -"这是您客户的网站吗?如果您希望从WP管理员那里隐藏敏感信息,例如电子邮件,许可证密钥,价格,账单地址和" -"发票,则为%s。" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "这是您客户的网站吗?如果您希望从WP管理员那里隐藏敏感信息,例如电子邮件,许可证密钥,价格,账单地址和发票,则为%s。" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "点击这里" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23446 msgid "Bundle" -msgstr "" +msgstr "批量" -#: includes/class-freemius.php:23459 +#: includes/class-freemius.php:23519 msgid "" -"Just letting you know that the add-ons information of %s is being pulled from an external server." +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." msgstr "只是让您知道%s的加载项信息是从外部服务器提取的。" -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "抬头" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "嘿" - -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." +#: includes/class-freemius.php:24149 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." msgstr "到目前为止,您觉得%s怎么样?使用%d天免费试用来测试我们所有的%s高级功能。" -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "%s天没有承诺-随时取消!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "不需要信用卡" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "开始免费试用" - -#: includes/class-freemius.php:24182 +#: includes/class-freemius.php:24242 msgid "" -"Hey there, did you know that %s has an affiliate program? If you like the %s you can become our " -"ambassador and earn some cash!" +"Hey there, did you know that %s has an affiliate program? If you like the " +"%s you can become our ambassador and earn some cash!" msgstr "嘿,你知道%s有会员计划吗?如果您喜欢%s,您可以成为我们的大使并赚取一些现金!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "了解更多" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, -#: templates/connect.php221, templates/connect.php447, -#: includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, +#: includes/class-freemius.php24437, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "激活许可证" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, -#: templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24438, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "更改许可证" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "选择退出" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, -#: templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "选择加入" -#: includes/class-freemius.php:24728 -msgid "" -" The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s " -"features. %3$s" -msgstr "已安装%1$s的付费版本。请激活它以开始使用%2$s功能。%3$s公司" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "激活%s功能" +#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "选择退出" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "请按照以下步骤完成升级" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24815 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "下载最新的%s版本" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "上传并激活下载的版本" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "如何上传和激活?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24788 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "已安装%1$s的付费版本。请激活它以开始使用%2$s功能。%3$s公司" + +#: includes/class-freemius.php:24798 +msgid "Activate %s features" +msgstr "激活%s功能" + +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "您的计划已成功升级。" -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "您的计划已成功激活。" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24987 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "%s单击此处%s可选择要激活许可证的站点。" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "自动安装仅适用于已选择的用户。" -#: includes/class-freemius.php25106, includes/class-freemius.php25139, -#: includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25166, includes/class-freemius.php25199, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "模块ID无效。" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "已安装高级加载项版本。" + +#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "高级版本已激活。" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "您没有访问高级版本的有效许可证。" -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." +#: includes/class-freemius.php:25189 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." msgstr "插件是一个“服务软件”,这意味着它没有高级代码版本。" -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "已安装高级加载项版本。" - -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "查看付费功能" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "非常感谢您使用%s及其附加组件!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "非常感谢您使用%s!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "您已经选择加入我们的使用情况跟踪,这有助于我们不断改进%s。" - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "非常感谢您使用我们的产品!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25883 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "您已经选择了我们的使用情况跟踪,这有助于我们不断改进它们。" -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "%s及其附加组件" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "产品" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php:25871 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "非常感谢您使用%s及其附加组件!" + +#: includes/class-freemius.php:25872 +msgid "Thank you so much for using %s!" +msgstr "非常感谢您使用%s!" + +#: includes/class-freemius.php:25878 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "您已经选择加入我们的使用情况跟踪,这有助于我们不断改进%s。" + +#: includes/class-freemius.php25918, templates/connect.php:313 msgid "Yes" msgstr "是" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "请给我发送安全和功能更新,教育内容和优惠。" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25920, templates/connect.php:319 msgid "No" msgstr "不" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25922, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "不%s要%s向我发送安全和功能更新、教育内容和服务。" -#: includes/class-freemius.php:25866 +#: includes/class-freemius.php:25932 msgid "" -"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is " -"required that you provide your explicit consent, again, confirming that you are onboard :-)" -msgstr "" -"由于新的%sEU通用数据保护条例(GDPR)%s的合规性要求,要求您再次明确表示同意,确认您已经加入:-)" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "由于新的%sEU通用数据保护条例(GDPR)%s的合规性要求,要求您再次明确表示同意,确认您已经加入:-)" -#: includes/class-freemius.php25868, templates/connect.php:337 +#: includes/class-freemius.php25934, templates/connect.php:328 msgid "" -"Please let us know if you'd like us to contact you for security & feature updates, educational " -"content, and occasional offers:" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" msgstr "如果您希望我们与您联系以获取安全和功能更新、教育内容和偶尔的优惠,请告知我们:" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "许可证密钥为空。" -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "更新许可证" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "购买许可证" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "有一个%s的%s可用。" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "新测试版" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "新版本" @@ -972,650 +938,516 @@ msgstr "新版本" msgid "Important Upgrade Notice:" msgstr "重要升级通知:" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "正在安装插件:%s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "无法连接到文件系统。请确认您的凭据。" -#: includes/class-fs-plugin-updater.php:1582 +#: includes/class-fs-plugin-updater.php:1577 msgid "" -"The remote plugin package does not contain a folder with the desired slug and renaming did not work." +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." msgstr "远程插件包不包含具有所需段塞的文件夹,重命名失败。" #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "购买更多" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "购买" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "开始我的免费%s" +#: includes/fs-plugin-info-dialog.php:755 +msgid "Install Free Version Now" +msgstr "立即安装免费版本" + +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 +msgid "Install Now" +msgstr "立即安装" + #: includes/fs-plugin-info-dialog.php:745 msgid "Install Free Version Update Now" msgstr "立即安装免费版本更新" -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 msgid "Install Update Now" msgstr "立即安装更新" -#: includes/fs-plugin-info-dialog.php:755 -msgid "Install Free Version Now" -msgstr "立即安装免费版本" +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 +msgid "Activate this add-on" +msgstr "激活此加载项" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, -#: templates/account/partials/addon.php370, templates/account/partials/addon.php:423 -msgid "Install Now" -msgstr "立即安装" - -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "下载最新免费版本" - -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, -#: templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "下载最新版本" - -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, templates/account/partials/addon.php:417 -msgid "Activate this add-on" -msgstr "激活此加载项" - -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "激活免费版本" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, -#: templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "激活" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "说明" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "安装" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "常见问题解答" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "屏幕截图" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "变更日志" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "评论" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "其他注意事项" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "功能和定价" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "插件安装" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s计划" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "最好的" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "每月" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "每年" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "终身" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "帐单%s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "每年" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "一次" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "单站点许可证" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "无限许可证" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "最多%s个站点" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "瞬间" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "年" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "价格" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "保存%s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "%s没有承诺-随时取消" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "免费%s后,只需支付%s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "细节" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, -#: templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "版本" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "作者" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "上次更新时间" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s以前" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "需要WordPress版本" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s或更高" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "兼容至" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "" +msgstr "需要 PHP 版本" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "下载" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s时间" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%年代" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org 插件页面" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "插件主页" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "捐赠给这个插件" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "平均评级" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "基于%s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s级" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s评级" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s星" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s星" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "单击此处可查看评分为%s的评论" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "贡献者" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "" +msgstr "此插件需要较新版本的 PHP。" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "" +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "单击此处了解有关更新 PHP 的更多信息。" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "警告" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "此插件尚未标记为与您的WordPress版本兼容。" + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "此插件尚未用当前版本的WordPress进行测试。" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "此插件尚未标记为与您的WordPress版本兼容。" - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "付费附加组件必须部署到Freemius。" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "加载项必须部署到WordPress.org或Freemius。" -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "安装了较新的版本(%s)" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "已安装较新的免费版本(%s)" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "已安装最新版本" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "已安装最新的免费版本" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "安装了较新的版本(%s)" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "已安装较新的免费版本(%s)" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "降低您的计划" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "取消订阅" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php34, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 msgid "" -"%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in " -"%3$s." +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "%1$s将立即停止所有未来的定期付款,并且您的%2$s计划许可证将在%3$s过期。" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php35, templates/account/partials/site.php:317 +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 msgid "" -"Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions " -"after a cancellation. If you choose to renew the subscription manually in the future, after a price " -"increase, which typically occurs once a year, you will be charged the updated price." -msgstr "" -"请注意,取消后,我们将无法获取更新/新订阅的过期定价。如果您选择在未来手动续订,在价格上涨后,将向您收" -"取更新后的价格。" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "请注意,取消后,我们将无法获取更新/新订阅的过期定价。如果您选择在未来手动续订,在价格上涨后,将向您收取更新后的价格。" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" msgstr "取消试用将立即阻止使用所有高级功能。你确定吗?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php37, templates/account/partials/site.php:318 +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 msgid "" -"You can still enjoy all %s features but you will not have access to %s security & feature updates, " -"nor support." +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "您仍然可以享受所有%s功能,但您将无法获得%s安全和功能更新以及支持服务。" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php38, templates/account/partials/site.php:319 +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 msgid "" -"Once your license expires you can still use the Free version but you will NOT have access to the %s " -"features." +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." msgstr "许可证过期后,您仍然可以使用免费版本,但您将无法使用%s功能。" -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "激活%s计划" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "在%s中自动续订" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "%s后过期" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "同步许可证" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "取消试用" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "变更计划" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "升级" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "降级" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, -#: templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "免费的" -#: templates/account.php139, templates/debug.php412, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "计划" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "捆绑计划" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "免费试用" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "帐户详细信息" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "开始调试" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "停止调试" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "开始调试" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "账单和发票" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "停用许可证" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "确定要继续吗?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "取消订阅" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "同步" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "姓名" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "电子邮件" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "用户 ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, -#: templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, -#: templates/debug.php623, templates/debug.php702, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "站点 ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "无 ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, -#: templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "公钥" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, -#: templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "密钥" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "没有秘密" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "许可证密钥" -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "审判" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "许可证密钥" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "加入测试计划" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "未验证" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "期满" +#: templates/account.php:600 +msgid "Free version" +msgstr "免费版本" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "高级版" -#: templates/account.php:604 -msgid "Free version" -msgstr "免费版本" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "期满" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "验证电子邮件" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "下载%s版本" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "下载付费版本" - -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "显示" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "更改用户" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "你的%s是什么?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "编辑" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "下载%s版本" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "更改用户" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "下载付费版本" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "站点" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "按网址搜索" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "网址" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "许可证" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "计划" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "许可证" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "隐藏" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, -#: templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "处理" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "获取%s的前沿测试版本的更新。" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "正在取消%s" -#: templates/account.php1004, templates/account.php1021, -#: templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "试用" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "正在取消%s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "订阅" -#: templates/account.php:1036 +#: templates/account.php:1032 msgid "" -"Deactivating your license will block all premium features, but will enable activating the license on " -"another site. Are you sure you want to proceed?" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" msgstr "停用许可证将阻止所有高级功能,但将在其他站点上激活许可证。确定要继续吗?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "禁用白标模式" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "启用白标模式" @@ -1629,27 +1461,12 @@ msgstr "%s的加载项" #: templates/add-ons.php:58 msgid "" -"We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in " -"few minutes." +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "无法加载加载项列表。这可能是我们这边的问题,请几分钟后再来。" -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "活跃的" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "安装" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "关闭" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s秒" @@ -1659,14 +1476,15 @@ msgstr "自动安装" #: templates/auto-installation.php:93 msgid "" -"An automated download and installation of %s (paid version) from %s will start in %s. If you would " -"like to do it manually - click the cancellation button now." +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." msgstr "从%s自动下载并安装的%s(付费版本)将在%s中启动。如果要手动执行此操作,请单击“取消”按钮。" #: templates/auto-installation.php:104 msgid "" -"The installation process has started and may take a few minutes to complete. Please wait until it is " -"done - do not refresh this page." +"The installation process has started and may take a few minutes to " +"complete. Please wait until it is done - do not refresh this page." msgstr "安装过程已开始,可能需要几分钟才能完成。请等待完成-不要刷新此页。" #: templates/auto-installation.php:109 @@ -1681,188 +1499,166 @@ msgstr "结帐" msgid "PCI compliant" msgstr "PCI兼容" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "嘿%s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "感谢您更新到 %1$s v%2$s!" -#: templates/connect.php:187 +#: templates/connect.php:178 msgid "Never miss an important update" -msgstr "" - -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "" +msgstr "绝不会错过重要更新" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "允许并继续" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "重新发送激活电子邮件" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "我们引入了此选项,这样您就不会错过重要的更新,并帮助我们使 %s 与您的站点更加兼容,并更好地完成您需要它做的事情。" -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "谢谢%s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "选择接收有关安全和功能更新、教育内容和临时优惠的电子邮件通知,并共享一些基本的 WordPress 环境信息。" + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "如果你跳过这个,没关系! %1$s 仍然可以正常工作。" -#: templates/connect.php:214 +#: templates/connect.php:227 msgid "" -"You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the " -"button in that email to %s." +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" +"选择接收有关安全和功能更新、教育内容和临时优惠的电子邮件通知,并共享一些基本的 WordPress 环境信息。这将帮助我们使 %s " +"与您的网站更加兼容,并更好地完成您需要它做的事情。" -#: templates/connect.php:225 +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "欢迎使用%s!首先,请输入您的许可证密钥:" -#: templates/connect.php:236 -msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and " -"occasional offers, and to share some basic WordPress environment info. This will help us make the %s " -"more compatible with your site and better at doing what you need it to." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "重新发送激活电子邮件" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "" -"We have introduced this opt-in so you never miss an important update and help us make the %s more " -"compatible with your site and better at doing what you need it to." -msgstr "" +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "谢谢%s!" -#: templates/connect.php:247 +#: templates/connect.php:205 msgid "" -"Opt in to get email notifications for security & feature updates, educational content, and " -"occasional offers, and to share some basic WordPress environment info." -msgstr "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "您应该会在 %s 的邮箱中收到一封 %s 的确认电子邮件。请确保单击该电子邮件中发送给 %s 的按钮。" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "" - -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "我们很高兴介绍Freemius网络级集成。" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "在更新过程中,我们在网络中检测到%s个网站仍然需要您的注意。" + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." msgstr "在更新过程中,我们检测到%d个网站仍在等待许可证激活。" -#: templates/connect.php:285 +#: templates/connect.php:276 msgid "" -"If you'd like to use the %s on those sites, please enter your license key below and click the " -"activation button." +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." msgstr "如果要在这些站点上使用%s,请在下面输入许可证密钥,然后单击“激活”按钮。" -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s的付费功能" -#: templates/connect.php:292 +#: templates/connect.php:283 msgid "" -"Alternatively, you can skip it for now and activate the license later, in your %s's network-level " -"Account page." +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." msgstr "或者,您可以暂时跳过它,稍后在%s的网络级帐户页中激活许可证。" -#: templates/connect.php:294 -msgid "" -"During the update process we detected %s site(s) in the network that are still pending your " -"attention." -msgstr "在更新过程中,我们在网络中检测到%s个网站仍然需要您的注意。" - -#: templates/connect.php303, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "许可证密钥" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "找不到您的许可证密钥?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "跳过" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "委派给站点管理员" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "如果单击它,此决定将委派给站点管理员。" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "许可问题?" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" -msgstr "" +msgstr "这将允许 %s" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "没有许可证密钥?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "为了提供安全和功能更新以及许可证管理,%s 需要" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "有许可证密钥吗?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "没有许可证密钥?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius是我们的许可和软件更新引擎" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "隐私政策" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "许可协议" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "服务条款" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "发送电子邮件" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "正在激活" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "许可协议" #: templates/contact.php:78 msgid "Contact" msgstr "联系方式" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "关闭" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "打开" - #: templates/debug.php:24 msgid "SDK" msgstr "软件开发工具包" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "调试" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "行动" @@ -1910,11 +1706,6 @@ msgstr "钥匙" msgid "Value" msgstr "值" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK 版本" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK 路径" @@ -1944,11 +1735,6 @@ msgstr "Slug" msgid "Title" msgstr "标题" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius 状态" @@ -1961,21 +1747,6 @@ msgstr "网络博客" msgid "Network User" msgstr "网络用户" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "已连接" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "此路不通" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "模拟试用推广" @@ -1985,14 +1756,10 @@ msgid "Simulate Network Upgrade" msgstr "模拟试用推广" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s安装" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "站点" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "博客ID" @@ -2001,11 +1768,6 @@ msgstr "博客ID" msgid "License ID" msgstr "许可证ID" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "删除" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "模块%s的加载项" @@ -2042,15 +1804,11 @@ msgstr "激活" msgid "Blocking" msgstr "阻止" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "类型" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "到期" - #: templates/debug.php:660 msgid "Debug Log" msgstr "调试日志" @@ -2063,11 +1821,13 @@ msgstr "所有类型" msgid "All Requests" msgstr "所有请求" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "文件" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "函数" @@ -2079,7 +1839,8 @@ msgstr "进程 ID" msgid "Logger" msgstr "记录器" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "消息" @@ -2096,19 +1857,15 @@ msgid "Timestamp" msgstr "时间戳" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "从外部域运行的安全HTTPS%s页面" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "支持" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, -#: templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "毫秒" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -2125,22 +1882,24 @@ msgstr "无效的克隆解析操作。" msgid "products" msgstr "产品" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s 已进入安全模式,因为我们注意到 %2$s 是 %3$s 的精确副本。" - #: includes/managers/class-fs-clone-manager.php:1211 msgid "" -"The products below have been placed into safe mode because we noticed that %2$s is an exact copy of " -"%3$s:%1$s" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "以下产品已进入安全模式,因为我们注意到 %3$s 是 %1$s 的精确副本:%2$s" #: includes/managers/class-fs-clone-manager.php:1212 msgid "" -"The products below have been placed into safe mode because we noticed that %2$s is an exact copy of " -"these sites:%3$s%1$s" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" msgstr "以下产品已进入安全模式,因为我们注意到 %3$s 是这些网站的精确副本:%1$s%2$s" +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "%1$s 已进入安全模式,因为我们注意到 %2$s 是 %3$s 的精确副本。" + #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" msgstr "上述网站" @@ -2150,7 +1909,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "%2$s 是 %4$s 的副本吗?" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "是的,%2$s 是 %4$s 的副本,用于测试、暂存或开发。" #: includes/managers/class-fs-clone-manager.php:1257 @@ -2166,10 +1927,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "%2$s 是 %4$s 的新主页吗?" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "是的,%%2$s 正在替换 %%4$s。我想将我的 %s 从 %%4$s 迁移到 %%2$s。" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "许可证" @@ -2201,11 +1965,6 @@ msgstr "它需要许可证激活。" msgid "New Website" msgstr "新网站" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "产品" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "您将此网站 %s 标记为 %s 的临时副本。" @@ -2216,15 +1975,10 @@ msgstr "您将此网站 %s 标记为这些网站的临时副本" #: includes/managers/class-fs-clone-manager.php:1423 msgid "" -"%s automatic security & feature updates and paid functionality will keep working without " -"interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" -"%s 自动安全和功能更新以及付费功能将继续运行而不会中断,直到 %s(或当您的许可证到期时,无论先到者)。" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "%s 的" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "%s 自动安全和功能更新以及付费功能将继续运行而不会中断,直到 %s(或当您的许可证到期时,无论先到者)。" #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" @@ -2232,8 +1986,8 @@ msgstr "以下产品" #: includes/managers/class-fs-clone-manager.php:1437 msgid "" -"If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please " -"%s." +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "如果这是长期副本,要在 %s 之后保留自动更新和付费功能,请 %s。" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2242,45 +1996,49 @@ msgstr "在此处激活许可证" #: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" -msgstr "" +msgstr "查看基本网站信息" #: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "" +msgstr "主页 URL 和标题、WP 和 PHP 版本以及站点语言" #: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To provide additional functionality that's relevant to your website, avoid WordPress or PHP version " -"incompatibilities that can break your website, and recognize which languages & regions the %s should " -"be translated and tailored to." -msgstr "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "要提供与您的网站相关的其他功能,请避免可能破坏您的网站的 WordPress 或 PHP 版本不兼容,并识别 %s 应翻译和定制的语言和地区。" #: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" -msgstr "" +msgstr "查看基本 %s 信息" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "" +msgstr "当前的 %s 和 SDK 版本,以及是否激活或卸载" #: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" -msgstr "" +msgstr "查看许可证要点" -#: includes/managers/class-fs-permission-manager.php:262 #: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To let you manage & control where the license is activated and ensure %s security & feature updates " -"are only delivered to websites you authorize." -msgstr "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "使您能够管理和控制许可证的激活位置,并确保%s安全和功能更新仅发送到您授权的网站。" #: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" -msgstr "" +msgstr "查看%s状态" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" -msgstr "" +msgstr "处于激活、已停用或已卸载" #: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." @@ -2288,7 +2046,7 @@ msgstr "因此,当%s不再活动时,您可以重新使用许可证。" #: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" -msgstr "" +msgstr "查看诊断信息" #: includes/managers/class-fs-permission-manager.php326, #: includes/managers/class-fs-permission-manager.php:363 @@ -2297,39 +2055,44 @@ msgstr "可选的" #: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" -msgstr "" +msgstr "WordPress 和 PHP 版本、网站语言和标题" #: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' msgid "" -"To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize " -"which languages & regions the %s should be translated and tailored to." -msgstr "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "为避免因 WordPress 或 PHP 版本不兼容而破坏您的网站,并识别 %s 应翻译和定制的语言和地区。" #: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" -msgstr "" +msgstr "查看插件和主题列表" #: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" -msgstr "" +msgstr "名称、别名、版本,以及是否处于激活状态" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "" +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "确保兼容性并避免与您安装的插件和主题发生冲突。" #: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" -msgstr "" +msgstr "查看基本资料信息" #: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" -msgstr "" +msgstr "您的 WordPress 用户:名字和姓氏,以及电子邮件地址" #: includes/managers/class-fs-permission-manager.php:384 msgid "" -"Never miss important updates, get security warnings before they become public knowledge, and receive " -"notifications about special offers and awesome new features." -msgstr "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "绝不会错过重要更新,在它们成为公众知识之前获得安全警告,并接收有关特别优惠和令人敬畏的新功能的通知。" #: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" @@ -2339,11 +2102,6 @@ msgstr "新闻稿" msgid "Updates, announcements, marketing, no spam" msgstr "更新、公告、营销,无垃圾邮件" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "更新" - #: templates/account/billing.php:33 msgid "Billing" msgstr "开具账单" @@ -2356,7 +2114,8 @@ msgstr "企业名称" msgid "Tax / VAT ID" msgstr "税务/增值税ID" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "地址行%d" @@ -2404,17 +2163,6 @@ msgstr "数量" msgid "Invoice" msgstr "发票" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "选择退出" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "选择加入" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2431,11 +2179,6 @@ msgstr "代码" msgid "Length" msgstr "长度" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "路径" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "身体" @@ -2456,21 +2199,18 @@ msgstr "终点" msgid "Log" msgstr "日志" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "在%s中" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s以前" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "秒" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "插件和主题同步" @@ -2479,7 +2219,8 @@ msgstr "插件和主题同步" msgid "Total" msgstr "总计" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "最后" @@ -2503,156 +2244,164 @@ msgstr "Cron类型" msgid "Next" msgstr "下一个" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "非到期" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "申请成为推广联盟" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "您的%s会员申请已被接受!登录到您的分支区域,地址为%s。" +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "由于违反我们的推广联盟条款,我们决定暂时封锁您的附属帐户。如果您有任何问题,请联系支持人员。" -#: templates/forms/affiliation.php:123 +#: templates/forms/affiliation.php:134 msgid "" -"Thank you for applying for our affiliate program, we'll review your details during the next 14 days " -"and will get back to you with further information." -msgstr "感谢您申请我们的推广联盟计划,我们将在未来14天内审查您的详细信息,并将与您联系提供更多的信息。" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "感谢您申请我们的推广联盟计划,不幸的是,我们现在决定拒绝您的申请。请在30天后再试。" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "您的会员帐户已暂时挂起。" -#: templates/forms/affiliation.php:129 +#: templates/forms/affiliation.php:128 msgid "" -"Thank you for applying for our affiliate program, unfortunately, we've decided at this point to " -"reject your application. Please try again in 30 days." -msgstr "感谢您申请我们的推广联盟计划,不幸的是,我们现在决定拒绝您的申请。请在30天后再试。" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "感谢您申请我们的推广联盟计划,我们将在未来14天内审查您的详细信息,并将与您联系提供更多的信息。" -#: templates/forms/affiliation.php:132 +#: templates/forms/affiliation.php:113 msgid "" -"Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. " -"If you have any questions, please contact support." -msgstr "由于违反我们的推广联盟条款,我们决定暂时封锁您的附属帐户。如果您有任何问题,请联系支持人员。" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "您的%s会员申请已被接受!登录到您的分支区域,地址为%s。" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "喜欢%s吗?成为我们的大使并赚取现金 ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" msgstr "向新客户介绍我们的%s,并在每次销售成功时获得%s佣金!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "计划摘要" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s客户购买新许可证时收取佣金。" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "获得自动续订的佣金。" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "%s首次访问后跟踪Cookie,以最大限度地提高收益潜力。" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "佣金无上限。" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s最低付款金额。" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "付款以美元为单位,每月通过 PayPal 处理。" -#: templates/forms/affiliation.php:163 +#: templates/forms/affiliation.php:168 msgid "" -"As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." msgstr "由于我们保留30天的潜在退款,我们只支付超过30天的佣金。" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "会员" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "电子邮件地址" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "全名" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal 帐户电子邮件地址" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "您打算在哪里推广%s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." msgstr "请输入您计划升级%s的网站或其他网站的域。" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "添加另一个域" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "额外域" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "您将营销产品的额外的网域。" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "推广方式" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "社交媒体(脸书、推特等)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "移动应用程序" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "网站、电子邮件和社交媒体统计(可选)" -#: templates/forms/affiliation.php:214 +#: templates/forms/affiliation.php:219 msgid "" -"Please feel free to provide any relevant website or social media statistics, e.g. monthly unique " -"site visits, number of email subscribers, followers, etc. (we will keep this information " -"confidential)." -msgstr "" -"请随时提供任何相关的网站或社交媒体统计数据,例如每月独特的网站访问量、电子邮件订户数量、关注者数量等" -"(我们将对这些信息保密)。" +"Please feel free to provide any relevant website or social media " +"statistics, e.g. monthly unique site visits, number of email subscribers, " +"followers, etc. (we will keep this information confidential)." +msgstr "请随时提供任何相关的网站或社交媒体统计数据,例如每月独特的网站访问量、电子邮件订户数量、关注者数量等(我们将对这些信息保密)。" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "您将如何推广我们?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." msgstr "请提供有关您打算如何推广%s的详细信息(请尽可能具体)。" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "取消" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "加入推广联盟" @@ -2662,11 +2411,10 @@ msgstr "请输入许可证密钥以启用调试模式:" #: templates/forms/data-debug-mode.php:27 msgid "" -"To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you " -"can find in your \"My Profile\" section of your User Dashboard:" -msgstr "" -"要进入调试模式,请输入许可证所有者的密钥(用户ID=%d),您可以在用户仪表板的“我的配置文件”部分找到该密" -"钥:" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "要进入调试模式,请输入许可证所有者的密钥(用户ID=%d),您可以在用户仪表板的“我的配置文件”部分找到该密钥:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2680,11 +2428,6 @@ msgstr "用户密钥" msgid "Email address update" msgstr "电子邮件地址更新" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "关闭" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "输入新的电子邮件地址" @@ -2717,12 +2460,15 @@ msgstr "是 - 将我的所有数据和资产从 %s 移至 %s" msgid "No - only move this site's data to %s" msgstr "否 - 仅将此站点的数据移动到 %s" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "更新" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" msgstr "请输入购买后在电子邮件中收到的许可证密钥:" #: templates/forms/license-activation.php:28 @@ -2731,41 +2477,42 @@ msgstr "更新许可证" #: templates/forms/license-activation.php:34 msgid "" -"The %1$s will be periodically sending essential license data to %2$s to check for security and " -"feature updates, and verify the validity of your license." -msgstr "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "%1$s 将定期向 %2$s 发送必要的许可数据以检查安全和功能更新,并验证您的许可的有效性。" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "同意并激活许可证" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "与许可证所有者的帐户关联。" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "保持自动更新" + #: templates/forms/optout.php:44 msgid "Communication" -msgstr "" +msgstr "沟通" #: templates/forms/optout.php:56 msgid "Stay Connected" -msgstr "" +msgstr "保持联系" #: templates/forms/optout.php:61 msgid "Diagnostic Info" -msgstr "" +msgstr "诊断信息" #: templates/forms/optout.php:77 msgid "Keep Sharing" -msgstr "" +msgstr "继续分享" #: templates/forms/optout.php:82 msgid "Extensions" -msgstr "" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" +msgstr "扩展" #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." @@ -2779,53 +2526,50 @@ msgstr "%s以访问版本%s的安全和功能更新以及支持。" msgid "New Version Available" msgstr "新版本可用" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "关闭" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "发送许可证密钥" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "" +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "输入您在购买时使用的电子邮件地址,我们将重新向您发送许可证密钥。" #: templates/forms/resend-key.php:59 msgid "" -"Enter the email address you've used for the upgrade below and we will resend you the license key." +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." msgstr "请在下面输入您用于升级的电子邮件地址,我们将重新向您发送许可证密钥。" #: templates/forms/subscription-cancellation.php:37 msgid "" -"Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to " -"use on another site." +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "停用或卸载%s将自动禁用许可证,您可以在其他站点上使用该许可证。" #: templates/forms/subscription-cancellation.php:47 msgid "" -"In case you are NOT planning on using this %s on this site (or any other site) - would you like to " -"cancel the %s as well?" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "如果您不打算在此站点(或任何其他站点)上使用此%s,是否也要取消%s?" #: templates/forms/subscription-cancellation.php:57 msgid "" -"Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not " -"planning to use the %s on this, or any other site." -msgstr "" -"取消%s-我不再需要任何安全和功能更新,也不需要%s的支持服务,因为我不打算在此或任何其他站点上使用%s。" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "取消%s-我不再需要任何安全和功能更新,也不需要%s的支持服务,因为我不打算在此或任何其他站点上使用%s。" #: templates/forms/subscription-cancellation.php:68 msgid "" -"Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to " -"contact support." +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "不要取消%s-我仍然对获取安全和功能更新感兴趣,也可以联系支持人员。" #: templates/forms/subscription-cancellation.php:103 msgid "" -"Once your license expires you will no longer be able to use the %s, unless you activate it again " -"with a valid premium license." +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "许可证过期后,您将无法再使用%s,除非您使用有效的高级许可证再次激活。" #: templates/forms/subscription-cancellation.php:136 @@ -2836,22 +2580,28 @@ msgstr "取消%s?" msgid "Proceed" msgstr "继续" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "取消%s并继续" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." msgstr "您只需单击一次就可以开始%1$s天的%2$s计划免费试用。" #: templates/forms/trial-start.php:28 +#. translators: %s: Link to freemius.com msgid "" -"For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in " -"with your user and non-sensitive site information, allowing the %s to periodically send data to %s " -"to check for version updates and to validate your trial." +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version " +"updates and to validate your trial." msgstr "" -"为了遵守WordPress.org指南,在开始试用之前,我们要求您选择使用您的用户和非敏感站点信息,允许%s定期向%s" -"发送数据以检查版本更新并验证您的试用。" +"为了遵守WordPress.org指南,在开始试用之前,我们要求您选择使用您的用户和非敏感站点信息,允许%s定期向%" +"s发送数据以检查版本更新并验证您的试用。" #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2877,14 +2627,6 @@ msgstr "高级版本" msgid "Beta" msgstr "测试版本" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "在网络中的所有站点上激活许可证。" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "应用于网络中的所有站点。" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "在所有挂起的站点上激活许可证。" @@ -2893,19 +2635,31 @@ msgstr "在所有挂起的站点上激活许可证。" msgid "Apply on all pending sites." msgstr "在所有挂起的站点上应用。" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "在网络中的所有站点上激活许可证。" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "应用于网络中的所有站点。" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "允许" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "代表" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "跳过" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "单击此处可查看全尺寸屏幕截图%d" @@ -2917,49 +2671,42 @@ msgstr "无限更新" msgid "Localhost" msgstr "本机" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "剩下%s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "最后一个许可证" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the -#. subscription' -#: templates/account/partials/addon.php:34 -msgid "" -"%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s将立即停止所有未来的定期付款,并且您的%s计划许可证将在%s过期。" +#: templates/account/partials/addon.php:200 +msgid "No expiration" +msgstr "永不过期" #: templates/account/partials/addon.php:190 msgid "Cancelled" msgstr "取消" -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "永不过期" +#: templates/account/partials/disconnect-button.php:78 +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "断开网站连接将从您的用户仪表板帐户中永久删除 %s。" #: templates/account/partials/disconnect-button.php:74 msgid "" -"By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no " -"longer visible to %2$s." -msgstr "" - -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "断开网站连接后,之前共享的关于 %1$s 的诊断数据将被删除,%2$s 将不再可见。" #: templates/account/partials/disconnect-button.php:84 +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". msgid "" -"If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel " -"it there." -msgstr "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "如果您希望取消 %1$s 计划的订阅,请导航至 %2$s 并在那里取消。" #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "" +msgstr "您确定要继续断开连接吗?" #: templates/account/partials/site.php:190 msgid "Owner Name" @@ -2997,7 +2744,8 @@ msgstr "小时" msgid "hours" msgstr "小时" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "天" @@ -3050,5 +2798,455 @@ msgid "Click here to use the plugin anonymously" msgstr "单击此处匿名使用插件" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." msgstr "您可能错过了,但您不必共享任何数据,只需选择%s即可。" + +#: includes/class-freemius.php4842, includes/class-freemius.php21174, +#: includes/class-freemius.php:24843 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "哟哈" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "没有%s,%s无法运行。" + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "没有插件,%s无法运行。" + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14575, +#: includes/class-freemius.php18330, includes/class-freemius.php18443, +#: includes/class-freemius.php18620, includes/class-freemius.php20905, +#: includes/class-freemius.php22004, includes/class-freemius.php23020, +#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "哎呀" + +#: includes/class-freemius.php:24149 +msgctxt "exclamation" +msgid "Hey" +msgstr "嘿" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "许可证密钥" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "安装说明" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "点击这里" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "产品的支持电子邮件地址" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "立即完成”%s“激活" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19163 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19165, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "定价" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "价格" + +#: includes/class-freemius.php:20400 +msgctxt "a positive response" +msgid "Right on" +msgstr "就在" + +#: includes/class-freemius.php21519, includes/class-freemius.php21791, +#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "嗯" + +#: includes/class-freemius.php21533, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "试用" + +#: includes/class-freemius.php:23255 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "恭喜" + +#: includes/class-freemius.php:23520 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "抬头" + +#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "开始免费试用" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "购买" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "升级" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "降级" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "编辑" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "显示" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "隐藏" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "跳过" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "删除" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "更新" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "选择退出" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "选择加入" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "下载最新免费版本" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "下载最新版本" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "说明" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "安装" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "常见问题解答" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "变更日志" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "评论" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "其他注意事项" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "功能和定价" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s计划" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "最好的" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "每月" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "每年" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "每年" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "一次" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "帐单%s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "瞬间" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "年" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "版本" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "作者" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s以前" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "同步许可证" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "计划" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "同步" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "没有秘密" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "许可证" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "活跃的" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "安装" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "关闭" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "嘿%s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "发送电子邮件" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "正在激活" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "关闭" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "打开" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "调试" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK 版本" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "已连接" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "此路不通" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "未知" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "站点" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "到期" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "毫秒" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "产品" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "%s 的" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "路径" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "秒" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "关闭" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "关闭" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "剩下%s" diff --git a/languages/freemius.pot b/languages/freemius.pot index ebbfc2931..6c4bb0176 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-03-31 09:35+0000\n" +"POT-Creation-Date: 2024-03-31 12:04+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" @@ -138,7 +138,7 @@ msgstr "" msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:4842, includes/class-freemius.php:21166, includes/class-freemius.php:24835 +#: includes/class-freemius.php:4842, includes/class-freemius.php:21174, includes/class-freemius.php:24843 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "" @@ -153,7 +153,7 @@ msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "" -#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14567, includes/class-freemius.php:18322, includes/class-freemius.php:18435, includes/class-freemius.php:18612, includes/class-freemius.php:20897, includes/class-freemius.php:21996, includes/class-freemius.php:23012, includes/class-freemius.php:23142, includes/class-freemius.php:23285, templates/add-ons.php:57 +#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14575, includes/class-freemius.php:18330, includes/class-freemius.php:18443, includes/class-freemius.php:18620, includes/class-freemius.php:20905, includes/class-freemius.php:22004, includes/class-freemius.php:23020, includes/class-freemius.php:23150, includes/class-freemius.php:23293, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "" @@ -315,538 +315,538 @@ msgstr "" msgid "Change Ownership" msgstr "" -#: includes/class-freemius.php:14434 +#: includes/class-freemius.php:14442 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14556 +#: includes/class-freemius.php:14564 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14554 +#: includes/class-freemius.php:14562 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14860 +#: includes/class-freemius.php:14868 msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php:14986, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php:14994, templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14974, templates/forms/premium-versions-upgrade-handler.php:47 +#: includes/class-freemius.php:14982, templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "" -#: includes/class-freemius.php:14990 +#: includes/class-freemius.php:14998 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17662 +#: includes/class-freemius.php:17670 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17686, includes/class-freemius.php:21607 +#: includes/class-freemius.php:17694, includes/class-freemius.php:21615 msgid "Your trial has been successfully started." msgstr "" -#: includes/class-freemius.php:17676 +#: includes/class-freemius.php:17684 msgid "Your account was successfully activated with the %s plan." msgstr "" -#: includes/class-freemius.php:18320, includes/class-freemius.php:18433, includes/class-freemius.php:18610 +#: includes/class-freemius.php:18328, includes/class-freemius.php:18441, includes/class-freemius.php:18618 msgid "Couldn't activate %s." msgstr "" -#: includes/class-freemius.php:18321, includes/class-freemius.php:18434, includes/class-freemius.php:18611 +#: includes/class-freemius.php:18329, includes/class-freemius.php:18442, includes/class-freemius.php:18619 msgid "Please contact us with the following message:" msgstr "" -#: includes/class-freemius.php:18430, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php:18438, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php:18972, includes/class-freemius.php:24391 +#: includes/class-freemius.php:18980, includes/class-freemius.php:24399 msgid "Upgrade" msgstr "" -#: includes/class-freemius.php:18980 +#: includes/class-freemius.php:18988 msgid "Pricing" msgstr "" -#: includes/class-freemius.php:18978 +#: includes/class-freemius.php:18986 msgid "Start Trial" msgstr "" -#: includes/class-freemius.php:19060, includes/class-freemius.php:19062 +#: includes/class-freemius.php:19068, includes/class-freemius.php:19070 msgid "Affiliation" msgstr "" -#: includes/class-freemius.php:19090, includes/class-freemius.php:19092, templates/account.php:260, templates/debug.php:366 +#: includes/class-freemius.php:19098, includes/class-freemius.php:19100, templates/account.php:260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php:19106, includes/class-freemius.php:19108, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php:19114, includes/class-freemius.php:19116, includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "" -#: includes/class-freemius.php:19119, includes/class-freemius.php:19121, includes/class-freemius.php:24405, templates/account.php:130, templates/account/partials/addon.php:49 +#: includes/class-freemius.php:19127, includes/class-freemius.php:19129, includes/class-freemius.php:24413, templates/account.php:130, templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow left icon" msgid "←" msgstr "" -#: includes/class-freemius.php:19155 +#: includes/class-freemius.php:19163 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "" -#: includes/class-freemius.php:19157, templates/pricing.php:110 +#: includes/class-freemius.php:19165, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "" -#: includes/class-freemius.php:19370, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php:19378, includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "" -#: includes/class-freemius.php:20391 +#: includes/class-freemius.php:20399 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "" -#: includes/class-freemius.php:20392 +#: includes/class-freemius.php:20400 msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php:20898 +#: includes/class-freemius.php:20906 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20922 +#: includes/class-freemius.php:20930 msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21157 +#: includes/class-freemius.php:21165 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" #. translators: %s:product name, e.g. Facebook add-on was successfully... -#: includes/class-freemius.php:21159 +#: includes/class-freemius.php:21167 msgid "%s Add-on was successfully purchased." msgstr "" -#: includes/class-freemius.php:21162 +#: includes/class-freemius.php:21170 msgid "Download the latest version" msgstr "" -#: includes/class-freemius.php:21280 +#: includes/class-freemius.php:21288 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php:21280, includes/class-freemius.php:21677, includes/class-freemius.php:21778, includes/class-freemius.php:21865 +#: includes/class-freemius.php:21288, includes/class-freemius.php:21685, includes/class-freemius.php:21786, includes/class-freemius.php:21873 msgid "Error received from the server:" msgstr "" -#: includes/class-freemius.php:21511, includes/class-freemius.php:21783, includes/class-freemius.php:21836, includes/class-freemius.php:21943 +#: includes/class-freemius.php:21519, includes/class-freemius.php:21791, includes/class-freemius.php:21844, includes/class-freemius.php:21951 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "" -#: includes/class-freemius.php:21524 +#: includes/class-freemius.php:21532 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:21525, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 +#: includes/class-freemius.php:21533, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "" -#: includes/class-freemius.php:21530 +#: includes/class-freemius.php:21538 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "" -#: includes/class-freemius.php:21534, includes/class-freemius.php:21586 +#: includes/class-freemius.php:21542, includes/class-freemius.php:21594 msgid "Please contact us here" msgstr "" -#: includes/class-freemius.php:21556 +#: includes/class-freemius.php:21564 msgid "Your plan was successfully changed to %s." msgstr "" -#: includes/class-freemius.php:21572 +#: includes/class-freemius.php:21580 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:21582 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21590 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "" -#: includes/class-freemius.php:21595 +#: includes/class-freemius.php:21603 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "" -#: includes/class-freemius.php:21621 +#: includes/class-freemius.php:21629 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "" #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. -#: includes/class-freemius.php:21623 +#: includes/class-freemius.php:21631 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21669 +#: includes/class-freemius.php:21677 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" msgstr "" -#: includes/class-freemius.php:21671 +#: includes/class-freemius.php:21679 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21774 +#: includes/class-freemius.php:21782 msgid "It looks like the license could not be activated." msgstr "" -#: includes/class-freemius.php:21816 +#: includes/class-freemius.php:21824 msgid "Your license was successfully activated." msgstr "" -#: includes/class-freemius.php:21840 +#: includes/class-freemius.php:21848 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:21864 +#: includes/class-freemius.php:21872 msgid "It looks like the license deactivation failed." msgstr "" -#: includes/class-freemius.php:21893 +#: includes/class-freemius.php:21901 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21894 +#: includes/class-freemius.php:21902 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "" -#: includes/class-freemius.php:21897 +#: includes/class-freemius.php:21905 msgid "O.K" msgstr "" -#: includes/class-freemius.php:21950 +#: includes/class-freemius.php:21958 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21959 +#: includes/class-freemius.php:21967 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "" -#: includes/class-freemius.php:22001 +#: includes/class-freemius.php:22009 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:22012 +#: includes/class-freemius.php:22020 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:22048 +#: includes/class-freemius.php:22056 msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:22034 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:22037 +#: includes/class-freemius.php:22045 msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22097 +#: includes/class-freemius.php:22105 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "" -#: includes/class-freemius.php:22133 +#: includes/class-freemius.php:22141 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22152 +#: includes/class-freemius.php:22160 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22496 +#: includes/class-freemius.php:22504 msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22497 +#: includes/class-freemius.php:22505 msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22479 +#: includes/class-freemius.php:22487 msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22486 +#: includes/class-freemius.php:22494 msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22491 +#: includes/class-freemius.php:22499 msgid "New" msgstr "" -#: includes/class-freemius.php:22900 +#: includes/class-freemius.php:22908 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:23040 +#: includes/class-freemius.php:23048 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php:23041, includes/class-freemius.php:24101 +#: includes/class-freemius.php:23049, includes/class-freemius.php:24109 msgid "Awesome" msgstr "" -#: includes/class-freemius.php:23067 +#: includes/class-freemius.php:23075 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23057 +#: includes/class-freemius.php:23065 msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23058 +#: includes/class-freemius.php:23066 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23227 +#: includes/class-freemius.php:23235 msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." msgstr "" -#: includes/class-freemius.php:23225 +#: includes/class-freemius.php:23233 msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23239 +#: includes/class-freemius.php:23247 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "" -#: includes/class-freemius.php:23245 +#: includes/class-freemius.php:23253 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23255 msgctxt "as congratulations" msgid "Congrats" msgstr "" -#: includes/class-freemius.php:23269 +#: includes/class-freemius.php:23277 msgid "Your name was successfully updated." msgstr "" -#: includes/class-freemius.php:23264 +#: includes/class-freemius.php:23272 msgid "Please provide your full name." msgstr "" #. translators: %s: User's account property (e.g. email address, name) -#: includes/class-freemius.php:23334 +#: includes/class-freemius.php:23342 msgid "You have successfully updated your %s." msgstr "" -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23406 msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23401 +#: includes/class-freemius.php:23409 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23438 +#: includes/class-freemius.php:23446 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23511 +#: includes/class-freemius.php:23519 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "" -#: includes/class-freemius.php:23512 +#: includes/class-freemius.php:23520 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgctxt "exclamation" msgid "Hey" msgstr "" -#: includes/class-freemius.php:24141 +#: includes/class-freemius.php:24149 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24157 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24150 +#: includes/class-freemius.php:24158 msgid "No credit card required" msgstr "" -#: includes/class-freemius.php:24157, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:24165, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" -#: includes/class-freemius.php:24234 +#: includes/class-freemius.php:24242 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24243 +#: includes/class-freemius.php:24251 msgid "Learn more" msgstr "" -#: includes/class-freemius.php:24429, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php:24437, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 msgid "Activate License" msgstr "" -#: includes/class-freemius.php:24430, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 +#: includes/class-freemius.php:24438, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 msgid "Change License" msgstr "" -#: includes/class-freemius.php:24545, includes/class-freemius.php:24539, templates/account/partials/site.php:49, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24553, includes/class-freemius.php:24547, templates/account/partials/site.php:49, templates/account/partials/site.php:170 msgid "Opt In" msgstr "" -#: includes/class-freemius.php:24537, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24545, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "" -#: includes/class-freemius.php:24803 +#: includes/class-freemius.php:24811 msgid "Please follow these steps to complete the upgrade" msgstr "" #. translators: %s: Plan title -#: includes/class-freemius.php:24807 +#: includes/class-freemius.php:24815 msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24819 msgid "Upload and activate the downloaded version" msgstr "" -#: includes/class-freemius.php:24813 +#: includes/class-freemius.php:24821 msgid "How to upload and activate?" msgstr "" -#: includes/class-freemius.php:24780 +#: includes/class-freemius.php:24788 msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24790 +#: includes/class-freemius.php:24798 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24848 +#: includes/class-freemius.php:24856 msgid "Your plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:24849 +#: includes/class-freemius.php:24857 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24979 +#: includes/class-freemius.php:24987 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "" -#: includes/class-freemius.php:25148 +#: includes/class-freemius.php:25156 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php:25158, includes/class-freemius.php:25191, includes/class-fs-plugin-updater.php:1289, includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php:25166, includes/class-freemius.php:25199, includes/class-fs-plugin-updater.php:1289, includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php:25199, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php:25207, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php:25167, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php:25175, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "" -#: includes/class-freemius.php:25174 +#: includes/class-freemius.php:25182 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25181 +#: includes/class-freemius.php:25189 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "" -#: includes/class-freemius.php:25559 +#: includes/class-freemius.php:25567 msgid "View paid features" msgstr "" -#: includes/class-freemius.php:25874 +#: includes/class-freemius.php:25882 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25875 +#: includes/class-freemius.php:25883 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "" -#: includes/class-freemius.php:25894 +#: includes/class-freemius.php:25902 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25903 +#: includes/class-freemius.php:25911 msgid "Products" msgstr "" -#: includes/class-freemius.php:25863 +#: includes/class-freemius.php:25871 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25864 +#: includes/class-freemius.php:25872 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25870 +#: includes/class-freemius.php:25878 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "" -#: includes/class-freemius.php:25910, templates/connect.php:313 +#: includes/class-freemius.php:25918, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php:25911, templates/connect.php:314 +#: includes/class-freemius.php:25919, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25912, templates/connect.php:319 +#: includes/class-freemius.php:25920, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php:25914, templates/connect.php:321 +#: includes/class-freemius.php:25922, templates/connect.php:321 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25924 +#: includes/class-freemius.php:25932 msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php:25926, templates/connect.php:328 +#: includes/class-freemius.php:25934, templates/connect.php:328 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26216 +#: includes/class-freemius.php:26224 msgid "License key is empty." msgstr "" @@ -1218,7 +1218,7 @@ msgid "Cancelling the subscription" msgstr "" #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:114, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:316 +#: templates/account.php:114, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:34, templates/account/partials/site.php:316 msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." msgstr "" @@ -2723,11 +2723,6 @@ msgstr "" msgid "Last license" msgstr "" -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "" diff --git a/start.php b/start.php index 7ad9d4449..e33cd941d 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.6.2.5'; + $this_sdk_version = '2.7.0'; #region SDK Selection Logic -------------------------------------------------------------------- From 08649632cf55f9d5495ea7c3d936825f8672d7bf Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 27 Mar 2024 19:00:18 +0100 Subject: [PATCH 20/42] [license] [sticky] [renewal] Remove sticky message when license is manually extended server-side --- includes/class-freemius.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 801ab1b48..28e743570 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -21347,7 +21347,9 @@ private function _sync_plugin_license( /** * Sync licenses. Pass the site's license ID so that the foreign licenses will be fetched if the license * associated with that ID is not included in the user's licenses collection. + * Save previous value to manage remote license renewals. */ + $was_license_expired_before_sync = $this->_license->is_expired(); $this->_sync_licenses( $site->license_id, ( $is_context_single_site ? @@ -21481,6 +21483,14 @@ private function _sync_plugin_license( $plan_change = 'expired'; } } + } else if ( $was_license_expired_before_sync ) { + /** + * If license was expired but it is not anymore. + * + * + * @author Daniele Alessandra (@danielealessandra) + */ + $plan_change = 'extended'; } } @@ -21558,6 +21568,12 @@ private function _sync_plugin_license( 'license_expired', ) ); break; + case 'extended': + $this->_admin_notices->remove_sticky( array( + 'trial_expired', + 'license_expired', + ) ); + break; case 'changed': $this->_admin_notices->add_sticky( sprintf( From bc644c2e0a6812f4d43ae65e46fb4e6fef29089e Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Thu, 28 Mar 2024 21:19:38 +0800 Subject: [PATCH 21/42] [updates-check] [api] [cache] Improved the updates check API response caching. --- includes/class-freemius.php | 4 ++-- includes/class-fs-api.php | 7 +++++-- includes/class-fs-plugin-updater.php | 6 ++++-- includes/fs-plugin-info-dialog.php | 2 +- start.php | 2 +- templates/account.php | 4 ++-- 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 28e743570..eb3941aaf 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -20815,7 +20815,7 @@ private function _fetch_newer_version( $plugin_id = false, $flush = true, $expir * * @return bool|FS_Plugin_Tag */ - function get_update( $plugin_id = false, $flush = true, $expiration = WP_FS__TIME_24_HOURS_IN_SEC, $newer_than = false ) { + function get_update( $plugin_id = false, $flush = true, $expiration = FS_Plugin_Updater::UPDATES_CHECK_CACHE_EXPIRATION, $newer_than = false ) { $this->_logger->entrance(); if ( ! is_numeric( $plugin_id ) ) { @@ -22484,7 +22484,7 @@ private function check_updates( $background = false, $plugin_id = false, $flush = true, - $expiration = WP_FS__TIME_24_HOURS_IN_SEC, + $expiration = FS_Plugin_Updater::UPDATES_CHECK_CACHE_EXPIRATION, $newer_than = false ) { $this->_logger->entrance(); diff --git a/includes/class-fs-api.php b/includes/class-fs-api.php index e9a69472c..b381dea25 100755 --- a/includes/class-fs-api.php +++ b/includes/class-fs-api.php @@ -318,9 +318,12 @@ function get( $path = '/', $flush = false, $expiration = WP_FS__TIME_24_HOURS_IN $flush = true; } - $cached_result = self::$_cache->get( $cache_key ); + $has_valid_cache = self::$_cache->has_valid( $cache_key, $expiration ); + $cached_result = $has_valid_cache ? + self::$_cache->get( $cache_key ) : + null; - if ( $flush || ! self::$_cache->has_valid( $cache_key, $expiration ) ) { + if ( $flush || is_null( $cached_result ) ) { $result = $this->call( $path ); if ( ! is_object( $result ) || isset( $result->error ) ) { diff --git a/includes/class-fs-plugin-updater.php b/includes/class-fs-plugin-updater.php index 7f8fcb59d..c54c190b8 100755 --- a/includes/class-fs-plugin-updater.php +++ b/includes/class-fs-plugin-updater.php @@ -37,6 +37,8 @@ class FS_Plugin_Updater { private static $_upgrade_basename = null; + const UPDATES_CHECK_CACHE_EXPIRATION = ( WP_FS__TIME_24_HOURS_IN_SEC / 24 ); + #-------------------------------------------------------------------------------- #region Singleton #-------------------------------------------------------------------------------- @@ -530,7 +532,7 @@ function pre_set_site_transient_update_plugins_filter( $transient_data ) { $new_version = $this->_fs->get_update( false, fs_request_get_bool( 'force-check' ), - WP_FS__TIME_24_HOURS_IN_SEC / 24, + FS_Plugin_Updater::UPDATES_CHECK_CACHE_EXPIRATION, $current_plugin_version ); @@ -1188,7 +1190,7 @@ private static function get_tested_wp_version( $tested_up_to ) { * @return object */ private function get_latest_download_details( $addon_id = false, $newer_than = false, $fetch_readme = true ) { - return $this->_fs->_fetch_latest_version( $addon_id, true, WP_FS__TIME_24_HOURS_IN_SEC, $newer_than, $fetch_readme ); + return $this->_fs->_fetch_latest_version( $addon_id, true, FS_Plugin_Updater::UPDATES_CHECK_CACHE_EXPIRATION, $newer_than, $fetch_readme ); } /** diff --git a/includes/fs-plugin-info-dialog.php b/includes/fs-plugin-info-dialog.php index 24a33bf56..69bb6ce49 100755 --- a/includes/fs-plugin-info-dialog.php +++ b/includes/fs-plugin-info-dialog.php @@ -238,7 +238,7 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { $latest = $this->_fs->_fetch_latest_version( $selected_addon->id, true, - WP_FS__TIME_24_HOURS_IN_SEC, + FS_Plugin_Updater::UPDATES_CHECK_CACHE_EXPIRATION, $current_addon_version ); diff --git a/start.php b/start.php index e33cd941d..325de8f8f 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.0'; + $this_sdk_version = '2.7.0.1'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/account.php b/templates/account.php index af1ceb38e..999356efd 100755 --- a/templates/account.php +++ b/templates/account.php @@ -22,8 +22,8 @@ * @var FS_Plugin_Tag $update */ $update = $fs->has_release_on_freemius() ? - $fs->get_update( false, false, WP_FS__TIME_24_HOURS_IN_SEC / 24 ) : - null; + $fs->get_update( false, false ) : + null; if ( is_object($update) ) { /** From 5a1aa079d7ca525af9da2c8f85cf069392df39b3 Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Tue, 9 Apr 2024 15:18:34 +0300 Subject: [PATCH 22/42] [i18n] Update the strings for case sensitivity. Remove lines spacings that can be removed while translating. This is the commit message #2: [version-control] Revert breaking changes to string translation. --- languages/freemius.pot | 228 +++++++++--------- templates/forms/subscription-cancellation.php | 4 +- 2 files changed, 116 insertions(+), 116 deletions(-) diff --git a/languages/freemius.pot b/languages/freemius.pot index 6c4bb0176..587a38708 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-21 11:18+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" @@ -138,7 +138,7 @@ msgstr "" msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:4842, includes/class-freemius.php:21174, includes/class-freemius.php:24843 +#: includes/class-freemius.php:4842, includes/class-freemius.php:21174, includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "" @@ -153,7 +153,7 @@ msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "" -#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14575, includes/class-freemius.php:18330, includes/class-freemius.php:18443, includes/class-freemius.php:18620, includes/class-freemius.php:20905, includes/class-freemius.php:22004, includes/class-freemius.php:23020, includes/class-freemius.php:23150, includes/class-freemius.php:23293, templates/add-ons.php:57 +#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14575, includes/class-freemius.php:18330, includes/class-freemius.php:18443, includes/class-freemius.php:18620, includes/class-freemius.php:20905, includes/class-freemius.php:22020, includes/class-freemius.php:23036, includes/class-freemius.php:23166, includes/class-freemius.php:23309, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "" @@ -267,7 +267,7 @@ msgstr "" msgid "The upgrade of %s was successfully completed." msgstr "" -#: includes/class-freemius.php:10527, includes/class-fs-plugin-updater.php:1095, includes/class-fs-plugin-updater.php:1317, includes/class-fs-plugin-updater.php:1310, templates/auto-installation.php:32 +#: includes/class-freemius.php:10527, includes/class-fs-plugin-updater.php:1097, includes/class-fs-plugin-updater.php:1319, includes/class-fs-plugin-updater.php:1312, templates/auto-installation.php:32 msgid "Add-On" msgstr "" @@ -347,7 +347,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php:17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "" @@ -367,7 +367,7 @@ msgstr "" msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php:18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php:18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "" @@ -391,7 +391,7 @@ msgstr "" msgid "Contact Us" msgstr "" -#: includes/class-freemius.php:19127, includes/class-freemius.php:19129, includes/class-freemius.php:24413, templates/account.php:130, templates/account/partials/addon.php:49 +#: includes/class-freemius.php:19127, includes/class-freemius.php:19129, includes/class-freemius.php:24429, templates/account.php:130, templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "" @@ -448,441 +448,441 @@ msgstr "" msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php:21288, includes/class-freemius.php:21685, includes/class-freemius.php:21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php:21288, includes/class-freemius.php:21701, includes/class-freemius.php:21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "" -#: includes/class-freemius.php:21519, includes/class-freemius.php:21791, includes/class-freemius.php:21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php:21529, includes/class-freemius.php:21807, includes/class-freemius.php:21860, includes/class-freemius.php:21967 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:21533, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 +#: includes/class-freemius.php:21543, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "" -#: includes/class-freemius.php:21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php:21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "" -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "" -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "" -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "" #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "" -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "" -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "" -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "" -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php:23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php:23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "" -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "" -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "" -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "" #. translators: %s: User's account property (e.g. email address, name) -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 msgid "You have successfully updated your %s." msgstr "" -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "" -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "" -#: includes/class-freemius.php:24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "" -#: includes/class-freemius.php:24437, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php:24453, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 msgid "Activate License" msgstr "" -#: includes/class-freemius.php:24438, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 +#: includes/class-freemius.php:24454, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 msgid "Change License" msgstr "" -#: includes/class-freemius.php:24553, includes/class-freemius.php:24547, templates/account/partials/site.php:49, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24569, includes/class-freemius.php:24563, templates/account/partials/site.php:49, templates/account/partials/site.php:170 msgid "Opt In" msgstr "" -#: includes/class-freemius.php:24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "" #. translators: %s: Plan title -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php:25166, includes/class-freemius.php:25199, includes/class-fs-plugin-updater.php:1289, includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php:25182, includes/class-freemius.php:25215, includes/class-fs-plugin-updater.php:1291, includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php:25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php:25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php:25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php:25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "" -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "" -#: includes/class-freemius.php:25918, templates/connect.php:313 +#: includes/class-freemius.php:25934, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php:25919, templates/connect.php:314 +#: includes/class-freemius.php:25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25920, templates/connect.php:319 +#: includes/class-freemius.php:25936, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php:25922, templates/connect.php:321 +#: includes/class-freemius.php:25938, templates/connect.php:321 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php:25934, templates/connect.php:328 +#: includes/class-freemius.php:25950, templates/connect.php:328 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "" -#: includes/class-fs-plugin-updater.php:210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php:212, templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "" -#: includes/class-fs-plugin-updater.php:215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php:217, templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php:368, includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php:370, includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php:373, includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php:375, includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php:374, includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php:376, includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "" diff --git a/templates/forms/subscription-cancellation.php b/templates/forms/subscription-cancellation.php index 2a1d59110..fdaac6a1f 100644 --- a/templates/forms/subscription-cancellation.php +++ b/templates/forms/subscription-cancellation.php @@ -139,7 +139,7 @@ + '

' + + '
' + ' ' + ' ' + ' ' @@ -271,7 +271,7 @@ function showMessage(message) { function updateButtonLabels() { $modal.find('.button-primary').text( ); - $modal.find('.button-secondary').text( ); + $modal.find('.button-secondary').text( ); } })( jQuery ); \ No newline at end of file From f32be34c3dab60a64394717ff120a030e1a76b06 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 21 Apr 2024 17:25:55 +0530 Subject: [PATCH 23/42] [subscription-cancellation] [button-text] [l10n] Use proper localization function to populate the "Cancel" button of the subscription cancellation modal. --- languages/freemius.pot | 4 ++-- templates/forms/subscription-cancellation.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/languages/freemius.pot b/languages/freemius.pot index 587a38708..dd1f1a99c 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-04-21 11:18+0000\n" +"POT-Creation-Date: 2024-04-21 11:55+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" @@ -2466,7 +2466,7 @@ msgstr "" msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." msgstr "" -#: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/forms/subscription-cancellation.php:142, templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "" diff --git a/templates/forms/subscription-cancellation.php b/templates/forms/subscription-cancellation.php index fdaac6a1f..7a02fde38 100644 --- a/templates/forms/subscription-cancellation.php +++ b/templates/forms/subscription-cancellation.php @@ -139,7 +139,7 @@ + '
' + + '
' + ' ' + ' ' + ' ' @@ -194,7 +194,7 @@ function registerEventHandlers() { $modal.find('.fs-price-increase-warning').show(); } else { - $primaryButton.html( ); + $primaryButton.html( ); $modal.find('.fs-price-increase-warning').hide(); } @@ -271,7 +271,7 @@ function showMessage(message) { function updateButtonLabels() { $modal.find('.button-primary').text( ); - $modal.find('.button-secondary').text( ); + $modal.find('.button-secondary').text( ); } })( jQuery ); \ No newline at end of file From 9dafc316c231737c276efa0461acd47ec27726fc Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 21 Apr 2024 17:30:32 +0530 Subject: [PATCH 24/42] [version] [pre-release] 2.7.0.2 --- start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.php b/start.php index 325de8f8f..5f2c79e07 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.0.1'; + $this_sdk_version = '2.7.0.2'; #region SDK Selection Logic -------------------------------------------------------------------- From 28514bce97426d29d24d0da6aaf67e2edf98539e Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Mon, 22 Apr 2024 15:49:03 +0530 Subject: [PATCH 25/42] [version] [compile] [i18n] Version 2.7.1 --- languages/freemius-cs_CZ.po | 249 +++++++++++++++++----------------- languages/freemius-da_DK.po | 249 +++++++++++++++++----------------- languages/freemius-de_DE.po | 249 +++++++++++++++++----------------- languages/freemius-es_ES.po | 249 +++++++++++++++++----------------- languages/freemius-fr_FR.po | 249 +++++++++++++++++----------------- languages/freemius-he_IL.po | 249 +++++++++++++++++----------------- languages/freemius-hu_HU.po | 249 +++++++++++++++++----------------- languages/freemius-it_IT.mo | Bin 58062 -> 58452 bytes languages/freemius-it_IT.po | 260 ++++++++++++++++++------------------ languages/freemius-ja.po | 249 +++++++++++++++++----------------- languages/freemius-nl_NL.po | 249 +++++++++++++++++----------------- languages/freemius-ru_RU.po | 249 +++++++++++++++++----------------- languages/freemius-ta.po | 249 +++++++++++++++++----------------- languages/freemius-zh_CN.po | 249 +++++++++++++++++----------------- languages/freemius.pot | 2 +- start.php | 2 +- 16 files changed, 1633 insertions(+), 1619 deletions(-) diff --git a/languages/freemius-cs_CZ.po b/languages/freemius-cs_CZ.po index 485772d0d..02f6df942 100644 --- a/languages/freemius-cs_CZ.po +++ b/languages/freemius-cs_CZ.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Karolína Vyskočilová , 2019-2023\n" "Language-Team: Czech (Czech Republic) " @@ -269,9 +269,9 @@ msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!" msgid "The upgrade of %s was successfully completed." msgstr "Aktualizace %s byla úspěšně dokončena." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Doplněk" @@ -380,7 +380,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Vaše zkušebí verze byla úspěšně spuštěna." @@ -402,7 +402,7 @@ msgstr "Kontaktujte nás prosím s následující zprávou:" msgid "An unknown error has occurred." msgstr "Došlo k neznámé chybě." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Upgrade" @@ -429,7 +429,7 @@ msgid "Contact Us" msgstr "Support" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Doplňky" @@ -472,36 +472,36 @@ msgid "" "Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Chyba přijatá ze serveru:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "" -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Kontaktujte nás prosím zde" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Váše předplatné bylo úspěšně změněno na %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Vaše licence vypršela. Stále však můžete používat %s zdarma bez omezení." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -511,7 +511,7 @@ msgstr "" "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s " "používat bez omezení." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -519,7 +519,7 @@ msgstr "" "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na " "naší podporu." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -529,7 +529,7 @@ msgstr "" "ale pro získání technické podpory a nejnovějších aktualizací budete muset " "obnovit svou licenci." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -537,7 +537,7 @@ msgstr "" "Platnost bezplatné zkušební verze vypršela. Stále můžete pokračovat v " "používání všech našich bezplatných funkcí." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -547,84 +547,84 @@ msgstr "" "Platnost bezplatné zkušební verze vypršela. %1$s Upgradujte nyní%2$s abyste " "mohli pokračovat v používání %3$s bez přerušení." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Licenci se nepodařilo aktivovat." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Vaše licence byla úspěšně aktivována." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Deaktivace licence pravděpodobně selhala." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Zkušební verzi jste již dříve využili." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plán %s neexistuje, proto nemůžete použít zkušební verzi." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Plán %s nepodporuje zkušební období." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "Zkušební režim už vám skončil, takže už není co rušit :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -632,35 +632,35 @@ msgstr "" "Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší " "zkušební licence. Zkuste to znovu za několik minut." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Pravděpodobně máte nejnovější verzi." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "Byla vydána verze %s." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Stáhněte si prosím %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "nejnovější %s verze zde" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Nový" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -668,19 +668,19 @@ msgstr "" "Ověřovací zpráva byla právě odeslána na e-mail %s. Pokud ji nenajdete do 5 " "min, zkontrolujte prosím složku pro spam." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Úžasné" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -688,24 +688,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Děkujeme!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -713,44 +713,44 @@ msgstr "" "Děkujeme za potvrzení změny vlastnictví. E-mail byl právě odeslán na adresu " "%s, ke konečnému schválení." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s je nový vlastník účtu." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Vaše jméno bylo úspěšně aktualizováno." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Zadejte prosím jméno a příjmení." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Úspěšně jste aktualizovali %s." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -758,25 +758,25 @@ msgstr "" "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s " "%d-denní zkušební verze zdarma." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Kreditní karta není vyžadována" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Přečtěte si více" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -784,40 +784,40 @@ msgstr "Přečtěte si více" msgid "Activate License" msgstr "Aktivovat licenci" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Změnit licenci" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Odebírat novinky" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Odhlásit se" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Dokončete upgrade provedením následujících kroků" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Stáhnout nejnovější verzi %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Nahrát a aktivovat stáhnutou verzi" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Jak nahrát a aktivovat?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -825,103 +825,103 @@ msgstr "" " Placená verze %1$s je již nainstalována. Aktivujte jí, abyste mohli těžit " "z %2$s funkcí. %3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Aktivovat %s funkce" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Váš plán byl úspěšně aktualizován." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Vaše licence byla úspěšně aktivována." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Neplatné ID modulu." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Prémiová verze je již aktivní." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Nemáte platnou licenci pro přístup k prémiové verzi." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Zobrazit placené funkce" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Moc vám děkujeme za používání našich produktů!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s a jeho doplňky" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Produkty" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Moc vám děkujeme za používání %s a jeho doplňků!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Moc vám děkujeme za používání %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Ano" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "posílejte mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a " "nabídky." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Ne" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -929,14 +929,14 @@ msgstr "" "%sneposílejte%s mi bezpečnostní aktualizace a vylepšení, vzdělávací obsah a " "nabídky." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -945,50 +945,50 @@ msgstr "" "vylepšení funkcionality, vzdělávacímu obsahu nebo občasných obchodních " "nabídkách:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "Licenční klíč je prázdný." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Obnovit licenci" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koupit licenci" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "nová Beta verze" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "nová verze" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Instaluji plugin: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "Nelze se připojit k souborovému systému. Potvrďte prosím své přístupové " "údaje." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2457,6 +2457,7 @@ msgid "" msgstr "" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Zrušit" @@ -2878,7 +2879,7 @@ msgid "" msgstr "" #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Hurá" @@ -2897,14 +2898,14 @@ msgstr "%s nelze spustit bez tohoto pluginu." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Jejda" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Dobrý den" @@ -2968,31 +2969,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Zkušební verze" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Gratulujeme" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" diff --git a/languages/freemius-da_DK.po b/languages/freemius-da_DK.po index faaec472a..645f383a9 100644 --- a/languages/freemius-da_DK.po +++ b/languages/freemius-da_DK.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Joachim Jensen, 2019-2020,2022-2023\n" "Language-Team: Danish (Denmark) " @@ -260,9 +260,9 @@ msgstr "Accepter for at gøre \"%s\" bedre!" msgid "The upgrade of %s was successfully completed." msgstr "Opgraderingen af %s blev fuldendt." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Tilføjelse" @@ -371,7 +371,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Din prøveperiode er begyndt." @@ -393,7 +393,7 @@ msgstr "Kontakt os venligst med følgende besked:" msgid "An unknown error has occurred." msgstr "Der skete en ukendt fejl." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Opgrader" @@ -420,7 +420,7 @@ msgid "Contact Us" msgstr "Kontakt os" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Tilføjelser" @@ -463,18 +463,18 @@ msgid "" "Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Fejl modtager fra serveren:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -482,21 +482,21 @@ msgstr "" "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere " "licensen, forbliver planen %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Kontakt os her" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Din plan er blevet ændret til %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis " "udgave af %s." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -506,7 +506,7 @@ msgstr "" "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte " "%3$s uden forstyrrelser." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -514,7 +514,7 @@ msgstr "" "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så " "kontakt venligst support." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -523,7 +523,7 @@ msgstr "" "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du " "bliver nødt til at fornye din licens for at få opdateringer og support." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -531,7 +531,7 @@ msgstr "" "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis " "features." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -539,78 +539,78 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Det ser ud til, at licensen ikke kunne aktiveres." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Din licens er blevet aktiveret." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Din licens blev deaktiveret, du er tilbage på planen %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Du benytter allerede %s under en prøveperiode." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Du har allerede brugt din prøveperiode." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Ingen af %s's planer understøtter prøveperiode." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Plan %s understøtter ikke en prøveperiode." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -618,59 +618,59 @@ msgstr "" "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at " "annullere :-)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Din gratis prøveperiode for %s er blevet annulleret." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Det ser ud til, at du har den seneste udgivelse." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Det var det!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "Version %s er blevet udgivet." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Download venligst %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "den seneste version af %s her" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Ny" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." msgstr "" -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Websted er tilmeldt." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Sejt" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -678,24 +678,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Mange tak!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -703,44 +703,44 @@ msgstr "" "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s " "for sidste godkendelse." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s er den nye ejer af kontoen." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Dit navn er blevet opdateret." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Indtast venligst dit fulde navn." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Opdatering af %s blev gennemført." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "Klik her" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -748,25 +748,25 @@ msgstr "" "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s " "med en %d-dags gratis prøveperiode." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Ingen bindinger i %s dage - annuller når som helst!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Betalingskort ikke påkrævet" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Læs mere" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -774,100 +774,100 @@ msgstr "Læs mere" msgid "Activate License" msgstr "Aktiver licens" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Skift licens" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Tilmeld" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Frameld" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Følg venligst disse trin for at færdiggøre opgraderingen" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download den seneste version af %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Upload og aktiver den downloadede version" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Upload og aktivering, hvordan?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Aktiver funktioner i %s" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Din plan er blevet opgraderet." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Din plan er blevet aktiveret." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "Auto-installation fungerer kun for tilmeldte brugere." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Ugyldigt modul-ID." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Premium tilføjelse er allerede installeret." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Premium version allerede aktiv." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Du har ikke en gyldig licens til at benytte premium-versionen." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Vis betalte features" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Mange tak for at benytte vores produkter!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -875,23 +875,23 @@ msgstr "" "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at " "forbedre dem." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s og tilføjelser" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Produkter" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Tak fordi du benytter %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -899,19 +899,19 @@ msgstr "" "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at " "forbedre %s." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Nej" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -919,14 +919,14 @@ msgstr "" "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og " "tilbud." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -934,48 +934,48 @@ msgstr "" "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og " "feature-opdateringer, informativt indhold og lejlighedsvise tilbud:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "Licensnøglen er tom." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Forny licens" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Køb licens" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "ny beta-version" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "ny version" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Vigtig meddelelse til opgradering:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Installerer plugin: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2426,6 +2426,7 @@ msgid "" msgstr "" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuller" @@ -2839,7 +2840,7 @@ msgstr "" "tilmeldingen." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Yee-haw" @@ -2858,14 +2859,14 @@ msgstr "%s virker ikke uden pluginnet." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Ups" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -2929,31 +2930,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Sådan" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Prøveperiode" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Tillykke" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Se her" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start gratis prøveperiode" diff --git a/languages/freemius-de_DE.po b/languages/freemius-de_DE.po index da070063d..cfdf24ba2 100644 --- a/languages/freemius-de_DE.po +++ b/languages/freemius-de_DE.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Oliver Heinrich, 2022-2023\n" "Language-Team: German (Germany) " @@ -286,9 +286,9 @@ msgstr "Mach mit, um \"%s\" besser zu machen!" msgid "The upgrade of %s was successfully completed." msgstr "Das Upgrade von %s wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" @@ -413,7 +413,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "%s Opt-In wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Dein Testzeitraum wurde erfolgreich gestartet." @@ -435,7 +435,7 @@ msgstr "Bitte kontaktiere uns mit der folgenden Nachricht:" msgid "An unknown error has occurred." msgstr "Ein unbekannter Fehler ist aufgetreten." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Upgrade" @@ -462,7 +462,7 @@ msgid "Contact Us" msgstr "Kontakt" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-ons" @@ -512,12 +512,12 @@ msgstr "" "Es scheint, dass einer der Authentifizierungsparameter falsch ist. " "Aktualisiere deinen Public Key, Secret Key & User ID und versuche es erneut." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Fehler vom Server empfangen:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -526,7 +526,7 @@ msgstr "" "oder einen Planwechsel durchgeführt hast, ist das wahrscheinlich ein " "Problem auf unserer Seite - sorry." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -534,21 +534,21 @@ msgstr "" "Ich habe mein Konto hochgestuft, aber wenn ich versuche, die Lizenz zu " "synchronisieren, bleibt der Plan %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Bitte kontaktiere uns hier" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Dein Plan wurde erfolgreich auf %s geändert." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Deine Lizenz ist abgelaufen. Du kannst das kostenlose %s trotzdem für immer " "weiter nutzen." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -558,7 +558,7 @@ msgstr "" "Deine Lizenz ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin " "ohne Unterbrechungen zu nutzen." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -566,7 +566,7 @@ msgstr "" "Deine Lizenz wurde gelöscht. Wenn du denkst, dass es ein Fehler ist, " "kontaktiere bitte den Support." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -576,7 +576,7 @@ msgstr "" "aber du musst deine Lizenz erneuern, um weiterhin Updates und Support zu " "erhalten." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -584,7 +584,7 @@ msgstr "" "Dein kostenloser Testzeitraum ist abgelaufen. Du kannst aber weiterhin alle " "unsere kostenlosen Funktionen nutzen." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -594,7 +594,7 @@ msgstr "" "Deine kostenlose Testversion ist abgelaufen. %1$sUpgrade jetzt%2$s, um das " "%3$s weiterhin ohne Unterbrechungen zu nutzen." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " @@ -604,39 +604,39 @@ msgstr "" "Synchronisation von %1$s entscheidend ist. Bitte wende dich an deinen Host, " "um die folgenden Domains auf die Whitelist zu setzen: %2$s" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "Fehlerdetails anzeigen" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Es sieht so aus, als ob die Lizenz nicht aktiviert werden konnte." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Deine Lizenz wurde erfolgreich aktiviert." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Es sieht so aus, als ob deine Seite derzeit keine aktive Lizenz hat." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Es sieht so aus, als wäre die Lizenzdeaktivierung fehlgeschlagen." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "Deine %s-Lizenz wurde erfolgreich deaktiviert." -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Deine Lizenz wurde erfolgreich deaktiviert, du bist zurück im %s Plan." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -644,7 +644,7 @@ msgstr "" "Es scheint, als ob wir ein temporäres Problem mit der Kündigung deines " "Abonnements haben. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -652,27 +652,27 @@ msgstr "" "Dein Abonnement wurde erfolgreich gekündigt. Dein %s Plan wird in %s " "ablaufen." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Du testest %s bereits." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Du hast schon einmal einen Testzeitraum in Anspruch genommen." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Keiner der Pläne von %s unterstützt eine Probezeit." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s existiert nicht, es kann keine Testversion gestartet werden." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Der Plan %s unterstützt keine Probezeit." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -680,7 +680,7 @@ msgstr "" "Es sieht so aus, als wärst du nicht mehr im Testmodus, also gibt es nichts " "zu stornieren :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -688,35 +688,35 @@ msgstr "" "Es scheint, als hätten wir ein temporäres Problem mit der Abmeldung deiner " "Testversion. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Deine %s kostenlose Testversion wurde erfolgreich storniert." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Sieht so aus, als hättest du die neueste Version." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Ihr seid alle gut!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "Version %s wurde freigegeben." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Bitte lade %s herunter." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "die neueste %s Version hier" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Neu" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -724,19 +724,19 @@ msgstr "" "Verifizierungsmail wurde gerade an %s gesendet. Wenn du sie nach 5 Minuten " "nicht finden kannst, überprüfe bitte deine Spam-Ordner." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Webseite erfolgreich eingeloggt." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Fantastisch" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "Diagnosedaten werden nicht mehr von %s bis %sgesendet." -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -749,11 +749,11 @@ msgstr "" "beschädigen können, und zu erkennen, auf welche Sprachen und Regionen das " "Plugin übersetzt und angepasst werden sollte." -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Danke dir!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " @@ -763,7 +763,7 @@ msgstr "" "Aktualisierung innerhalb der nächsten 4 Stunden bestätigen. Wenn du die " "E-Mail nicht findest, überprüfe bitte deinen Spam-Ordner." -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." @@ -772,7 +772,7 @@ msgstr "" "E-Mail-Adresse muss die Aktualisierung innerhalb der nächsten 4 Stunden " "bestätigen." -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -780,24 +780,24 @@ msgstr "" "Danke für die Bestätigung des Eigentümerwechsels. Eine E-Mail wurde soeben " "an %s zur endgültigen Genehmigung gesendet." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s ist der neue Besitzer des Kontos." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Dein Name wurde erfolgreich aktualisiert." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Bitte gib deinen vollständigen Namen an." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Du hast deine %s erfolgreich aktualisiert." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." @@ -806,15 +806,15 @@ msgstr "" "deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse & Rechnungen vor " "dem WP Admin verstecken möchtest." -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "Hier klicken" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "Paket" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -822,7 +822,7 @@ msgstr "" "Ich wollte dich nur darauf hinweisen, dass die Add-on-Informationen von %s " "von einem externen Server bezogen werden." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -830,15 +830,15 @@ msgstr "" "Wie gefällt dir %s bis jetzt? Teste alle %s Premium-Funktionen mit der " "kostenlosen %d-Tage-Testversion." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Keine Verpflichtung für %s Tage - jederzeit kündbar!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Keine Kreditkarte erforderlich" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -846,11 +846,11 @@ msgstr "" "Hallo, wusstest du, dass %s ein Partnerprogramm hat? Wenn du %s magst, " "kannst du unser Affiliate-Partner werden und etwas Geld verdienen!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Mehr erfahren" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -858,40 +858,40 @@ msgstr "Mehr erfahren" msgid "Activate License" msgstr "Lizenz freischalten" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Lizenz ändern" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt-In" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Abmelden" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Bitte folge diesen Schritten, um das Upgrade abzuschließen" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Lade die neueste %s Version herunter" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Lade die heruntergeladene Version hoch und aktiviere sie" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Wie kann ich es hochladen und aktivieren?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -899,19 +899,19 @@ msgstr "" " Die kostenpflichtige Version von %1$s ist bereits installiert. Bitte " "aktiviere sie, um von den %2$s Funktionen zu profitieren. %3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Aktiviere %s Funktionen" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Dein Plan wurde erfolgreich upgegradet." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Dein Plan wurde erfolgreich aktiviert." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." @@ -919,29 +919,29 @@ msgstr "" "%sKlicke hier%s um die Webseite auszuwählen, auf denen du die Lizenz " "aktivieren möchtest." -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "Die automatische Installation funktioniert nur für eingeloggte Nutzer." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Ungültige Modul-ID." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Premium Add-on Version bereits installiert." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Premium Version bereits aktiv." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Du hast keine gültige Lizenz, um auf die Premium-Version zuzugreifen." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -949,15 +949,15 @@ msgstr "" "Das Plugin ist eine \"Serviceware\", was bedeutet, dass es keine " "Premiumversion hat." -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Bezahlte Funktionen ansehen" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Vielen Dank, dass du unsere Produkte benutzt!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -965,23 +965,23 @@ msgstr "" "Du hast Dich bereits für unser Nutzungs-Tracking entschieden, was uns " "hilft, die Benutzerfreundlichkeit weiter zu verbessern." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s und seine Add-ons" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Produkte" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Vielen Dank, dass du %s und seine Add-ons benutzt!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Vielen Dank, dass du %s benutzt!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -989,19 +989,19 @@ msgstr "" "Du hast dich bereits für unser Nutzungs-Tracking entschieden, was uns " "hilft, %s weiter zu verbessern." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "schicke mir Sicherheits- und Funktionsupdates, Bildungsinhalte und Angebote." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Nein" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -1009,7 +1009,7 @@ msgstr "" "schicke mir %sKEINE%s Sicherheits- und Funktionsupdates, Bildungsinhalte " "und Angebote." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " @@ -1019,7 +1019,7 @@ msgstr "" "Compliance-Anforderungen ist es erforderlich, dass du deine ausdrückliche " "Zustimmung gibst und damit bestätigst, dass du an Bord bist :-)" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -1027,50 +1027,50 @@ msgstr "" "Bitte lass uns wissen, wenn du möchtest, dass wir dich für Sicherheits- und " "Funktionsupdates, Bildungsinhalte und gelegentliche Angebote kontaktieren:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "Der Lizenzschlüssel ist leer." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Lizenz erneuern" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Lizenz kaufen" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "Es ist ein %s von %s verfügbar." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "neue Beta Version" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "neue Version" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Wichtiger Hinweis zum Upgrade:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Installiere das Plugin: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "Es kann keine Verbindung zum Dateisystem hergestellt werden. Bitte " "bestätige deine Anmeldedaten." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2631,6 +2631,7 @@ msgstr "" "genau wie möglich)." #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Abbrechen" @@ -3080,7 +3081,7 @@ msgstr "" "einfach das Opt-in %s." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Hurra" @@ -3099,14 +3100,14 @@ msgstr "%s kann ohne das Plugin nicht laufen." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Hoppla" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hallo" @@ -3170,31 +3171,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Direkt an" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Test" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Herzlichen Glückwunsch" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Kopf hoch" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Starte die kostenlose Testversion" diff --git a/languages/freemius-es_ES.po b/languages/freemius-es_ES.po index 7d3874dde..fd2e80055 100644 --- a/languages/freemius-es_ES.po +++ b/languages/freemius-es_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Leo Fajardo , 2022\n" "Language-Team: Spanish (Spain) " @@ -275,9 +275,9 @@ msgstr "¡Inscríbite para hacer \"%s\" Mejor!" msgid "The upgrade of %s was successfully completed." msgstr "La actualización de %s se completó con éxito." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Complemento" @@ -400,7 +400,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Tu versión de prueba se ha iniciado con éxito." @@ -422,7 +422,7 @@ msgstr "Por favor contáctanos con el siguiente mensaje:" msgid "An unknown error has occurred." msgstr "Se ha producido un error desconocido." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Actualizar" @@ -449,7 +449,7 @@ msgid "Contact Us" msgstr "Contáctanos" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Complementos" @@ -497,12 +497,12 @@ msgstr "" "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza " "tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Error recibido del servidor:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -510,7 +510,7 @@ msgstr "" "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu " "plan, probablemente sea un problema de nuestra parte - lo sentimos." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -518,21 +518,21 @@ msgstr "" "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el " "plan sigue siendo %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Contacta aquí con nosotros" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Tu plan se cambió correctamente a %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para " "siempre." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -542,7 +542,7 @@ msgstr "" "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el " "%3$s sin interrupciones." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -550,7 +550,7 @@ msgstr "" "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto " "con el servicio de asistencia." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -560,7 +560,7 @@ msgstr "" "de %s, pero tendrás que renovar tu licencia para seguir recibiendo " "actualizaciones y soporte." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -568,7 +568,7 @@ msgstr "" "Tu período de prueba ha caducado. Todavía puedes seguir usando todas " "nuestras funciones gratuitas." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -578,46 +578,46 @@ msgstr "" "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar " "usando el %3$s sin interrupciones." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Parece que la licencia no se pudo activar." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Tu licencia fue activada correctamente." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Parece que tu sitio actualmente no tiene una licencia activa." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Parece que la desactivación de licencia ha fallado." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "Tu licencia %s ha sido desactivada correctamente." -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -625,7 +625,7 @@ msgstr "" "Parece que estamos teniendo algún problema temporal con tu cancelación de " "la suscripción. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -633,27 +633,27 @@ msgstr "" "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan " "caducará en %s." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Estás ejecutando %s en modo de prueba." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Ya utilizaste un período de prueba antes." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Ninguno de los planes de %s soportan un período de prueba." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "El plan %s no admite un período de prueba." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -661,7 +661,7 @@ msgstr "" "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar " ":)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -669,35 +669,35 @@ msgstr "" "Parece que estamos teniendo algún problema temporal con tu cancelación de " "prueba. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Tu prueba gratuita de %s fue cancelada con éxito." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Parece que tienes la última versión." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "¡Está todo listo!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "La versión %s se ha lanzado." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Por favor descarga %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "la última versión %s aquí" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Nuevo" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -705,19 +705,19 @@ msgstr "" "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo " "después de 5 min, comprueba tu carpeta de spam." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Sitio dado de alta correctamente." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Increíble" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -725,24 +725,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "¡Gracias!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -750,24 +750,24 @@ msgstr "" "Gracias por confirmar el cambio de propiedad. Se envió un correo " "electrónico a %s para su aprobación final." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s es el nuevo dueño de la cuenta." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Tu nombre fue actualizado correctamente." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Por favor, dinos tu nombre completo." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Has actualizado correctamente tu %s." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." @@ -776,15 +776,15 @@ msgstr "" "como tu correo electrónico, clave de licencia, precios, dirección de " "facturación y facturas de la administración de WP." -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "Haz clic aquí" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -792,7 +792,7 @@ msgstr "" "Sólo déjanos informarte que la información de complementos de %s se está " "extrayendo de un servidor externo." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -800,15 +800,15 @@ msgstr "" "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de " "%s con una prueba gratuita de %d-días." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "No se necesita tarjeta de crédito" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -816,11 +816,11 @@ msgstr "" "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes " "convertirte en nuestro embajador y ganar dinero!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Saber más" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -828,40 +828,40 @@ msgstr "Saber más" msgid "Activate License" msgstr "Activar licencia" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambiar licencia" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscribirse" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Darse de baja" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Por favor, sigue estos pasos para completar la actualización" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Descargar la última versión %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Cargar y activar la versión descargada" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "¿Cómo subirlo y activarlo?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -869,19 +869,19 @@ msgstr "" " La versión de pago de %1$s ya está instalada. Por favor, actívala para " "empezar a beneficiarte de las características de %2$s. %3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Activar características %s" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Tu plan se actualizó con éxito." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Tu plan se activó con éxito." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." @@ -889,29 +889,29 @@ msgstr "" "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la " "licencia." -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "La instalación automática sólo funciona para usuarios que aceptaron." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Id de módulo no válido." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Versión del complemento premium ya instalada." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Versión premium ya activa." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "No tienes una licencia válida para acceder a la versión premium." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -919,15 +919,15 @@ msgstr "" "El plugin es un \"Serviceware\" lo que significa que no tiene una versión " "de código premium." -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Ver las funciones de pago" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "¡Muchas gracias por utilizar nuestros productos!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -935,23 +935,23 @@ msgstr "" "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " "mejorando." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s y sus complementos" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Productos" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "¡Muchas gracias por utilizar %s y sus complementos!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "¡Muchas gracias por utilizar %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -959,21 +959,21 @@ msgstr "" "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " "mejorando %s." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido " "educativo y ofertas." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -981,7 +981,7 @@ msgstr "" "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, " "contenido educativo y ofertas." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " @@ -991,7 +991,7 @@ msgstr "" "requisitos de obligado cumplimiento requieren que proporciones tu " "consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -999,50 +999,50 @@ msgstr "" "Indica si deseas que te contactemos para actualizaciones de seguridad y " "nuevas funciones, contenido educativo y ofertas ocasionales:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "La clave de licencia está vacía." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renovar la licencia" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Comprar licencia" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "Hay una %s de %s disponible." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "nueva versión Beta" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "nueva versión" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Aviso importante de actualización:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Instalando plugin: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "No es posible conectarse al sistema de archivos. Por favor, confirma tus " "credenciales." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2551,6 +2551,7 @@ msgstr "" "lo más específico que puedas)" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Cancelar" @@ -2989,7 +2990,7 @@ msgstr "" "dato y puedes solo aceptar %s." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Vaya" @@ -3008,14 +3009,14 @@ msgstr "%s no se puede ejecutar sin el plugin." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oops" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3079,31 +3080,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Bien hecho" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Período de Prueba Gratuito" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Felicidades" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Atención" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Comenzar el período de prueba gratuito" diff --git a/languages/freemius-fr_FR.po b/languages/freemius-fr_FR.po index 2d5b0c9eb..8649a97fb 100644 --- a/languages/freemius-fr_FR.po +++ b/languages/freemius-fr_FR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Boris Colombier , 2018\n" "Language-Team: French (France) " @@ -268,9 +268,9 @@ msgstr "Inscrivez-vous pour améliorer \"%s\" !" msgid "The upgrade of %s was successfully completed." msgstr "La mise à jour du %s s'est terminée avec succès " -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" @@ -383,7 +383,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Votre période d'essai a bien démarré." @@ -405,7 +405,7 @@ msgstr "Merci de nous contacter avec le message suivant :" msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Mise à jour" @@ -432,7 +432,7 @@ msgid "Contact Us" msgstr "Contactez Nous" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" @@ -478,12 +478,12 @@ msgstr "" "mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et " "essayez à nouveau." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Une erreur a été reçu depuis le serveur :" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -492,7 +492,7 @@ msgstr "" "ou changer votre formule, le problème est probablement de votre côté - " "désolé." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -500,21 +500,21 @@ msgstr "" "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, " "la formule est toujours %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Merci de nous contacter ici" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Votre formule a bien été modifié vers %s. " -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite " "indéfiniment." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -524,7 +524,7 @@ msgstr "" "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour " "continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -532,7 +532,7 @@ msgstr "" "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci " "de contacter le support." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -542,7 +542,7 @@ msgstr "" "%s mais vous devrez renouveler votre licence pour recevoir les mises à jour " "et une assistance." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -550,7 +550,7 @@ msgstr "" "Votre période d'essai gratuite est terminée. Vous pouvez continuer à " "utiliser toutes nos fonctionnalités gratuites." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -560,46 +560,46 @@ msgstr "" "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour " "maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Il semble que la licence ne puisse être activée." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Votre licence a bien été activée." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Il semble que votre site n'ait pas de licence active." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Il semble que la désactivation de la licence a échoué." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -607,7 +607,7 @@ msgstr "" "Il semble que nous ayons un problème temporaire avec l'annulation de votre " "abonnement. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -615,29 +615,29 @@ msgstr "" "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera " "dans %s." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Vous utilisez déjà le %s en période d'essai. " -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Vous avez déjà utilisé la période d'essai." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Aucune formule du %s ne propose de période d'essai." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" "La formule %s n'existe pas, il n'est pas possible de commencer une période " "d'essai." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "La formule %s ne propose pas de période d'essai." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -645,7 +645,7 @@ msgstr "" "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à " "annuler :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -653,35 +653,35 @@ msgstr "" "Il semble que nous ayons un problème temporaire pour annuler votre période " "d'essai. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Votre période d'essai %s a bien été annulé." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Il semble que vous ayez la dernière version." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Vous êtes tout bon !" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "La version %s vient d'être publiée." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Merci de télécharger %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "la dernière version de %s ici" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Nouveau" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -689,19 +689,19 @@ msgstr "" "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez " "pas d'ici 5 minutes, merci de vérifier dans vos spams." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Site ajouté avec succès." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Formidable" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -709,24 +709,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Merci !" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -734,38 +734,38 @@ msgstr "" "Merci pour la confirmation du changement de propriétaire. Un email vient " "d'être envoyé à %s pour la validation finale." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s est le nouveau propriétaire du compte." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Votre nom a été mis à jour." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Merci d'indiquer vos prénom et nom." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Votre %s a bien été mis à jour." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -773,7 +773,7 @@ msgstr "" "Sachez que les informations de l'add-ons de %s sont issus d'un serveur " "externe." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -781,15 +781,15 @@ msgstr "" "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours " "d'essai gratuit." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Pas besoin de carte bancaire" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -797,11 +797,11 @@ msgstr "" "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez " "le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "En savoir plus" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -809,58 +809,58 @@ msgstr "En savoir plus" msgid "Activate License" msgstr "Activer la licence" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Changer la licence" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscription" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Désinscription" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Merci de suivre ces étapes pour finaliser la mise à jour" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Télécharger la dernière version %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Téléverser et activer la version téléchargée" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Comment téléverser et activer ?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Activer les fonctionnalités %s" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Votre formule a bien été mise à jour." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." @@ -868,31 +868,31 @@ msgstr "" "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer " "la licence." -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" "L'installation automatique ne fonctionne que pour les utilisateurs qui se " "sont inscrits." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "ID du module non valide." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "La version premium de l'add-on est déjà installée." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Version premium déjà active." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Vous n'avez pas de licence valide pour accéder à la version premium." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -900,15 +900,15 @@ msgstr "" "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version " "premium de code." -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Voir les fonctionnalités payantes" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Merci beaucoup d'utiliser nos produits !" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -916,23 +916,23 @@ msgstr "" "Vous avez déjà validé notre suivi d'utilisation qui nous permet de " "continuer à les améliorer." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s et ses add-ons" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Produits" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Merci beaucoup d'utiliser %s !" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -940,19 +940,19 @@ msgstr "" "Vous avez déjà validé notre suivi d'utilisation qui nous permet de " "continuer à améliorer le %s." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Oui" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Non" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -960,14 +960,14 @@ msgstr "" "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni " "de contenu instructif, ni d'offre." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -976,50 +976,50 @@ msgstr "" "mises à jour de sécurité et de fonctionnalités, du contenu instructif et " "des offres spéciales :" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "La clé de licence est vide." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renouvelez votre licence" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Acheter une licence" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "Il y a une %s de %s disponible." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "Nouvelle version" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Information importante de mise à jour :" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Installation du plugin : %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "Impossible de se connecter au système de fichiers. Merci de confirmer vos " "autorisations." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2534,6 +2534,7 @@ msgstr "" "étant aussi précis que possible)" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuler" @@ -2967,7 +2968,7 @@ msgstr "" "la moindre information et vous pouvez juste %s l'enregistrement." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Youpi" @@ -2986,14 +2987,14 @@ msgstr "%s ne peut pas fonctionner sans le plugin." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oups" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3057,31 +3058,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Directement" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Période d'essai" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Félicitations" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Avertissement" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Commencer l'essai gratuit" diff --git a/languages/freemius-he_IL.po b/languages/freemius-he_IL.po index 0923007f4..e01cdfbc7 100644 --- a/languages/freemius-he_IL.po +++ b/languages/freemius-he_IL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Vova Feldman , 2017-2018,2022\n" "Language-Team: Hebrew (Israel) " @@ -265,9 +265,9 @@ msgstr "" msgid "The upgrade of %s was successfully completed." msgstr "The upgrade of %s was successfully completed." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" @@ -378,7 +378,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "הניסיון שלך הופעל בהצלחה." @@ -400,7 +400,7 @@ msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:" msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "שדרג" @@ -427,7 +427,7 @@ msgid "Contact Us" msgstr "יצירת קשר" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" @@ -472,12 +472,12 @@ msgstr "" "It seems like one of the authentication parameters is wrong. Update your " "Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "הוחזרה שגיאה מהשרת:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -485,25 +485,25 @@ msgstr "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "אנא צור איתנו קשר כאן" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "החבילה עודכנה בהצלחה אל %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Your license has expired. You can still continue using the free %s forever." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -511,13 +511,13 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -527,13 +527,13 @@ msgstr "" "but you'll need to renew your license to continue getting updates and " "support." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -541,78 +541,78 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "נראה שלא ניתן להפעיל את הרישיון." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "הרישיון הופעל בהצלחה." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "נראה לאתר עדיין אין רישיון פעיל." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "נראה שניתוק הרישיון נכשל." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s" -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "אוקיי" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "You are already running the %s in a trial mode." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "הניסיון כבר נוצל בעבר." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "None of the %s's plans supports a trial period." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "תוכנית %s אינה תומכת בתקופת ניסיון." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -620,41 +620,41 @@ msgstr "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "נראה שיש לך את הגרסה האחרונה." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "את\\ה מסודר!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "גרסה %s הושקה." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "נא להוריד את %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "גרסת ה-%s האחרונה כאן" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "חדש" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -662,19 +662,19 @@ msgstr "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "אדיר" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -682,61 +682,61 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "תודה רבה!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s הינו הבעלים החד של חשבון זה." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "שמך עודכן בהצלחה." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "נא למלא את שמך המלא." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "עידכנת בהצלחה את ה%s." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -744,7 +744,7 @@ msgstr "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -752,15 +752,15 @@ msgstr "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "לא נדרש כרטיס אשראי" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -768,11 +768,11 @@ msgstr "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Learn more" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -780,200 +780,200 @@ msgstr "Learn more" msgid "Activate License" msgstr "הפעלת רישיון" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "שינוי רישיון" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "הורד\\י את גרסת ה-%s העדכנית" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "איך להעלות ולהפעיל?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "החבילה שודרגה בהצלחה." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "מזהה המודול לא תקני." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "הגרסה בתשלום כבר פעילה." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "צפה בפיטצ'רים שבתשלום" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "אנו מודים לך על השימוש במוצרים שלנו!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "מוצרים" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "אנו מודים לך על היותך כמשתמש של %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "כן" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "לא" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "מפתח הרישיון ריק." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "חידוש רישיון" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2452,6 +2452,7 @@ msgstr "" "specific as possible)." #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "בטל" @@ -2865,7 +2866,7 @@ msgstr "" "המידע." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "יששש" @@ -2884,14 +2885,14 @@ msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "אופס" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "היי" @@ -2955,31 +2956,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "מעולה" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "אממ" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "ניסיון" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "מזל טוב" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "לתשמות לבך" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "התחלת ניסיון חינם" diff --git a/languages/freemius-hu_HU.po b/languages/freemius-hu_HU.po index 3b7eef38f..44784653a 100644 --- a/languages/freemius-hu_HU.po +++ b/languages/freemius-hu_HU.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Peter Ambrus, 2018-2019,2021\n" "Language-Team: Hungarian (Hungary) " @@ -262,9 +262,9 @@ msgstr "Iratkozz fel, hogy a(z) %s még jobb lehessen!" msgid "The upgrade of %s was successfully completed." msgstr "A(z) %s frissítése sikeres volt." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Kiegészítő" @@ -367,7 +367,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "A próbaidőszakodat sikeresen aktiváltuk." @@ -389,7 +389,7 @@ msgstr "Kérlek írj nekünk a következő üzenettel:" msgid "An unknown error has occurred." msgstr "Ismeretlen hiba." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Előfizetés" @@ -416,7 +416,7 @@ msgid "Contact Us" msgstr "Kapcsolat" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Kiegészítők" @@ -459,12 +459,12 @@ msgid "" "Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Hiba érkezett a szervertől." -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -473,27 +473,27 @@ msgstr "" "vagy csomagot váltottál, akkor valószínű a hiba a mi oldalunkon van. " "Elnézést!" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "" -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Írj nekünk itt" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Az előfizetés sikeresen módosítva: %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "A licensz lejárt. A(z) %s ingyenes verziója továbbra is használható " "korlátlanul." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -501,7 +501,7 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -509,20 +509,20 @@ msgstr "" "A licensz kikapcsolásra került. Ha úgy gondolod, hogy ez tévedés volt, " "kérlek írj az ügyfélszolgálatra!" -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " "support." msgstr "" -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "" -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -530,136 +530,136 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Úgy tűnik, hogy a licensz nem aktiválható." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "A licensz sikeresen aktiválva." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Úgy tűnik, hogy a weboldalhoz nem tartozik aktív licensz." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Úgy tűnik a licensz kikapcsolása nem sikerült." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "A(z) %s licensz kikapcsolása sikerült." -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s" -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "Rendben" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Minden rendben!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Új" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." msgstr "" -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Nagyszerű" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -667,47 +667,47 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Köszönjük!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." msgstr "" -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "A neved sikeresen frissítettük." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Kérlek add meg a teljes neved!" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "A(z) %s sikeresen frissítve." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." @@ -716,45 +716,45 @@ msgstr "" "admin felületről az érzékeny információkat, mint például email cím, licensz " "kulcs, árak, számlázási adatok és számlák." -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "Kattints ide" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." msgstr "" -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Bankkártya megadása nem kötelező" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Bővebben" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -762,40 +762,40 @@ msgstr "Bővebben" msgid "Activate License" msgstr "Licensz aktiválása" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Licensz módosítása" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Feliratkozás" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Leiratkozás" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Töltsd fel és aktiváld a letöltött verziót" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Hogyan kell feltölteni és aktiválni?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -803,163 +803,163 @@ msgstr "" "A(z) %1$s fizetős verziója sikeresen telepítve. Kérlek aktiváld, hogy a(z) " "%2$s minden funkciója elérhető legyen. %3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "%s funkciók aktiválása" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Az előfizetés sikeresen frissítve." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Az előfizetés sikeresen aktiválva." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "A prémium verzió már aktív." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Fizetős funkciók megtekintése" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Termékek" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Igen" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és " "ajánlatokat." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Nem" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "A licensz kulcs üres." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Licensz megújítása" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Licensz vásárlása" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "új Béta verzió" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "új verzió" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Fontos frissítési információ:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Bővítmény telepítése: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2413,6 +2413,7 @@ msgid "" msgstr "" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Mégsem" @@ -2822,7 +2823,7 @@ msgid "" msgstr "" #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Juhuuu" @@ -2841,14 +2842,14 @@ msgstr "" #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Hoppá" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Üdv" @@ -2912,31 +2913,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Próbaidő" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Gratulálunk" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Figyelem" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Ingyenes próbaidőszak indítása" diff --git a/languages/freemius-it_IT.mo b/languages/freemius-it_IT.mo index a28862de3b1b23528982036ec0977404f41a8ba9..4348785a6429fc164577751811fde83546cd11d1 100644 GIT binary patch delta 10505 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 BVl)5% delta 10143 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 diff --git a/languages/freemius-it_IT.po b/languages/freemius-it_IT.po index a0ae6a4cb..275096f3e 100644 --- a/languages/freemius-it_IT.po +++ b/languages/freemius-it_IT.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the freemius package. # Translators: # Alessandro Pelly Benassi , 2016 -# Daniele Scasciafratte Mte90 , 2015-2019,2022 +# Daniele Scasciafratte Mte90 , 2015-2019,2022,2024 # Dario Curvino , 2018,2020 # Diego , 2023 # Tropicalista , 2019 @@ -13,9 +13,10 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" -"Last-Translator: Diego , 2023\n" +"Last-Translator: Daniele Scasciafratte Mte90 , " +"2015-2019,2022,2024\n" "Language-Team: Italian (Italy) " "(http://app.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -279,9 +280,9 @@ msgstr "Abilita \"%s\" per renderlo migliore!" msgid "The upgrade of %s was successfully completed." msgstr "L'aggiornamento di %s è stato completato con successo." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" @@ -400,7 +401,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "%s l'iscrizione è stata completata con successo." -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "La versione di prova è stata avviata correttamente." @@ -422,7 +423,7 @@ msgstr "Contattaci con il seguente messaggio:" msgid "An unknown error has occurred." msgstr "Un errore sconosciuto è avvenuto." -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Aggiornamento" @@ -449,7 +450,7 @@ msgid "Contact Us" msgstr "Contattaci" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Addon" @@ -497,12 +498,12 @@ msgstr "" "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la " "tua chiave pubblica, Secret Key & User ID e riprova." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Errore ricevuto dal server:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -510,7 +511,7 @@ msgstr "" "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o " "cambiato il piano, è probabile che ci sia un problema nei nostri sistemi." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -518,21 +519,21 @@ msgstr "" "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, " "il piano rimane %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Contattaci qui" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Il piano è stato cambiato con successo a %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s " "per sempre." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -542,7 +543,7 @@ msgstr "" "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare " "%3$s senza interruzioni." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -550,7 +551,7 @@ msgstr "" "La tua licenza è stata cancellata. Se credi sia un errore, per favore " "contatta il supporto." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -560,7 +561,7 @@ msgstr "" "funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare " "a ricevere gli aggiornamenti ed il supporto." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -568,7 +569,7 @@ msgstr "" "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte " "le funzionalità gratuite." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -578,46 +579,46 @@ msgstr "" "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad " "usare %3$s senza interruzioni." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "Mostra i dettagli dell'errore." -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Sembra che la licenza non possa essere attivata." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "La tua licenza è stata attivata correttamente." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Sembra che la disattivazione della licenza non sia riuscita." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "La tua licenza%s è stata disattivata con successo." -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -625,7 +626,7 @@ msgstr "" "Sembra che stai avendo dei problemi temporanei con la cancellazione della " "sottoscrizione. Prova nuovamente tra pochi minuti." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -633,29 +634,29 @@ msgstr "" "La tua sottoscrizione è stata cancellata con successo. La licenza del piano " "%sscadrà in %s." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Stai già usando %s in modalità prova." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Hai già utilizzato una prova gratuita in passato." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Nessuno dei piani di %ssupporta il periodo di prova." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" "Il piano %s non esiste, per questo motivo non è possibile iniziare il " "periodo di prova." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Il piano %s non supporta il periodo di prova." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -663,7 +664,7 @@ msgstr "" "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente " "che tu debba annullare :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -671,35 +672,35 @@ msgstr "" "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di " "prova. Riprova tra qualche minuto." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Sembra che tu abbia la versione più recente." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Sei fantastico!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "La versione %s é stata rilasciata." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Scarica %s." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "l'ultima versione %s é quì" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Nuovo" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -707,19 +708,19 @@ msgstr "" "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora " "arrivata, per favore controlla nella tua casella di posta indesiderata." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Sito accettato con successo." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Fantastico" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "Le informazioni diagnostiche non saranno più inviate da %s a %s." -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -732,11 +733,11 @@ msgstr "" "di determinare in quali lingue, e per quali regioni, il plugin necessita di " "traduzioni e miglioramenti." -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Grazie!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " @@ -746,7 +747,7 @@ msgstr "" "nelle prossime 4 ore. Se non puoi trovare l'email verifica la tua cartella " "dello spam." -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." @@ -754,7 +755,7 @@ msgstr "" "Un email di conferma è stata inviata a %s. Il proprietario dell'email deve " "confermare l'aggiornamento nelle prossime 4 ore." -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -762,24 +763,24 @@ msgstr "" "Grazie per aver confermato il cambiamento del proprietario. Un' email è " "stata appena inviata a %s per la conferma finale." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s è il nuovo proprietario dell'account." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Il tuo nome è stato aggiornato correttamente." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Per favore inserisci il tuo nome completo." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Hai aggiornato con successo il tuo %s." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." @@ -788,21 +789,21 @@ msgstr "" "sensibili come la tua email, licenza, prezzi e indirizzi dalla tua bacheca " "di WP." -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "Clicca qui" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "Pacchetto" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -810,15 +811,15 @@ msgstr "" "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una " "prova gratuita di %d giorni." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Nessuna carta di credito richiesta" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -826,11 +827,11 @@ msgstr "" "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi " "diventare un nostro ambasciatore e guadagnare denaro!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Scopri altro" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -838,40 +839,40 @@ msgstr "Scopri altro" msgid "Activate License" msgstr "Attiva licenza" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambia licenza" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Iscriviti" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Cancella iscrizione" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Segui i passi seguenti per completare l'aggiornamento" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Scarica l'ultima versione di %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Carica e attiva la versione scaricata" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Come faccio a caricare ed attivare?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -879,49 +880,49 @@ msgstr "" "La versione a pagamento di %1$sè già installata. Attiva questione versione " "per iniziare ad usare le funzionalità di %2$s.%3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Attiva le funzionalità di %s" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Il piano è stato aggiornato con successo." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "Il tuo piano è stato attivato con successo." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza." -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "" "L'installazione automatica funziona solo per gli utenti che hanno dato il " "consenso." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "ID modulo non valida." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Versione Premium dell'add-on già installata." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Versione Premium già attiva." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Non disponi di una licenza valida per accedere alla versione Premium." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -929,57 +930,57 @@ msgstr "" "Il plugin è un \"Serviceware\", quindi non dispone di una versione del " "codice Premium." -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Vedi funzionalità a pagamento" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Grazie per utilizzare i nostri prodotti!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%se i suoi addon" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Prodotti" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Grazie per utilizzare %se i suoi addon!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Grazie per utilizzare %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e " "offerte." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -987,7 +988,7 @@ msgstr "" "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti " "formativi e offerte." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " @@ -997,7 +998,7 @@ msgstr "" "adeguato i requisiti che fornisci per il consenso, confermando che accetti " "di lasciare i dati." -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -1005,48 +1006,48 @@ msgstr "" "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di " "funzionalità, contenuti formativi e offerte occasionali:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "La chiave licenza è vuota." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Rinnova licenza" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Compra la licenza" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "C'è un %sdi %s disponibile." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "nuova versione Beta" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "nuova versione" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Avviso Importante di aggiornamento:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Installazione plugin: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2564,6 +2565,7 @@ msgstr "" "possibile)" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annulla" @@ -2998,7 +3000,7 @@ msgstr "" "dati e puoi semplicemente %s la tua partecipazione." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Evvai" @@ -3017,14 +3019,14 @@ msgstr "%s non può funzionare senza il plugin." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Ops" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3039,17 +3041,17 @@ msgstr "Forte" #: includes/class-freemius.php:7062 msgctxt "Part of the message telling the user what they should receive via email." msgid "a license key" -msgstr "" +msgstr "una chiave di licenza" #: includes/class-freemius.php:7056 msgctxt "Part of the message telling the user what they should receive via email." msgid "the installation instructions" -msgstr "" +msgstr "le istruzioni di installazione" #: includes/class-freemius.php:7078 msgctxt "Part of an activation link message." msgid "Click here" -msgstr "" +msgstr "Clicca qui" #: includes/class-freemius.php:7085 msgctxt "" @@ -3088,31 +3090,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Sì" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Uhm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Prova gratuita" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Congratulazioni" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Attenzione" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Inizia il periodo di prova gratuito" diff --git a/languages/freemius-ja.po b/languages/freemius-ja.po index 45d47fed9..b72be8e2e 100644 --- a/languages/freemius-ja.po +++ b/languages/freemius-ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Tomohyco Tsunoda, 2018\n" "Language-Team: Japanese " @@ -262,9 +262,9 @@ msgstr "" msgid "The upgrade of %s was successfully completed." msgstr "%s のアップグレードが完了しました。" -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "アドオン" @@ -367,7 +367,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "トライアル版の利用を開始しました。" @@ -389,7 +389,7 @@ msgstr "以下のメッセージとともに私たちに連絡をください。 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "アップグレード" @@ -416,7 +416,7 @@ msgid "Contact Us" msgstr "連絡" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "アドオン" @@ -459,36 +459,36 @@ msgid "" "Public Key, Secret Key & User ID, and try again." msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。" -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "サーバーからエラーを受信しました。" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。" -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "こちらで私たちに連絡をとってください。" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "プランの %s への変更が成功しました。" -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。" -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -496,13 +496,13 @@ msgid "" "without interruptions." msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。" -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -511,13 +511,13 @@ msgstr "" "ライセンスは有効期限がきれました。%s " "の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。" -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。" -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -525,136 +525,136 @@ msgid "" "without interruptions." msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "ライセンスの有効化ができませんでした。" -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "ライセンスの有効化が成功しました。" -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "サイトは有効なライセンスを持っていないようです。" -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "ライセンスの無効化ができませんでした。" -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。" -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "すでに%sをトライアルモードで利用中です。" -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "以前すでに試用版を利用しました。" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "%sのプランにはトライアル期間はありません。" -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "%s プランは存在しないため、試用を開始できません。" -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "%s プランにはトライアル期間はありません。" -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "%s のフリートライアルはキャンセルされました。" -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "最新版を取得できました。" -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "すべて完璧です!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "バージョン %s をリリースしました。" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "%s をダウンロードしてください。" -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "最新の %s バージョンはこちらです。" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "新規" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。" -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "サイトのオプトインに成功しました。" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "すごい!" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -662,91 +662,91 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "ありがとうございます!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。" -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s は新しいオーナーです。" -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "名前のアップデートが成功しました。" -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "フルネームを入力してください。" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "%s のアップデートが成功しました。" -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。" -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "%s 日以内であればいつでもキャンセルできます。" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "クレジットカードは必要ありません。" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "詳細はこちら" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -754,200 +754,200 @@ msgstr "詳細はこちら" msgid "Activate License" msgstr "ライセンスを有効化" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "ライセンスを変更" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "オプトイン" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "オプトアウト" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "アップグレードを完了するには以下の手順を完了させてください。" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "最新の %s をダウンロード" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "ダウンロードしたバージョンをアップロードして有効化" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "アップロードと有効化の方法" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "プランのアップグレードが成功しました。" -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "自動インストールはオプトインしたユーザのみで動作します。" -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "モジュール ID が不正です" -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "プレミアムアドオンバージョンはすでにインストール済みです。" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "プレミアムバージョンはすでに有効になっています。" -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。" -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "有料の機能を表示する" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "プロダクトのご利用ありがとうございます!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%sとそのアドオン" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "プロダクト" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "%sとアドオンのご利用ありがとうございます!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "%sのご利用ありがとうございます!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "はい" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。" -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "いいえ" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "ライセンスキーが空です。" -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "ライセンスを更新" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "インストール中プラグイン: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "ファイルシステムに接続できません。視覚情報を確認してください。" -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2398,6 +2398,7 @@ msgid "" msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "キャンセル" @@ -2806,7 +2807,7 @@ msgid "" msgstr "見逃していたかもしれませんが、どんな情報も共有する必要はなく、オプトインを $s することができます。 " #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "ヤッホー" @@ -2825,14 +2826,14 @@ msgstr "%s は、プラグインが無いと実行することができません #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "おっと" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "ヘイ" @@ -2896,31 +2897,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "そうだ" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "ふむ" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "トライアル" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "おめでとう" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "警告" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "フリートライアルを開始" diff --git a/languages/freemius-nl_NL.po b/languages/freemius-nl_NL.po index ba65e69b2..b46dfa72c 100644 --- a/languages/freemius-nl_NL.po +++ b/languages/freemius-nl_NL.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Leo Fajardo , 2022\n" "Language-Team: Dutch (Netherlands) " @@ -269,9 +269,9 @@ msgstr "Opt-in om \"%s\" te verbeteren!" msgid "The upgrade of %s was successfully completed." msgstr "De upgrade van %s is succesvol voltooid." -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Uitbreiding" @@ -382,7 +382,7 @@ msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support." msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "U proefperiode is met succes gestart." @@ -404,7 +404,7 @@ msgstr "Neem a.u.b. contact met ons op met het volgende bericht:" msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Upgrade" @@ -431,7 +431,7 @@ msgid "Contact Us" msgstr "Contacteer Ons" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Uitbreidingen" @@ -477,12 +477,12 @@ msgstr "" "je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het " "nogmaals. " -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Foutmelding ontvangen van de server:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -491,7 +491,7 @@ msgstr "" "geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze " "kant - sorry." -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -499,21 +499,21 @@ msgstr "" "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft " "het plan %s." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Neem hier a.u.b. contact met ons op" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Je plan is succesvol veranderd naar %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven " "gebruiken." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -523,7 +523,7 @@ msgstr "" "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties " "te blijven gebruiken." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -531,7 +531,7 @@ msgstr "" "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan " "alsjeblieft contact op met support." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -541,7 +541,7 @@ msgstr "" "je zal je licentie moeten vernieuwen om weer updates en support te " "ontvangen." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." @@ -549,7 +549,7 @@ msgstr "" "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis " "features blijven gebruiken." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -559,46 +559,46 @@ msgstr "" "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder " "interrupties te blijven gebruiken. " -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Je licentie is succesvol geactiveerd." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "Oké" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -606,7 +606,7 @@ msgstr "" "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van " "je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." @@ -614,27 +614,27 @@ msgstr "" "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over " "%s aflopen." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Je draait de %s al in proefmodus." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "U heeft reeds een proefperiode gebruikt." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Geen van de %s plannen ondersteunt een proefperiode." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Plan %s ondersteunt geen proefperiode." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" @@ -642,7 +642,7 @@ msgstr "" "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt " "niets stop te zetten." -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -650,35 +650,35 @@ msgstr "" "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van " "uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Uw gratis %s proefperiode is succesvol opgezegd. " -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Het lijkt erop dat je de meest recente versie hebt." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Alles is goed!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "Versie %s is vrijgegeven." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "A.u.b. %s downloaden." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "de meest recente %s versie hier" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Nieuw" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -686,19 +686,19 @@ msgstr "" "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. " "hebt ontvangen, kijk dan alsjeblieft in je spambox." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "Site opt-in geslaagd. " -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Geweldig" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -706,24 +706,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "Bedankt!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -731,38 +731,38 @@ msgstr "" "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een " "e-mail verstuurd naar %s voor de definitieve goedkeuring. " -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s is de nieuwe eigenaar van het account." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Je naam is succesvol bijgewerkt." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Geef alsjeblieft je volledige naam." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Je hebt je %s succesvol geüpdatet." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -770,7 +770,7 @@ msgstr "" "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van " "een externe server." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -778,15 +778,15 @@ msgstr "" "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende " "een%d-daagse gratis proefperiode." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Geen creditcard nodig" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -794,11 +794,11 @@ msgstr "" "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s " "goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Lees meer" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -806,86 +806,86 @@ msgstr "Lees meer" msgid "Activate License" msgstr "Activeer Licentie" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Verander Licentie" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download de meeste recente %s versie" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Upload en activeer de gedownloade versie" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Hoe te uploaden en activeren?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "Activeer %s features." -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Je plan is succesvol geüpgraded." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren." -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "Automatische installatie werkt alleen voor opted-in gebruikers." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Ongeldige Module-ID" -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Premium add-on versie is reeds geïnstalleerd." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Premium versie reeds actief." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "Je hebt geen geldige licentie voor de premium versie." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -893,15 +893,15 @@ msgstr "" "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie " "bevat. " -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Bekijk betaalde kenmerken" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "Hartelijk bedankt voor het gebruiken van onze producten!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -909,23 +909,23 @@ msgstr "" "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze " "te blijven verbeteren." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%sen bijbehorende uitbreidingen" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "Producten" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "Hartelijk bedankt voor het gebruik van %s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -933,19 +933,19 @@ msgstr "" "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te " "blijven verbeteren." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "Nee" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -953,14 +953,14 @@ msgstr "" "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of " "aanbiedingen." -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -969,50 +969,50 @@ msgstr "" "beveiliging & feature updates, educatieve content en zo nu en dan " "aanbiedingen:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "Licentiesleutel is leeg." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Vernieuw licentie" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koop licentie" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "Er is een %s van %s beschikbaar." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "nieuwe versie" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "Belangrijke Upgrade Mededeling:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Installeren van plug-in: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je " "inloggegevens." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2520,6 +2520,7 @@ msgstr "" "%s te gaan promoten." #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuleer" @@ -2954,7 +2955,7 @@ msgstr "" "de opt-in %s." #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Hoera" @@ -2973,14 +2974,14 @@ msgstr "%s werkt niet zonder de plug-in." #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oeps" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hoi" @@ -3044,31 +3045,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Toppie" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Proefperiode" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Gefeliciteerd" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Aankondiging" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start gratis proefperidoe" diff --git a/languages/freemius-ru_RU.po b/languages/freemius-ru_RU.po index 7a5c557e9..6a69cb535 100644 --- a/languages/freemius-ru_RU.po +++ b/languages/freemius-ru_RU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Leo Fajardo , 2021\n" "Language-Team: Russian (Russia) " @@ -270,9 +270,9 @@ msgstr "" msgid "The upgrade of %s was successfully completed." msgstr "Обновление %s было успешно завершено" -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Функционал плагина " @@ -383,7 +383,7 @@ msgstr "" msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "Ваш тестовый период успешно начат" @@ -405,7 +405,7 @@ msgstr "Пожалуйста, напишите нам сообщение сле msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "Сделать апгрейд " @@ -432,7 +432,7 @@ msgid "Contact Us" msgstr "Контакты " #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Настройки плагина " @@ -477,12 +477,12 @@ msgstr "" "Вероятно один из параметров является неверным. Обновите свой Public Key, " "Secret Key&User ID и повторите попытку." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "Ошибка сервера" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -491,7 +491,7 @@ msgstr "" "обновляли или меняли свой тарифный план, то вероятно существуют какие-то " "трудности связанные с Вашим программным обеспечением. Извините. " -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." @@ -499,21 +499,21 @@ msgstr "" "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой " "тарифный план не меняется. " -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "Пожалуйста, напишите нам сообщение здесь. " -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "Ваш тарифный план был успешно изменен на %s." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться " "бесплатной версией %s на бессрочной основе." -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -521,7 +521,7 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -529,7 +529,7 @@ msgstr "" "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, " "пожалуйста свяжитесь с нашей службой поддержки. " -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -539,13 +539,13 @@ msgstr "" "всеми возможностями %s продлив Вашу лицензию. Вы также будете получать " "доступ к обновлениям и поддержке. " -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "" -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -553,86 +553,86 @@ msgid "" "without interruptions." msgstr "" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "Вероятно возникли трудности с активацией лицензии. " -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "Ваша лицензия была успешно активирована. " -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. " -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "Вероятно деактивация лицензии не состоялась. " -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K." -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "Вы уже пользуетесь тестовой версией %s " -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "Вы уже использовали Ваш тестовый период" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "Тарифные планы %s не предусматривают тестовый период. " -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" "Тарифного плана %s не существует, поэтому Вы не можете начать тестовый " "период. " -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "Тарифный план %s не предусматривает тестового периода. " -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "Возможно, Ваш тестовый период уже закончился. " -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -640,35 +640,35 @@ msgstr "" "К сожалению у нас возникли трудности с отменой Вашего тестового периода. " "Пожалуйста, повторите попытку через несколько минут." -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "Ваш бесплатный тестовый период был успешно отменен. " -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "Вероятно, Вы пользуетесь последней версией" -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "Все прошло хорошо!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "Релиз версии %s состоялся. " -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "Пожалуйста, скачайте %s" -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "Последняя версия %s здесь" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "Новое " -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -676,19 +676,19 @@ msgstr "" "Письмо подтверждение было только что отправлено на %s. Если Вы не получите " "его через 5 минут, пожалуйста, проверьте папку спам." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "Отлично!" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -696,24 +696,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -721,38 +721,38 @@ msgstr "" "Спасибо, что подтвердили изменение прав использования. Вам отправлено " "письмо на %s для окончательного подтверждения. " -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%я является новым владельцем аккаунта" -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "Ваше имя было успешно обновлено" -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "Пожалуйста, введите Ваше полное имя" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Вы успешно обновили Ваш %s" -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." @@ -760,7 +760,7 @@ msgstr "" "Сообщаем, что информация о дополнительных настройках %s предоставляется со " "стороннего сервера. " -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -768,15 +768,15 @@ msgstr "" "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум " "возможностями на протяжении %d - дневного тестового периода. " -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. " -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "Не требуются данные платежной карты" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -784,11 +784,11 @@ msgstr "" "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам " "нравится %s, Вы можете стать нашим представителем и зарабатывать!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "Узнать больше" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -796,86 +796,86 @@ msgstr "Узнать больше" msgid "Activate License" msgstr "Активировать лицензию" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Изменить лицензию " -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Присоединиться" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "Отказаться от использования" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Скачайте последнюю версию %s" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "Загрузите и активируйте скачанную версию" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "Как загрузить и активировать?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "Ваш тарифный план был успешно изменен. " -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "Авто установка работает только для зарегистрированных пользователей." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "Неверный ID модуля" -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "Премиум версия плагина была установлена" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "Премиум версия уже активирована" -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией" -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." @@ -883,117 +883,117 @@ msgstr "" "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию " "кода. " -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "Просмотр платных возможностей" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "" -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "Установка плагина: %s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои " "данные. " -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2476,6 +2476,7 @@ msgstr "" "планируете продвигать %s." #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Отмена " @@ -2896,7 +2897,7 @@ msgstr "" "данными и можете просто %s кнопку \"Присоединиться\". " #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Ура!" @@ -2915,14 +2916,14 @@ msgstr "%s не может работать без плагина. " #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Упс!" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Привет!" @@ -2986,31 +2987,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Все верно!" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Хм..." -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "Тестовый период" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "Поздравления! " -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Внимание!" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Начни тестовый период!" diff --git a/languages/freemius-ta.po b/languages/freemius-ta.po index d2265c4bc..b76074200 100644 --- a/languages/freemius-ta.po +++ b/languages/freemius-ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: Sankar Srinivasan , 2019\n" "Language-Team: Tamil " @@ -262,9 +262,9 @@ msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு ச msgid "The upgrade of %s was successfully completed." msgstr "%sன் மேம்படுத்தல் முடிந்தது" -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "ஆட் ஆன்" @@ -371,7 +371,7 @@ msgstr "%s பாதுகாப்பு மேம்படுத்தல் msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது" @@ -393,7 +393,7 @@ msgstr "பின்வரும் செய்தியோடு எங்க msgid "An unknown error has occurred." msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "மேம்படுத்து" @@ -420,7 +420,7 @@ msgid "Contact Us" msgstr "தொடர்பு கொள்ளுங்கள்" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "ஆட்-ஆன்ஸ்" @@ -465,12 +465,12 @@ msgstr "" "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public " "Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்." -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது." -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." @@ -478,27 +478,27 @@ msgstr "" "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை " "மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். " -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது." -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "எங்களை இங்கு அணுகலாம்" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது." -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் " "தொடரலாம். " -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -508,7 +508,7 @@ msgstr "" "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை " "மேம்படுத்துங்கள்." -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." @@ -516,7 +516,7 @@ msgstr "" "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை " "அணுகவும்." -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " @@ -525,13 +525,13 @@ msgstr "" "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், " "தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்." -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்." -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -541,46 +541,46 @@ msgstr "" "உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s " "%2$sஇவற்றை மேம்படுத்துங்கள்." -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது." -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது." -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது." -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது." -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்." -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." @@ -588,39 +588,39 @@ msgstr "" "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் " "முயற்சிக்கவும்." -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது." -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்." -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை." -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது." -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது." -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." @@ -629,35 +629,35 @@ msgstr "" "உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் " "முயற்சிக்கவும்" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது." -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது." -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "நல்லது... மகிழ்ச்சி" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "%s பதிப்பு வெளியாகிவிட்டது." -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "%sஐ பதிவிறக்கலாம்." -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "%sன் அண்மைய பதிப்பு இதோ" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "புதியது" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." @@ -665,19 +665,19 @@ msgstr "" "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 " "நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்." -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "தளம் தெரிவு செய்யப்பட்டது." -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "அடி தூள்" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -685,24 +685,24 @@ msgid "" "plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "நன்றி!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." @@ -710,44 +710,44 @@ msgstr "" "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு " "இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது." -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "கணக்கின் புதிய உரிமையாளர் %s." -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "உங்கள் பெயர் ஏற்றப்பட்டது." -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "உங்கள் முழுப் பெயரைத் தரவும்." -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "உங்கள் %s மேம்படுத்தப்பட்டது." -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்." -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." @@ -755,15 +755,15 @@ msgstr "" "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் " "விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்." -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "கடன் அட்டை தேவையில்லை" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" @@ -771,11 +771,11 @@ msgstr "" "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் " "விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "மேலும் அறிய" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -783,40 +783,40 @@ msgstr "மேலும் அறிய" msgid "Activate License" msgstr "உரிமம் செயல்படுத்த" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "உரிமம் மாற்ற" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "தெரிவு செய்" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "தெரிவை அகற்று" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" @@ -824,61 +824,61 @@ msgstr "" "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த " "அதை செயல்படுத்தவும். %3$s" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "%s வசதிகளை செயல்படுத்த" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது." -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது." -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்." -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "module ID தவறானது." -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது." -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது." -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை." -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்." -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." @@ -886,23 +886,23 @@ msgstr "" "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் " "உருவாக்கத்தை மேம்படுத்த உதவும்." -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%sம் அதன் ஆட்-ஆன்களும்" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "தயாரிப்புகள்" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "%s பயன்படுத்துவதற்கு நன்றி!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." @@ -910,21 +910,21 @@ msgstr "" "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ " "மேம்படுத்த உதவும்." -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "ஆம்" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு " "அனுப்பவும்." -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "இல்லை" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." @@ -932,7 +932,7 @@ msgstr "" "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு " "அனுப்பவும். %s செய்க, %s தேவையில்லை" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " @@ -941,7 +941,7 @@ msgstr "" "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான " "உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" @@ -949,48 +949,48 @@ msgstr "" "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு " "நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்." -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "License key காலியாக உள்ளது." -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "உரிமத்தை புதுப்பியுங்கள்" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "உரிமம் வாங்க" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "%sன் %s கிடைக்கிறது." -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "புதிய பீட்டா பதிப்பு" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "புதிய பதிப்பு" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "%s: பிளக்இன் நிறுவப்படுகிறது" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்." -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2489,6 +2489,7 @@ msgstr "" "குறிப்பிட்டுச் சொல்லவும்)" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "ரத்து" @@ -2917,7 +2918,7 @@ msgstr "" "%sதெரிந்தெடுப்பு மட்டுமே" #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Yee-haw" @@ -2936,14 +2937,14 @@ msgstr "ப்ளக்இன் இல்லாமல் %s இயங்கா #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "அரே ஓ சம்போ!" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "Hey" @@ -3007,31 +3008,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "Right on" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "வெள்ளோட்டம்" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "வாழ்த்துக்கள்" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Heads up" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்" diff --git a/languages/freemius-zh_CN.po b/languages/freemius-zh_CN.po index 2beea9ac9..35b98609f 100644 --- a/languages/freemius-zh_CN.po +++ b/languages/freemius-zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: 2024-03-31 12:04+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "PO-Revision-Date: 2015-10-01 21:38+0000\n" "Last-Translator: linn Yu <977869645@qq.com>, 2023\n" "Language-Team: Chinese (China) " @@ -259,9 +259,9 @@ msgstr "选择加入以使“%s”更好!" msgid "The upgrade of %s was successfully completed." msgstr "%s的升级已成功完成。" -#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, -#: includes/class-fs-plugin-updater.php1317, -#: includes/class-fs-plugin-updater.php1310, +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1097, +#: includes/class-fs-plugin-updater.php1319, +#: includes/class-fs-plugin-updater.php1312, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "附加组件" @@ -366,7 +366,7 @@ msgstr "%s以访问版本%s的安全和功能更新以及支持。" msgid "%s opt-in was successfully completed." msgstr "%s选择加入已成功完成。" -#: includes/class-freemius.php17694, includes/class-freemius.php:21615 +#: includes/class-freemius.php17694, includes/class-freemius.php:21631 msgid "Your trial has been successfully started." msgstr "您的试用已成功开始。" @@ -388,7 +388,7 @@ msgstr "请通过以下信息与我们联系:" msgid "An unknown error has occurred." msgstr "发生未知错误。" -#: includes/class-freemius.php18980, includes/class-freemius.php:24399 +#: includes/class-freemius.php18980, includes/class-freemius.php:24415 msgid "Upgrade" msgstr "升级" @@ -415,7 +415,7 @@ msgid "Contact Us" msgstr "联系我们" #: includes/class-freemius.php19127, includes/class-freemius.php19129, -#: includes/class-freemius.php24413, templates/account.php130, +#: includes/class-freemius.php24429, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "附加组件" @@ -458,36 +458,36 @@ msgid "" "Public Key, Secret Key & User ID, and try again." msgstr "似乎身份验证参数中的一个不正确。请更新您的公钥、密钥和用户ID,然后重试。" -#: includes/class-freemius.php21288, includes/class-freemius.php21685, -#: includes/class-freemius.php21786, includes/class-freemius.php:21873 +#: includes/class-freemius.php21288, includes/class-freemius.php21701, +#: includes/class-freemius.php21802, includes/class-freemius.php:21889 msgid "Error received from the server:" msgstr "从服务器收到错误:" -#: includes/class-freemius.php:21532 +#: includes/class-freemius.php:21542 msgid "" "It looks like you are still on the %s plan. If you did upgrade or change " "your plan, it's probably an issue on our side - sorry." msgstr "看来你还在%s计划中。如果你确实升级或更改了计划,这可能是我们这边的问题-对不起。" -#: includes/class-freemius.php:21538 +#: includes/class-freemius.php:21548 msgid "" "I have upgraded my account but when I try to Sync the License, the plan " "remains %s." msgstr "我已经升级了我的帐户,但是当我尝试同步许可证时,计划仍然是%s。" -#: includes/class-freemius.php21542, includes/class-freemius.php:21594 +#: includes/class-freemius.php21552, includes/class-freemius.php:21610 msgid "Please contact us here" msgstr "请在这里联系我们" -#: includes/class-freemius.php:21564 +#: includes/class-freemius.php:21580 msgid "Your plan was successfully changed to %s." msgstr "您的计划已成功更改为%s。" -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21596 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "您的许可证过期了。您仍然可以继续永远使用免费的%s。" -#: includes/class-freemius.php:21582 +#: includes/class-freemius.php:21598 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -495,26 +495,26 @@ msgid "" "without interruptions." msgstr "您的许可证过期了。%1$s立即升级%2$s以继续使用%3$s而不中断。" -#: includes/class-freemius.php:21590 +#: includes/class-freemius.php:21606 msgid "" "Your license has been cancelled. If you think it's a mistake, please " "contact support." msgstr "你的许可证被取消了。如果您认为这是一个错误,请联系支持人员。" -#: includes/class-freemius.php:21603 +#: includes/class-freemius.php:21619 msgid "" "Your license has expired. You can still continue using all the %s features, " "but you'll need to renew your license to continue getting updates and " "support." msgstr "您的许可证过期了。您仍然可以继续使用所有%s功能,但您需要续订许可证才能继续获取更新和支持。" -#: includes/class-freemius.php:21629 +#: includes/class-freemius.php:21645 msgid "" "Your free trial has expired. You can still continue using all our free " "features." msgstr "您的免费试用已过期。您仍然可以继续使用我们所有的免费功能。" -#: includes/class-freemius.php:21631 +#: includes/class-freemius.php:21647 #. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; #. %4$s: 'plugin', 'theme', or 'add-on'. msgid "" @@ -522,136 +522,136 @@ msgid "" "without interruptions." msgstr "您的免费试用已过期。%1$s立即升级%2$s以继续使用%3$s而不中断。" -#: includes/class-freemius.php:21677 +#: includes/class-freemius.php:21693 msgid "" "Your server is blocking the access to Freemius' API, which is crucial for " "%1$s synchronization. Please contact your host to whitelist the following " "domains:%2$s" msgstr "您的服务器阻止访问 Freemius 的 API,这对 %1$s 同步至关重要。请联系您的主机以将以下域列入白名单:%2$s" -#: includes/class-freemius.php:21679 +#: includes/class-freemius.php:21695 msgid "Show error details" msgstr "显示错误详细信息" -#: includes/class-freemius.php:21782 +#: includes/class-freemius.php:21798 msgid "It looks like the license could not be activated." msgstr "似乎无法激活许可证。" -#: includes/class-freemius.php:21824 +#: includes/class-freemius.php:21840 msgid "Your license was successfully activated." msgstr "您的许可证已成功激活。" -#: includes/class-freemius.php:21848 +#: includes/class-freemius.php:21864 msgid "It looks like your site currently doesn't have an active license." msgstr "您的站点当前似乎没有活动许可证。" -#: includes/class-freemius.php:21872 +#: includes/class-freemius.php:21888 msgid "It looks like the license deactivation failed." msgstr "许可证停用似乎失败。" -#: includes/class-freemius.php:21901 +#: includes/class-freemius.php:21917 msgid "Your %s license was successfully deactivated." msgstr "您的%s许可证已成功停用。" -#: includes/class-freemius.php:21902 +#: includes/class-freemius.php:21918 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "您的许可证已成功停用,您回到了%s计划。" -#: includes/class-freemius.php:21905 +#: includes/class-freemius.php:21921 msgid "O.K" msgstr "好" -#: includes/class-freemius.php:21958 +#: includes/class-freemius.php:21974 msgid "" "Seems like we are having some temporary issue with your subscription " "cancellation. Please try again in few minutes." msgstr "似乎关于您的订阅取消发生了一些暂时的问题。请过几分钟再试一次。" -#: includes/class-freemius.php:21967 +#: includes/class-freemius.php:21983 msgid "" "Your subscription was successfully cancelled. Your %s plan license will " "expire in %s." msgstr "您的订阅已成功取消。您的%s计划许可证将在%s后过期。" -#: includes/class-freemius.php:22009 +#: includes/class-freemius.php:22025 msgid "You are already running the %s in a trial mode." msgstr "您已经在试用模式下运行%s。" -#: includes/class-freemius.php:22020 +#: includes/class-freemius.php:22036 msgid "You already utilized a trial before." msgstr "您以前已经试用过。" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22072 msgid "None of the %s's plans supports a trial period." msgstr "%s的任何计划都不支持试用期。" -#: includes/class-freemius.php:22034 +#: includes/class-freemius.php:22050 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "计划%s不存在,因此无法启动试用。" -#: includes/class-freemius.php:22045 +#: includes/class-freemius.php:22061 msgid "Plan %s does not support a trial period." msgstr "计划%s不支持试用期。" -#: includes/class-freemius.php:22105 +#: includes/class-freemius.php:22121 msgid "" "It looks like you are not in trial mode anymore so there's nothing to " "cancel :)" msgstr "看起来您不再处于试用模式,所以没有什么需要取消的:)" -#: includes/class-freemius.php:22141 +#: includes/class-freemius.php:22157 msgid "" "Seems like we are having some temporary issue with your trial cancellation. " "Please try again in few minutes." msgstr "看来关于您的试用取消发生了一些暂时的问题。请过几分钟再试一次。" -#: includes/class-freemius.php:22160 +#: includes/class-freemius.php:22176 msgid "Your %s free trial was successfully cancelled." msgstr "您的%s免费试用已成功取消。" -#: includes/class-freemius.php:22504 +#: includes/class-freemius.php:22520 msgid "Seems like you got the latest release." msgstr "好像你得到了最新的版本。" -#: includes/class-freemius.php:22505 +#: includes/class-freemius.php:22521 msgid "You are all good!" msgstr "你们都很好!" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Version %s was released." msgstr "版本%s已发布。" -#: includes/class-freemius.php:22487 +#: includes/class-freemius.php:22503 msgid "Please download %s." msgstr "请下载%s。" -#: includes/class-freemius.php:22494 +#: includes/class-freemius.php:22510 msgid "the latest %s version here" msgstr "这儿有最新的%s版本" -#: includes/class-freemius.php:22499 +#: includes/class-freemius.php:22515 msgid "New" msgstr "新的" -#: includes/class-freemius.php:22908 +#: includes/class-freemius.php:22924 msgid "" "Verification mail was just sent to %s. If you can't find it after 5 min, " "please check your spam box." msgstr "验证邮件刚刚发送到%s。如果5分钟后找不到,请检查垃圾邮件框。" -#: includes/class-freemius.php:23048 +#: includes/class-freemius.php:23064 msgid "Site successfully opted in." msgstr "站点已成功选择加入。" -#: includes/class-freemius.php23049, includes/class-freemius.php:24109 +#: includes/class-freemius.php23065, includes/class-freemius.php:24125 msgid "Awesome" msgstr "真棒" -#: includes/class-freemius.php:23075 +#: includes/class-freemius.php:23091 msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "诊断数据将不再从 %s 发送到 %s。" -#: includes/class-freemius.php:23065 +#: includes/class-freemius.php:23081 msgid "" "Sharing diagnostic data with %s helps to provide functionality that's more " "relevant to your website, avoid WordPress or PHP version incompatibilities " @@ -661,91 +661,91 @@ msgstr "" "与 %s 共享诊断数据有助于提供与您的网站更相关的功能,避免可能破坏您的网站的 WordPress 或 PHP " "版本不兼容,并识别插件应该翻译和定制的语言和地区。" -#: includes/class-freemius.php:23066 +#: includes/class-freemius.php:23082 msgid "Thank you!" msgstr "谢谢您!" -#: includes/class-freemius.php:23235 +#: includes/class-freemius.php:23251 msgid "" "A confirmation email was just sent to %s. You must confirm the update " "within the next 4 hours. If you cannot find the email, please check your " "spam folder." msgstr "刚刚向 %s 发送了一封确认电子邮件。您必须在接下来的 4 小时内确认更新。如果您找不到该电子邮件,请检查您的垃圾邮件文件夹。" -#: includes/class-freemius.php:23233 +#: includes/class-freemius.php:23249 msgid "" "A confirmation email was just sent to %s. The email owner must confirm the " "update within the next 4 hours." msgstr "刚刚向 %s 发送了一封确认电子邮件。电子邮件所有者必须在接下来的 4 小时内确认更新。" -#: includes/class-freemius.php:23247 +#: includes/class-freemius.php:23263 msgid "" "Thanks for confirming the ownership change. An email was just sent to %s " "for final approval." msgstr "感谢您确认所有权变更。刚刚向%s发送了一封电子邮件以获得最终批准。" -#: includes/class-freemius.php:23253 +#: includes/class-freemius.php:23269 msgid "%s is the new owner of the account." msgstr "%s是帐户的新主人。" -#: includes/class-freemius.php:23277 +#: includes/class-freemius.php:23293 msgid "Your name was successfully updated." msgstr "您的姓名已成功更新。" -#: includes/class-freemius.php:23272 +#: includes/class-freemius.php:23288 msgid "Please provide your full name." msgstr "请提供您的全名。" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23358 #. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "您已成功更新%s。" -#: includes/class-freemius.php:23406 +#: includes/class-freemius.php:23422 msgid "" "Is this your client's site? %s if you wish to hide sensitive info like your " "email, license key, prices, billing address & invoices from the WP Admin." msgstr "这是您客户的网站吗?如果您希望从WP管理员那里隐藏敏感信息,例如电子邮件,许可证密钥,价格,账单地址和发票,则为%s。" -#: includes/class-freemius.php:23409 +#: includes/class-freemius.php:23425 msgid "Click here" msgstr "点击这里" -#: includes/class-freemius.php:23446 +#: includes/class-freemius.php:23462 msgid "Bundle" msgstr "批量" -#: includes/class-freemius.php:23519 +#: includes/class-freemius.php:23535 msgid "" "Just letting you know that the add-ons information of %s is being pulled " "from an external server." msgstr "只是让您知道%s的加载项信息是从外部服务器提取的。" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgid "" "How do you like %s so far? Test all our %s premium features with a %d-day " "free trial." msgstr "到目前为止,您觉得%s怎么样?使用%d天免费试用来测试我们所有的%s高级功能。" -#: includes/class-freemius.php:24157 +#: includes/class-freemius.php:24173 msgid "No commitment for %s days - cancel anytime!" msgstr "%s天没有承诺-随时取消!" -#: includes/class-freemius.php:24158 +#: includes/class-freemius.php:24174 msgid "No credit card required" msgstr "不需要信用卡" -#: includes/class-freemius.php:24242 +#: includes/class-freemius.php:24258 msgid "" "Hey there, did you know that %s has an affiliate program? If you like the " "%s you can become our ambassador and earn some cash!" msgstr "嘿,你知道%s有会员计划吗?如果您喜欢%s,您可以成为我们的大使并赚取一些现金!" -#: includes/class-freemius.php:24251 +#: includes/class-freemius.php:24267 msgid "Learn more" msgstr "了解更多" -#: includes/class-freemius.php24437, templates/account.php569, +#: includes/class-freemius.php24453, templates/account.php569, #: templates/account.php721, templates/connect.php212, #: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, @@ -753,200 +753,200 @@ msgstr "了解更多" msgid "Activate License" msgstr "激活许可证" -#: includes/class-freemius.php24438, templates/account.php663, +#: includes/class-freemius.php24454, templates/account.php663, #: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "更改许可证" -#: includes/class-freemius.php24553, includes/class-freemius.php24547, +#: includes/class-freemius.php24569, includes/class-freemius.php24563, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "选择加入" -#: includes/class-freemius.php24545, templates/account/partials/site.php:170 +#: includes/class-freemius.php24561, templates/account/partials/site.php:170 msgid "Opt Out" msgstr "选择退出" -#: includes/class-freemius.php:24811 +#: includes/class-freemius.php:24827 msgid "Please follow these steps to complete the upgrade" msgstr "请按照以下步骤完成升级" -#: includes/class-freemius.php:24815 +#: includes/class-freemius.php:24831 #. translators: %s: Plan title msgid "Download the latest %s version" msgstr "下载最新的%s版本" -#: includes/class-freemius.php:24819 +#: includes/class-freemius.php:24835 msgid "Upload and activate the downloaded version" msgstr "上传并激活下载的版本" -#: includes/class-freemius.php:24821 +#: includes/class-freemius.php:24837 msgid "How to upload and activate?" msgstr "如何上传和激活?" -#: includes/class-freemius.php:24788 +#: includes/class-freemius.php:24804 msgid "" " The paid version of %1$s is already installed. Please activate it to start " "benefiting the %2$s features. %3$s" msgstr "已安装%1$s的付费版本。请激活它以开始使用%2$s功能。%3$s公司" -#: includes/class-freemius.php:24798 +#: includes/class-freemius.php:24814 msgid "Activate %s features" msgstr "激活%s功能" -#: includes/class-freemius.php:24856 +#: includes/class-freemius.php:24872 msgid "Your plan was successfully upgraded." msgstr "您的计划已成功升级。" -#: includes/class-freemius.php:24857 +#: includes/class-freemius.php:24873 msgid "Your plan was successfully activated." msgstr "您的计划已成功激活。" -#: includes/class-freemius.php:24987 +#: includes/class-freemius.php:25003 msgid "" "%sClick here%s to choose the sites where you'd like to activate the license " "on." msgstr "%s单击此处%s可选择要激活许可证的站点。" -#: includes/class-freemius.php:25156 +#: includes/class-freemius.php:25172 msgid "Auto installation only works for opted-in users." msgstr "自动安装仅适用于已选择的用户。" -#: includes/class-freemius.php25166, includes/class-freemius.php25199, -#: includes/class-fs-plugin-updater.php1289, -#: includes/class-fs-plugin-updater.php:1303 +#: includes/class-freemius.php25182, includes/class-freemius.php25215, +#: includes/class-fs-plugin-updater.php1291, +#: includes/class-fs-plugin-updater.php:1305 msgid "Invalid module ID." msgstr "模块ID无效。" -#: includes/class-freemius.php25207, includes/class-fs-plugin-updater.php:1324 +#: includes/class-freemius.php25223, includes/class-fs-plugin-updater.php:1326 msgid "Premium add-on version already installed." msgstr "已安装高级加载项版本。" -#: includes/class-freemius.php25175, includes/class-fs-plugin-updater.php:1325 +#: includes/class-freemius.php25191, includes/class-fs-plugin-updater.php:1327 msgid "Premium version already active." msgstr "高级版本已激活。" -#: includes/class-freemius.php:25182 +#: includes/class-freemius.php:25198 msgid "You do not have a valid license to access the premium version." msgstr "您没有访问高级版本的有效许可证。" -#: includes/class-freemius.php:25189 +#: includes/class-freemius.php:25205 msgid "" "Plugin is a \"Serviceware\" which means it does not have a premium code " "version." msgstr "插件是一个“服务软件”,这意味着它没有高级代码版本。" -#: includes/class-freemius.php:25567 +#: includes/class-freemius.php:25583 msgid "View paid features" msgstr "查看付费功能" -#: includes/class-freemius.php:25882 +#: includes/class-freemius.php:25898 msgid "Thank you so much for using our products!" msgstr "非常感谢您使用我们的产品!" -#: includes/class-freemius.php:25883 +#: includes/class-freemius.php:25899 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving them." msgstr "您已经选择了我们的使用情况跟踪,这有助于我们不断改进它们。" -#: includes/class-freemius.php:25902 +#: includes/class-freemius.php:25918 msgid "%s and its add-ons" msgstr "%s及其附加组件" -#: includes/class-freemius.php:25911 +#: includes/class-freemius.php:25927 msgid "Products" msgstr "产品" -#: includes/class-freemius.php:25871 +#: includes/class-freemius.php:25887 msgid "Thank you so much for using %s and its add-ons!" msgstr "非常感谢您使用%s及其附加组件!" -#: includes/class-freemius.php:25872 +#: includes/class-freemius.php:25888 msgid "Thank you so much for using %s!" msgstr "非常感谢您使用%s!" -#: includes/class-freemius.php:25878 +#: includes/class-freemius.php:25894 msgid "" "You've already opted-in to our usage-tracking, which helps us keep " "improving the %s." msgstr "您已经选择加入我们的使用情况跟踪,这有助于我们不断改进%s。" -#: includes/class-freemius.php25918, templates/connect.php:313 +#: includes/class-freemius.php25934, templates/connect.php:313 msgid "Yes" msgstr "是" -#: includes/class-freemius.php25919, templates/connect.php:314 +#: includes/class-freemius.php25935, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "请给我发送安全和功能更新,教育内容和优惠。" -#: includes/class-freemius.php25920, templates/connect.php:319 +#: includes/class-freemius.php25936, templates/connect.php:319 msgid "No" msgstr "不" -#: includes/class-freemius.php25922, templates/connect.php:321 +#: includes/class-freemius.php25938, templates/connect.php:321 msgid "" "do %sNOT%s send me security & feature updates, educational content and " "offers." msgstr "不%s要%s向我发送安全和功能更新、教育内容和服务。" -#: includes/class-freemius.php:25932 +#: includes/class-freemius.php:25948 msgid "" "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " "requirements it is required that you provide your explicit consent, again, " "confirming that you are onboard :-)" msgstr "由于新的%sEU通用数据保护条例(GDPR)%s的合规性要求,要求您再次明确表示同意,确认您已经加入:-)" -#: includes/class-freemius.php25934, templates/connect.php:328 +#: includes/class-freemius.php25950, templates/connect.php:328 msgid "" "Please let us know if you'd like us to contact you for security & feature " "updates, educational content, and occasional offers:" msgstr "如果您希望我们与您联系以获取安全和功能更新、教育内容和偶尔的优惠,请告知我们:" -#: includes/class-freemius.php:26224 +#: includes/class-freemius.php:26240 msgid "License key is empty." msgstr "许可证密钥为空。" -#: includes/class-fs-plugin-updater.php210, +#: includes/class-fs-plugin-updater.php212, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "更新许可证" -#: includes/class-fs-plugin-updater.php215, +#: includes/class-fs-plugin-updater.php217, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "购买许可证" -#: includes/class-fs-plugin-updater.php368, -#: includes/class-fs-plugin-updater.php:335 +#: includes/class-fs-plugin-updater.php370, +#: includes/class-fs-plugin-updater.php:337 msgid "There is a %s of %s available." msgstr "有一个%s的%s可用。" -#: includes/class-fs-plugin-updater.php373, -#: includes/class-fs-plugin-updater.php:337 +#: includes/class-fs-plugin-updater.php375, +#: includes/class-fs-plugin-updater.php:339 msgid "new Beta version" msgstr "新测试版" -#: includes/class-fs-plugin-updater.php374, -#: includes/class-fs-plugin-updater.php:338 +#: includes/class-fs-plugin-updater.php376, +#: includes/class-fs-plugin-updater.php:340 msgid "new version" msgstr "新版本" -#: includes/class-fs-plugin-updater.php:397 +#: includes/class-fs-plugin-updater.php:399 msgid "Important Upgrade Notice:" msgstr "重要升级通知:" -#: includes/class-fs-plugin-updater.php:1354 +#: includes/class-fs-plugin-updater.php:1356 msgid "Installing plugin: %s" msgstr "正在安装插件:%s" -#: includes/class-fs-plugin-updater.php:1395 +#: includes/class-fs-plugin-updater.php:1397 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "无法连接到文件系统。请确认您的凭据。" -#: includes/class-fs-plugin-updater.php:1577 +#: includes/class-fs-plugin-updater.php:1579 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -2397,6 +2397,7 @@ msgid "" msgstr "请提供有关您打算如何推广%s的详细信息(请尽可能具体)。" #: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/forms/subscription-cancellation.php142, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "取消" @@ -2804,7 +2805,7 @@ msgid "" msgstr "您可能错过了,但您不必共享任何数据,只需选择%s即可。" #: includes/class-freemius.php4842, includes/class-freemius.php21174, -#: includes/class-freemius.php:24843 +#: includes/class-freemius.php:24859 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "哟哈" @@ -2823,14 +2824,14 @@ msgstr "没有插件,%s无法运行。" #: includes/class-freemius.php13828, includes/class-freemius.php14575, #: includes/class-freemius.php18330, includes/class-freemius.php18443, #: includes/class-freemius.php18620, includes/class-freemius.php20905, -#: includes/class-freemius.php22004, includes/class-freemius.php23020, -#: includes/class-freemius.php23150, includes/class-freemius.php23293, +#: includes/class-freemius.php22020, includes/class-freemius.php23036, +#: includes/class-freemius.php23166, includes/class-freemius.php23309, #: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "哎呀" -#: includes/class-freemius.php:24149 +#: includes/class-freemius.php:24165 msgctxt "exclamation" msgid "Hey" msgstr "嘿" @@ -2894,31 +2895,31 @@ msgctxt "a positive response" msgid "Right on" msgstr "就在" -#: includes/class-freemius.php21519, includes/class-freemius.php21791, -#: includes/class-freemius.php21844, includes/class-freemius.php:21951 +#: includes/class-freemius.php21529, includes/class-freemius.php21807, +#: includes/class-freemius.php21860, includes/class-freemius.php:21967 msgctxt "" "something somebody says when they are thinking about what you have just " "said." msgid "Hmm" msgstr "嗯" -#: includes/class-freemius.php21533, templates/account.php132, +#: includes/class-freemius.php21543, templates/account.php132, #: templates/add-ons.php250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "试用" -#: includes/class-freemius.php:23255 +#: includes/class-freemius.php:23271 msgctxt "as congratulations" msgid "Congrats" msgstr "恭喜" -#: includes/class-freemius.php:23520 +#: includes/class-freemius.php:23536 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "抬头" -#: includes/class-freemius.php24165, templates/forms/trial-start.php:53 +#: includes/class-freemius.php24181, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "开始免费试用" diff --git a/languages/freemius.pot b/languages/freemius.pot index dd1f1a99c..ff30edad5 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" -"POT-Creation-Date: 2024-04-21 11:55+0000\n" +"POT-Creation-Date: 2024-04-22 10:16+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" diff --git a/start.php b/start.php index 5f2c79e07..dab0c20a5 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.0.2'; + $this_sdk_version = '2.7.1'; #region SDK Selection Logic -------------------------------------------------------------------- From 122854574eb10497d01e1b98f2c5ee09fbceb086 Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 24 Apr 2024 10:18:40 +0200 Subject: [PATCH 26/42] Hotfix --- includes/class-freemius.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index eb3941aaf..20b178bec 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -21349,7 +21349,7 @@ private function _sync_plugin_license( * associated with that ID is not included in the user's licenses collection. * Save previous value to manage remote license renewals. */ - $was_license_expired_before_sync = $this->_license->is_expired(); + $was_license_expired_before_sync = is_object( $this->_license ) && $this->_license->is_expired(); $this->_sync_licenses( $site->license_id, ( $is_context_single_site ? From 50108d86751f233661cfa9c427d05f44e0124940 Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 24 Apr 2024 10:23:02 +0200 Subject: [PATCH 27/42] [version] Version 2.7.2 --- start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.php b/start.php index dab0c20a5..dbe49e984 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.1'; + $this_sdk_version = '2.7.2'; #region SDK Selection Logic -------------------------------------------------------------------- From 689fd5670cf52b68276d9728019a08e5809c1159 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Thu, 9 May 2024 11:55:08 +0530 Subject: [PATCH 28/42] [deactivation] [ui] [fix] Fix UI glitch in the deactivation feedback form. --- assets/scss/admin/_deactivation-feedback.scss | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/assets/scss/admin/_deactivation-feedback.scss b/assets/scss/admin/_deactivation-feedback.scss index 642bfb274..e86067866 100644 --- a/assets/scss/admin/_deactivation-feedback.scss +++ b/assets/scss/admin/_deactivation-feedback.scss @@ -46,14 +46,16 @@ } } - .fs-modal-panel { - margin-top: 0 !important; - - h3 { - margin-top: 0; - line-height: 1.5em; - } - } + .fs-modal-panel { + margin-top: 0 !important; + + h3 { + margin-top: 10px; + margin-bottom: 0; + font-size: 16px; + line-height: 1.5em; + } + } } #the-list .deactivate > .fs-slug { From 679bc3bcd1cf0ed28b13379627eb832d67bfd0d2 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 30 Jun 2024 18:56:27 +0530 Subject: [PATCH 29/42] [cleanup] [version] Delete old commented out code and prepare v2.7.3. --- start.php | 2 +- templates/connect.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/start.php b/start.php index dbe49e984..15ecad246 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.2'; + $this_sdk_version = '2.7.3'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/connect.php b/templates/connect.php index 227b716ce..4701a78c8 100755 --- a/templates/connect.php +++ b/templates/connect.php @@ -161,7 +161,6 @@ class="wrapis_enable_anonymous() fs_require_once_template( 'plugin-icon.php', $vars ); ?> -
From c23bd6b1a5f85d887a9dadd97ceb14e96f1d0b33 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Sun, 30 Jun 2024 19:00:38 +0530 Subject: [PATCH 30/42] [compile] Version 2.7.3 --- assets/css/admin/dialog-boxes.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/admin/dialog-boxes.css b/assets/css/admin/dialog-boxes.css index c16515ac7..ff6dc13d6 100644 --- a/assets/css/admin/dialog-boxes.css +++ b/assets/css/admin/dialog-boxes.css @@ -1 +1 @@ -.fs-modal{background:rgba(0,0,0,.6);display:none;height:100%;overflow:auto;position:fixed;top:0;width:100%;z-index:100000}@media(min-width:961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:transparent;left:50%;margin-left:-298px;padding-bottom:30px;position:absolute;top:-100%;width:596px;z-index:100001}@media(max-width:650px){.fs-modal .fs-modal-dialog{box-sizing:border-box;margin-left:-50%;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active,.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{background:#fefefe;border:0;padding:20px}.fs-modal .fs-modal-header{background:#fbfbfb;border-bottom:1px solid #eee;margin-bottom:-10px;padding:15px 20px;position:relative}.fs-modal .fs-modal-header h4{color:#cacaca;font-size:1.2em;font-weight:700;letter-spacing:.6px;margin:0;padding:0;text-shadow:1px 1px 1px #fff;text-transform:uppercase;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{border-radius:20px;color:#bbb;cursor:pointer;padding:3px;position:absolute;right:10px;top:12px;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{background:#aaa;color:#fff}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-size:20px;font-weight:700;margin-top:0}.fs-modal .fs-modal-footer{border-top:1px solid #eee;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{display:none;margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{left:20px;right:auto}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .internal-message,.fs-modal.fs-modal-deactivation-feedback .reason-input{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea,.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;display:none;padding:7px}@media(max-width:650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0!important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{line-height:1.5em;margin-top:0}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:700;margin-bottom:0;padding:0 25px}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;position:relative;top:5px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-license-options-container table,.fs-license-options-container table .fs-available-license-key,.fs-license-options-container table select,.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{float:left;margin-right:5px;position:relative;top:6px}.fs-license-options-container table .fs-other-license-key-container div{display:block;height:30px;overflow:hidden;position:relative;top:2px;width:auto}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{border-collapse:collapse;width:100%}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{padding-left:3px;padding-right:3px;width:1%}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key,.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width:650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-left:0;margin-right:7px}a.show-license-resend-modal{display:inline-block;margin-top:4px}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#0074a3;height:20px;position:absolute;top:0;transform:.3;width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;-o-animation-delay:.6s;-ms-animation-delay:.6s;-webkit-animation-delay:.6s;-moz-animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;-o-animation-delay:.75s;-ms-animation-delay:.75s;-webkit-animation-delay:.75s;-moz-animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;-o-animation-delay:.9s;-ms-animation-delay:.9s;-webkit-animation-delay:.9s;-moz-animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons,.fs-modal-auto-install #request-filesystem-credentials-form h2{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;max-width:100%;padding:10px 10px 5px;width:300px}.fs-modal-auto-install #request-filesystem-credentials-form fieldset,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form>div{display:block;margin:0 auto;max-width:100%;width:300px}.button-primary.warn{background:#f56a48;border-color:#ec6544 #d2593c #d2593c;box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{background:#e76444!important;border-color:#d85e40!important;color:#f5b3a1!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important} \ No newline at end of file +.fs-modal{background:rgba(0,0,0,.6);display:none;height:100%;overflow:auto;position:fixed;top:0;width:100%;z-index:100000}@media(min-width:961px){.fs-modal{padding-left:160px}.rtl .fs-modal{padding-left:0;padding-right:160px}}.fs-modal .dashicons{vertical-align:middle}.fs-modal .fs-modal-dialog{background:transparent;left:50%;margin-left:-298px;padding-bottom:30px;position:absolute;top:-100%;width:596px;z-index:100001}@media(max-width:650px){.fs-modal .fs-modal-dialog{box-sizing:border-box;margin-left:-50%;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active,.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{background:#fefefe;border:0;padding:20px}.fs-modal .fs-modal-header{background:#fbfbfb;border-bottom:1px solid #eee;margin-bottom:-10px;padding:15px 20px;position:relative}.fs-modal .fs-modal-header h4{color:#cacaca;font-size:1.2em;font-weight:700;letter-spacing:.6px;margin:0;padding:0;text-shadow:1px 1px 1px #fff;text-transform:uppercase;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{border-radius:20px;color:#bbb;cursor:pointer;padding:3px;position:absolute;right:10px;top:12px;transition:all .2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{background:#aaa;color:#fff}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-size:20px;font-weight:700;margin-top:0}.fs-modal .fs-modal-footer{border-top:1px solid #eee;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:last-of-type{margin:0}.fs-modal .fs-modal-panel>.notice.inline{display:none;margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{left:20px;right:auto}.rtl .fs-modal .fs-modal-footer{text-align:left}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .internal-message,.fs-modal.fs-modal-deactivation-feedback .reason-input{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea,.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;display:none;padding:7px}@media(max-width:650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:left;line-height:30px}.rtl .fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label,.rtl .fs-modal.fs-modal-deactivation-feedback .feedback-from-snooze-label{float:right}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0!important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{font-size:16px;line-height:1.5em;margin-bottom:0;margin-top:10px}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:700;margin-bottom:0;padding:0 25px}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;position:relative;top:5px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-license-options-container table,.fs-license-options-container table .fs-available-license-key,.fs-license-options-container table select,.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{float:left;margin-right:5px;position:relative;top:6px}.fs-license-options-container table .fs-other-license-key-container div{display:block;height:30px;overflow:hidden;position:relative;top:2px;width:auto}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-user-change .fs-modal-body input#fs_other_email_address{width:100%}.fs-user-change-options-container table{border-collapse:collapse;width:100%}.fs-user-change-options-container table tr{display:block;margin-bottom:2px}.fs-user-change-options-container table .fs-email-address-container td{display:inline-block}.fs-user-change-options-container table .fs-email-address-container input[type=radio]{margin-bottom:0;margin-top:0}.fs-user-change-options-container table .fs-other-email-address-container{width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div{display:table;width:100%}.fs-user-change-options-container table .fs-other-email-address-container>div label,.fs-user-change-options-container table .fs-other-email-address-container>div>div{display:table-cell}.fs-user-change-options-container table .fs-other-email-address-container>div label{padding-left:3px;padding-right:3px;width:1%}.fs-user-change-options-container table .fs-other-email-address-container>div>div{width:auto}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key,.fs-user-change-options-container table .fs-other-email-address-container>div>div input{width:100%}.fs-multisite-options-container{border:1px solid #ccc;margin-top:20px;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:700}.fs-multisite-options-container.fs-apply-on-all-sites{border:0;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media(max-width:650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-left:0;margin-right:7px}a.show-license-resend-modal{display:inline-block;margin-top:4px}.fs-modal.fs-modal-email-address-update .fs-modal-body input[type=text]{width:100%}.fs-modal.fs-modal-email-address-update p{margin-bottom:0}.fs-modal.fs-modal-email-address-update ul{margin:1em .5em}.fs-modal.fs-modal-email-address-update ul li label span{float:left;margin-top:0}.fs-modal.fs-modal-email-address-update ul li label span:last-child{display:block;float:none;margin-left:20px}.fs-ajax-loader{height:20px;margin:auto;position:relative;width:170px}.fs-ajax-loader .fs-ajax-loader-bar{animation-direction:normal;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-name:bounce_ajaxLoader;background-color:#0074a3;height:20px;position:absolute;top:0;transform:.3;width:20px}.fs-ajax-loader .fs-ajax-loader-bar-1{animation-delay:.6s;-o-animation-delay:.6s;-ms-animation-delay:.6s;-webkit-animation-delay:.6s;-moz-animation-delay:.6s;left:0}.fs-ajax-loader .fs-ajax-loader-bar-2{animation-delay:.75s;-o-animation-delay:.75s;-ms-animation-delay:.75s;-webkit-animation-delay:.75s;-moz-animation-delay:.75s;left:19px}.fs-ajax-loader .fs-ajax-loader-bar-3{animation-delay:.9s;-o-animation-delay:.9s;-ms-animation-delay:.9s;-webkit-animation-delay:.9s;-moz-animation-delay:.9s;left:38px}.fs-ajax-loader .fs-ajax-loader-bar-4{animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s;left:57px}.fs-ajax-loader .fs-ajax-loader-bar-5{animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s;left:76px}.fs-ajax-loader .fs-ajax-loader-bar-6{animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s;left:95px}.fs-ajax-loader .fs-ajax-loader-bar-7{animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s;left:114px}.fs-ajax-loader .fs-ajax-loader-bar-8{animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s;left:133px}@keyframes bounce_ajaxLoader{0%{background-color:#0074a3;transform:scale(1)}to{background-color:#fff;transform:scale(.3)}}.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons,.fs-modal-auto-install #request-filesystem-credentials-form h2{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;max-width:100%;padding:10px 10px 5px;width:300px}.fs-modal-auto-install #request-filesystem-credentials-form fieldset,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form>div{display:block;margin:0 auto;max-width:100%;width:300px}.button-primary.warn{background:#f56a48;border-color:#ec6544 #d2593c #d2593c;box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{background:#e76444!important;border-color:#d85e40!important;color:#f5b3a1!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important} \ No newline at end of file From a441b571f03be70ecfa969f10523c39194fc75fb Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Wed, 22 May 2024 17:40:30 +0800 Subject: [PATCH 31/42] [opt-in] Fixed an issue with the opt-in moderation and API connectivity test logic. --- includes/class-freemius.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 20b178bec..347bc44d6 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -4174,13 +4174,17 @@ function has_api_connectivity( $flush_if_no_connectivity = false ) { ! empty( $this->_storage->connectivity_test ) && isset( $this->_storage->connectivity_test['is_active'] ) ) { - $is_active = $this->_storage->connectivity_test['is_active']; + $is_connected = isset( $this->_storage->connectivity_test['is_connected'] ) ? + $this->_storage->connectivity_test['is_connected'] : + null; + $is_active = ( $this->_storage->connectivity_test['is_active'] || is_object( $this->_site ) ); } else { - $is_active = $this->should_turn_fs_on( $this->apply_filters( 'is_plugin_update', $this->is_plugin_update() ) ); - - $this->store_connectivity_info( (object) array( 'is_active' => $is_active ), null ); + $is_connected = null; + $is_active = $this->should_turn_fs_on( $this->apply_filters( 'is_plugin_update', $this->is_plugin_update() ) ); } + $this->store_connectivity_info( (object) array( 'is_active' => $is_active ), $is_connected ); + if ( $is_active ) { $this->_is_on = true; } @@ -5484,7 +5488,12 @@ private function parse_settings( &$plugin_info ) { 'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ), 'bundle_id' => $this->get_option( $plugin_info, 'bundle_id', null ), 'bundle_public_key' => $this->get_option( $plugin_info, 'bundle_public_key', null ), - 'opt_in_moderation' => $this->get_option( $plugin_info, 'opt_in', null ), + 'opt_in_moderation' => $this->get_option( + $plugin_info, + 'opt_in', + // For backward compatibility, we support both parameter names: opt_in and opt_in_moderation. + $this->get_option( $plugin_info, 'opt_in_moderation', null ) + ), ) ); if ( $plugin->is_updated() ) { From 9d01cf52a3f3afcfc4f085eb4c737670ca080ba6 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Tue, 18 Jun 2024 00:03:34 +0800 Subject: [PATCH 32/42] [localhost-url] Updated the supported localhost site URLs (added support for 10Web Hosting). --- includes/entities/class-fs-site.php | 4 +++- start.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/entities/class-fs-site.php b/includes/entities/class-fs-site.php index f9012d056..04c820ea9 100755 --- a/includes/entities/class-fs-site.php +++ b/includes/entities/class-fs-site.php @@ -201,7 +201,9 @@ static function is_localhost_by_address( $url ) { // Vendasta ( fs_ends_with( $subdomain, '.websitepro-staging.com' ) || fs_ends_with( $subdomain, '.websitepro.hosting' ) ) || // InstaWP - fs_ends_with( $subdomain, '.instawp.xyz' ) + fs_ends_with( $subdomain, '.instawp.xyz' ) || + // 10Web Hosting + ( fs_ends_with( $subdomain, '-dev.10web.site' ) || fs_ends_with( $subdomain, '-dev.10web.cloud' ) ) ); } diff --git a/start.php b/start.php index 15ecad246..ae9b7d783 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3'; + $this_sdk_version = '2.7.3.1'; #region SDK Selection Logic -------------------------------------------------------------------- From 59cf95d255c75da9ccff90a55418972f83468cc5 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Thu, 18 Jul 2024 22:43:06 +0800 Subject: [PATCH 33/42] [plugin-information-dialog] [updates] Updated the update mechanism to align with the changes in WordPress plugin update AJAX requests. --- includes/class-fs-plugin-updater.php | 43 +++++++++++++++++++++++++--- start.php | 2 +- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/includes/class-fs-plugin-updater.php b/includes/class-fs-plugin-updater.php index c54c190b8..867ea078e 100755 --- a/includes/class-fs-plugin-updater.php +++ b/includes/class-fs-plugin-updater.php @@ -106,6 +106,8 @@ private function filters() { if ( ! $this->_fs->has_any_active_valid_license() ) { add_action( 'admin_head', array( &$this, 'catch_plugin_information_dialog_contents' ) ); + } else { + add_action( 'admin_footer', array( &$this, '_add_fs_allow_updater_and_dialog_request_param' ) ); } if ( ! WP_FS__IS_PRODUCTION_MODE ) { @@ -129,15 +131,48 @@ private function filters() { } } + /** + * @author Leo Fajardo (@leorw) + * @since 2.7.4 + */ + function _add_fs_allow_updater_and_dialog_request_param() { + if ( ! $this->is_plugin_information_dialog_for_plugin() ) { + return; + } + ?> + + _fs->get_slug() === fs_request_get_raw( 'plugin', false ) + ); + } + /** * @author Leo Fajardo (@leorw) * @since 2.1.4 */ function catch_plugin_information_dialog_contents() { - if ( - 'plugin-information' !== fs_request_get( 'tab', false ) || - $this->_fs->get_slug() !== fs_request_get_raw( 'plugin', false ) - ) { + if ( ! $this->is_plugin_information_dialog_for_plugin() ) { return; } diff --git a/start.php b/start.php index ae9b7d783..a18aa348a 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3.1'; + $this_sdk_version = '2.7.3.2'; #region SDK Selection Logic -------------------------------------------------------------------- From 729f854706a323fe26618fc6e4157f32e4a47d54 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Thu, 18 Jul 2024 00:25:37 +0800 Subject: [PATCH 34/42] [plugin-information-dialog] Try to fetch data from WP only when the plugin is actually WP.org-compliant. --- includes/class-fs-plugin-updater.php | 14 ++++++++++++-- start.php | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/includes/class-fs-plugin-updater.php b/includes/class-fs-plugin-updater.php index 867ea078e..dc233da4d 100755 --- a/includes/class-fs-plugin-updater.php +++ b/includes/class-fs-plugin-updater.php @@ -651,7 +651,7 @@ function pre_set_site_transient_update_plugins_filter( $transient_data ) { $slug = $this->_fs->get_slug(); - if ( $this->_fs->is_org_repo_compliant() && $this->_fs->is_freemium() ) { + if ( $this->can_fetch_data_from_wp_org() ) { if ( ! isset( $this->_translation_updates ) ) { $this->_translation_updates = array(); @@ -908,6 +908,16 @@ static function _fetch_plugin_info_from_repository( $action, $args ) { return $res; } + /** + * Returns true if the product can fetch data from WordPress.org. + * + * @author Leo Fajardo (@leorw) + * @since 2.7.4 + */ + private function can_fetch_data_from_wp_org() { + return ( $this->_fs->is_org_repo_compliant() && $this->_fs->is_freemium() ); + } + /** * Fetches module translation updates from wordpress.org. * @@ -1092,7 +1102,7 @@ function plugins_api_filter( $data, $action = '', $args = null ) { } $plugin_in_repo = false; - if ( ! $is_addon ) { + if ( ! $is_addon && $this->can_fetch_data_from_wp_org() ) { // Try to fetch info from .org repository. $data = self::_fetch_plugin_info_from_repository( $action, $args ); diff --git a/start.php b/start.php index a18aa348a..896a815fc 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3.2'; + $this_sdk_version = '2.7.3.3'; #region SDK Selection Logic -------------------------------------------------------------------- From a7927c4122f963302058361885d6377eb56f5275 Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Wed, 26 Jun 2024 19:20:43 +0800 Subject: [PATCH 35/42] [plan-entity] Added missing FS_Plugin_Plan property declarations to prevent triggering warnings when the plugin information dialog is opened. --- includes/entities/class-fs-plugin-plan.php | 8 ++++++++ start.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/includes/entities/class-fs-plugin-plan.php b/includes/entities/class-fs-plugin-plan.php index 5bc6bc2d4..e89e2bce2 100755 --- a/includes/entities/class-fs-plugin-plan.php +++ b/includes/entities/class-fs-plugin-plan.php @@ -92,6 +92,14 @@ class FS_Plugin_Plan extends FS_Entity { * @var bool Is hidden plan. */ public $is_hidden; + /** + * @var FS_Pricing[] + */ + public $pricing; + /** + * @var object[] + */ + public $features; #endregion Properties diff --git a/start.php b/start.php index 896a815fc..88bafd489 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3.3'; + $this_sdk_version = '2.7.3.4'; #region SDK Selection Logic -------------------------------------------------------------------- From 557b0f93d82e939a52b71054f9b8505df1a0f27d Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Wed, 10 Apr 2024 16:49:42 +0300 Subject: [PATCH 36/42] [cleanup] Remove unused mixins from the codebase. The autoprefixer in the build process makes some of the rules in the mixins obsolute. --- assets/scss/_mixins.scss | 204 ++------------------------- assets/scss/admin/_ajax-loader.scss | 12 +- assets/scss/admin/_badge.scss | 6 +- assets/scss/admin/_modal-common.scss | 6 +- assets/scss/admin/_switch.scss | 10 +- assets/scss/admin/_tooltip.scss | 8 +- assets/scss/admin/add-ons.scss | 20 +-- assets/scss/admin/affiliation.scss | 4 +- assets/scss/admin/common.scss | 10 +- assets/scss/admin/connect.scss | 10 +- assets/scss/customizer.scss | 8 +- start.php | 2 +- 12 files changed, 56 insertions(+), 244 deletions(-) diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss index 1fcea8633..2f18fe849 100644 --- a/assets/scss/_mixins.scss +++ b/assets/scss/_mixins.scss @@ -31,52 +31,6 @@ $useIEFilters: 0; // might be 0 or 1. disabled by default. // ---- /LEGACY IE SUPPORT USING FILTERS ---- - -@mixin background-size ($value) { - -webkit-background-size: $value; - background-size: $value; -} - -@mixin border-image ($path, $offsets, $repeats) { - -moz-border-image: $path $offsets $repeats; - -o-border-image: $path $offsets $repeats; - -webkit-border-image: $path $offsets $repeats; - border-image: $path $offsets $repeats; -} - -@mixin border-radius ($values...) { - -moz-border-radius: $values; - -webkit-border-radius: $values; - border-radius: $values; - /*-moz-background-clip: padding; - -webkit-background-clip: padding-box; - background-clip: padding-box;*/ -} - -@mixin box-shadow ($values...) { - -moz-box-shadow: $values; - -webkit-box-shadow: $values; - box-shadow: $values; -} - -//@mixin box-shadow ($x, $y, $offset, $hex, $ie: $useIEFilters, $inset: null, $spread:null) { -// -moz-box-shadow: $x $y $offset $spread $hex $inset; -// -webkit-box-shadow: $x $y $offset $spread $hex $inset; -// box-shadow: $x $y $offset $spread $hex $inset; -// -// @if $ie == 1 { -// $iecolor: '#' + red($hex) + green($hex) + blue($hex); -// filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'); -// -ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}')); -// } -//} - -@mixin box-sizing($value) { - -moz-box-sizing: $value; - -webkit-box-sizing: $value; - box-sizing: $value; -} - // requires sass 3.2 @mixin keyframes($name){ @-moz-keyframes #{$name} { @content; } @@ -86,64 +40,7 @@ $useIEFilters: 0; @keyframes #{$name} { @content; } } -@mixin linear-gradient($from, $to, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $to; } - - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $from),color-stop(1, $to)); - background-image: -webkit-linear-gradient(top, $from, $to); - background-image: -moz-linear-gradient(top, $from, $to); - background-image: -ms-linear-gradient(top, $from, $to); - background-image: -o-linear-gradient(top, $from, $to); - background-image: linear-gradient(top, bottom, $from, $to); - - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}'); - } -} - -@mixin horizontal-gradient($startColor: #555, $endColor: #333, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $endColor; } - - background-color: $endColor; - background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+ - background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+ - background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+ - background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10 - background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10 - background-repeat: repeat-x; - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=1); - } -} - -@mixin radial-gradient($from, $to, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $to; } - - background: -moz-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, $from), color-stop(100%, $to)); - background: -webkit-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -o-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -ms-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: radial-gradient(center, circle cover, $from 0%, $to 100%); - background-color: $from; - - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}', GradientType=1); /* IE6-9 fallback on horizontal gradient */ - } -} - -@mixin perspective($perspective) { - -moz-perspective: $perspective; - -ms-perspective: $perspective; - -webkit-perspective: $perspective; - perspective: $perspective; - -moz-transform-style: preserve-3d; - -ms-transform-style: preserve-3d; - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; -} - -@mixin transform ($transforms) { +@mixin transform($transforms) { -moz-transform: $transforms; -o-transform: $transforms; -ms-transform: $transforms; @@ -151,104 +48,19 @@ $useIEFilters: 0; transform: $transforms; } - @mixin matrix ($a, $b, $c, $d, $e, $f) { - -moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px); - -o-transform: matrix($a, $b, $c, $d, $e, $f); - -ms-transform: matrix($a, $b, $c, $d, $e, $f); - -webkit-transform: matrix($a, $b, $c, $d, $e, $f); - transform: matrix($a, $b, $c, $d, $e, $f); - } - - @mixin rotate ($deg) { - @include transform(rotate(#{$deg}deg)); - } - - @mixin scale ($size) { - @include transform(scale(#{$size})); - } - - @mixin translate ($x, $y) { - @include transform(translate($x, $y)); - } - -@mixin transition ($value...) { - -moz-transition: $value; - -o-transition: $value; - -ms-transition: $value; - -webkit-transition: $value; - transition: $value; -} - -@mixin animation($str) { - -webkit-animation: #{$str}; - -moz-animation: #{$str}; - -ms-animation: #{$str}; - -o-animation: #{$str}; - animation: #{$str}; +@mixin rotate($deg) { + @include transform(rotate(#{$deg}deg)); } -@mixin animation-name($str) { - -webkit-animation-name: #{$str}; - -moz-animation-name: #{$str}; - -ms-animation-name: #{$str}; - -o-animation-name: #{$str}; - animation-name: #{$str}; +@mixin scale($size) { + @include transform(scale(#{$size})); } -@mixin animation-duration($str) { - -webkit-animation-duration: #{$str}; - -moz-animation-duration: #{$str}; - -ms-animation-duration: #{$str}; - -o-animation-duration: #{$str}; - animation-duration: #{$str}; -} - -@mixin animation-direction($str) { - -webkit-animation-direction: #{$str}; - -moz-animation-direction: #{$str}; - -ms-animation-direction: #{$str}; - -o-animation-direction: #{$str}; - animation-direction: #{$str}; -} - -@mixin animation-delay($str) { - animation-delay:#{$str}; - -o-animation-delay:#{$str}; - -ms-animation-delay:#{$str}; - -webkit-animation-delay:#{$str}; - -moz-animation-delay:#{$str}; -} - -@mixin animation-iteration-count($str) { - animation-iteration-count:#{$str}; - -o-animation-iteration-count:#{$str}; - -ms-animation-iteration-count:#{$str}; - -webkit-animation-iteration-count:#{$str}; - -moz-animation-iteration-count:#{$str}; -} - -@mixin animation-timing-function($str) { - -webkit-animation-timing-function: #{$str}; - -moz-animation-timing-function: #{$str}; - -ms-animation-timing-function: #{$str}; - -o-animation-timing-function: #{$str}; - animation-timing-function: #{$str}; +@mixin translate($x, $y) { + @include transform(translate($x, $y)); } // ==== /CSS3 SASS MIXINS ==== - -@mixin opacity($opacity) { - opacity: $opacity; - $opacity-ie: $opacity * 100; - filter: alpha(opacity=$opacity-ie); //IE8 -} - -@mixin size($width, $height: $width) -{ - width: $width; - height: $height; -} - @mixin clearfix { &:after { @@ -267,4 +79,4 @@ $useIEFilters: 0; } &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+ &::-webkit-input-placeholder { color: $color; } // Safari and Chrome -} \ No newline at end of file +} diff --git a/assets/scss/admin/_ajax-loader.scss b/assets/scss/admin/_ajax-loader.scss index f748beba6..61fc62bc8 100644 --- a/assets/scss/admin/_ajax-loader.scss +++ b/assets/scss/admin/_ajax-loader.scss @@ -16,10 +16,10 @@ $size: 20; background-color: $color; width: #{$size}px; height: #{$size}px; - @include animation-name(bounce_ajaxLoader); - @include animation-duration(1.5s); - @include animation-iteration-count(infinite); - @include animation-direction(normal); + animation-name: bounce_ajaxLoader; + animation-duration: 1.5s; + animation-iteration-count: infinite; + animation-direction: normal; @include transform(.3); } @@ -28,7 +28,7 @@ $size: 20; .fs-ajax-loader-bar-#{$i + 1} { left: #{$i*($size - 1)}px; - @include animation-delay(#{0.6 + $i*0.15}s); + animation-delay: #{0.6 + $i*0.15}s; } } } @@ -46,4 +46,4 @@ $size: 20; @include transform(scale(.3)); background-color: $bkg-color; } -} \ No newline at end of file +} diff --git a/assets/scss/admin/_badge.scss b/assets/scss/admin/_badge.scss index 60119d1ea..2f6f64e8f 100644 --- a/assets/scss/admin/_badge.scss +++ b/assets/scss/admin/_badge.scss @@ -7,8 +7,8 @@ color: white; text-transform: uppercase; padding: 5px 10px; - @include border-radius(3px 0 0 3px); + border-radius: 3px 0 0 3px; font-weight: bold; border-right: 0; - @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3)); -} \ No newline at end of file + box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .3); +} diff --git a/assets/scss/admin/_modal-common.scss b/assets/scss/admin/_modal-common.scss index 3561cf3c7..c43d02108 100644 --- a/assets/scss/admin/_modal-common.scss +++ b/assets/scss/admin/_modal-common.scss @@ -124,9 +124,9 @@ top: 12px; cursor: pointer; color: #bbb; - @include border-radius(20px); + border-radius: 20px; padding: 3px; - @include transition(all 0.2s ease-in-out); + transition: all 0.2s ease-in-out; &:hover { color: #fff; @@ -209,4 +209,4 @@ body.has-fs-modal { overflow: hidden; -} \ No newline at end of file +} diff --git a/assets/scss/admin/_switch.scss b/assets/scss/admin/_switch.scss index f21757d57..b217e9fc3 100644 --- a/assets/scss/admin/_switch.scss +++ b/assets/scss/admin/_switch.scss @@ -40,7 +40,7 @@ $switch-on-color: $wp-button-primary-background-color; background-image: linear-gradient(to bottom, #ececec, #fff); box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5); z-index: 999; - @include transition(0.40s cubic-bezier(0.54, 1.6, 0.5, 1)); + transition: 0.40s cubic-bezier(0.54, 1.6, 0.5, 1); } &.fs-off .fs-toggle @@ -57,14 +57,14 @@ $switch-on-color: $wp-button-primary-background-color; { top: math.div($switch-size, 3); padding: 4px ($switch-size + 1px); - @include border-radius($switch-size); + border-radius: $switch-size; .fs-toggle { top: 0; width: $switch-size; height: $switch-size; - @include border-radius($switch-size); + border-radius: $switch-size; } &.fs-off .fs-toggle @@ -94,7 +94,7 @@ $switch-on-color: $wp-button-primary-background-color; top: 0; width: $switch-small-size; height: $switch-small-size; - @include border-radius($switch-small-size); + border-radius: $switch-small-size; } &.fs-on .fs-toggle @@ -103,4 +103,4 @@ $switch-on-color: $wp-button-primary-background-color; } } } -} \ No newline at end of file +} diff --git a/assets/scss/admin/_tooltip.scss b/assets/scss/admin/_tooltip.scss index 7eca0bd13..c1b923949 100644 --- a/assets/scss/admin/_tooltip.scss +++ b/assets/scss/admin/_tooltip.scss @@ -17,7 +17,7 @@ { opacity: 0; visibility: hidden; - @include transition(opacity 0.3s ease-in-out); + transition: opacity 0.3s ease-in-out; position: absolute; background: $tooltip-bkg-color; color: $tooltip-color !important; @@ -29,8 +29,8 @@ margin-bottom: 5px; left: -17px; right: 0; - @include border-radius(5px); - @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2)); + border-radius: 5px; + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); line-height: 1.3em; font-weight: bold; text-align: left; @@ -72,4 +72,4 @@ opacity: 1; } } -} \ No newline at end of file +} diff --git a/assets/scss/admin/add-ons.scss b/assets/scss/admin/add-ons.scss index 51fa4008f..300eb2b71 100755 --- a/assets/scss/admin/add-ons.scss +++ b/assets/scss/admin/add-ons.scss @@ -40,7 +40,7 @@ & > ul { - @include transition(all, 0.15s); + transition: all, 0.15s; left: 0; right: 0; top: 0; @@ -53,7 +53,7 @@ padding: 0 15px; width: 100%; display: block; - @include box-sizing(border-box); + box-sizing: border-box; } } @@ -66,7 +66,7 @@ height: 100px; background-repeat: repeat-x; background-size: 100% 100%; - @include transition(all, 0.15s); + transition: all, 0.15s; .fs-badge.fs-installed-addon-badge { font-size: 1.02em; @@ -107,7 +107,7 @@ background: greenyellow; display: block; padding: 2px 10px; - @include box-shadow(1px 1px 1px rgba(0,0,0,0.3)); + box-shadow: 1px 1px 1px rgba(0,0,0,0.3); text-transform: uppercase; font-size: 0.9em; font-weight: bold; @@ -235,7 +235,7 @@ height: 225px; float: left; margin-bottom: 20px; - @include box-sizing(content-box); + box-sizing: content-box; a { @@ -243,7 +243,7 @@ width: 100%; height: 100%; border: 1px solid; - @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2)); + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); background-size: cover; } @@ -509,7 +509,7 @@ z-index: 1; width: 230px; text-align: left; - @include box-shadow(0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12)); + box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); li { margin: 0; @@ -534,13 +534,13 @@ &:not(.up) { .fs-dropdown-list { - @include border-radius(3px 0 3px 3px); + border-radius: 3px 0 3px 3px; } } &.up { .fs-dropdown-list { - @include border-radius(3px 3px 0 3px); + border-radius: 3px 3px 0 3px; } } } @@ -612,4 +612,4 @@ } } } -} \ No newline at end of file +} diff --git a/assets/scss/admin/affiliation.scss b/assets/scss/admin/affiliation.scss index 469d24eb6..32935fb21 100644 --- a/assets/scss/admin/affiliation.scss +++ b/assets/scss/admin/affiliation.scss @@ -13,7 +13,7 @@ ul { li { - @include box-sizing(border-box); + box-sizing: border-box; list-style-type: none; &:before { @@ -94,4 +94,4 @@ } } } -} \ No newline at end of file +} diff --git a/assets/scss/admin/common.scss b/assets/scss/admin/common.scss index 254182bc3..287d2ec08 100755 --- a/assets/scss/admin/common.scss +++ b/assets/scss/admin/common.scss @@ -85,7 +85,7 @@ body.fs-loading { top: 100%; bottom: auto; right: auto; - @include border-radius(0 0 3px 3px); + border-radius: 0 0 3px 3px; left: 10px; font-size: 12px; font-weight: bold; @@ -152,12 +152,12 @@ div.fs-notice padding: 10px 20px; color: green; z-index: 9999; - @include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3)); - @include opacity(0.95); + box-shadow: 0 2px 2px rgba(6, 113, 6, 0.3); + opacity: 0.95; &:hover { - @include opacity(1); + opacity: 1; } a.fs-security-proof @@ -252,4 +252,4 @@ span.fs-submenu-item.fs-sub:before } } -@import "plugin-upgrade-notice"; \ No newline at end of file +@import "plugin-upgrade-notice"; diff --git a/assets/scss/admin/connect.scss b/assets/scss/admin/connect.scss index 8fe13588e..506ac0c50 100755 --- a/assets/scss/admin/connect.scss +++ b/assets/scss/admin/connect.scss @@ -36,7 +36,7 @@ $box_border_radius: 3px; margin: 30px 0 0 -10px; .fs-box-container { - @include box-shadow(none); + box-shadow: none; } } @@ -50,7 +50,7 @@ $box_border_radius: 3px; background: snow; color: $fs-logo-magenta-color; border: 1px solid $fs-logo-magenta-color; - @include box-shadow(0 1px 1px 0 rgba(0,0,0,.1)); + box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); text-align: center; padding: 5px; margin-bottom: 10px; @@ -188,7 +188,7 @@ $box_border_radius: 3px; { padding: 10px 20px; background: #fff; - @include transition(background 0.5s ease); + transition: background 0.5s ease; .fs-license-sync-disclaimer { text-align: center; @@ -492,7 +492,7 @@ $box_border_radius: 3px; #fs_connect { margin: 0; - @include box-shadow(none); + box-shadow: none; } } @@ -559,4 +559,4 @@ $box_border_radius: 3px; margin-top: 10px; } -@import "permissions"; \ No newline at end of file +@import "permissions"; diff --git a/assets/scss/customizer.scss b/assets/scss/customizer.scss index e4b684aa1..09dadd33e 100644 --- a/assets/scss/customizer.scss +++ b/assets/scss/customizer.scss @@ -45,7 +45,7 @@ .fs-feature-desc { opacity: 0; visibility: hidden; - @include transition(opacity 0.3s ease-in-out); + transition: opacity 0.3s ease-in-out; position: absolute; background: $tooltip-color; @@ -58,8 +58,8 @@ margin-bottom: 5px; left: 0; right: 0; - @include border-radius(5px); - @include box-shadow(1px 1px 1px rgba(0,0,0,0.2)); + border-radius: 5px; + box-shadow: 1px 1px 1px rgba(0,0,0,0.2); line-height: 1.3em; font-weight: bold; text-align: left; @@ -162,4 +162,4 @@ } } } -} \ No newline at end of file +} diff --git a/start.php b/start.php index 88bafd489..dfb41de25 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.3.4'; + $this_sdk_version = '2.7.3.5'; #region SDK Selection Logic -------------------------------------------------------------------- From c0c22706b6f61e04b0703b7d32cd6f1158460a7a Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Mon, 22 Jul 2024 17:15:10 +0530 Subject: [PATCH 37/42] [scss] [update] [cleanup] Some mixing related cleanup, no style changes. --- assets/scss/_mixins.scss | 21 ++------------------- assets/scss/admin/_ajax-loader.scss | 2 +- assets/scss/admin/_modal-common.scss | 2 +- 3 files changed, 4 insertions(+), 21 deletions(-) diff --git a/assets/scss/_mixins.scss b/assets/scss/_mixins.scss index 2f18fe849..850f3a27f 100644 --- a/assets/scss/_mixins.scss +++ b/assets/scss/_mixins.scss @@ -22,15 +22,6 @@ // THE SOFTWARE. // -// ---- LEGACY IE SUPPORT USING FILTERS ---- -// Should IE filters be used or not? -// PROS: gradients, drop shadows etc will be handled by css. -// CONS: will harm the site performance badly, -// especially on sites with heavy rendering and scripting. -$useIEFilters: 0; -// might be 0 or 1. disabled by default. -// ---- /LEGACY IE SUPPORT USING FILTERS ---- - // requires sass 3.2 @mixin keyframes($name){ @-moz-keyframes #{$name} { @content; } @@ -41,11 +32,7 @@ $useIEFilters: 0; } @mixin transform($transforms) { - -moz-transform: $transforms; - -o-transform: $transforms; - -ms-transform: $transforms; - -webkit-transform: $transforms; - transform: $transforms; + transform: $transforms; } @mixin rotate($deg) { @@ -72,11 +59,7 @@ $useIEFilters: 0; // Placeholder text @mixin placeholder($color: $input-color-placeholder) { - // Firefox - &::-moz-placeholder { + &::placeholder { color: $color; - opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526 } - &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+ - &::-webkit-input-placeholder { color: $color; } // Safari and Chrome } diff --git a/assets/scss/admin/_ajax-loader.scss b/assets/scss/admin/_ajax-loader.scss index 61fc62bc8..c34753a90 100644 --- a/assets/scss/admin/_ajax-loader.scss +++ b/assets/scss/admin/_ajax-loader.scss @@ -20,7 +20,7 @@ $size: 20; animation-duration: 1.5s; animation-iteration-count: infinite; animation-direction: normal; - @include transform(.3); + @include transform(scale(.3)); } @for $i from 0 through 7 diff --git a/assets/scss/admin/_modal-common.scss b/assets/scss/admin/_modal-common.scss index c43d02108..cdcfc0d83 100644 --- a/assets/scss/admin/_modal-common.scss +++ b/assets/scss/admin/_modal-common.scss @@ -126,7 +126,7 @@ color: #bbb; border-radius: 20px; padding: 3px; - transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; &:hover { color: #fff; From e237c2dd7368ccbbcb2feba0b895978ba137df6d Mon Sep 17 00:00:00 2001 From: Laurence Bahiirwa Date: Mon, 15 Apr 2024 16:31:54 +0300 Subject: [PATCH 38/42] [security] Add missing index.php for direct downloads from GitHub. --- patches/index.php | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 patches/index.php diff --git a/patches/index.php b/patches/index.php new file mode 100644 index 000000000..0316c6a61 --- /dev/null +++ b/patches/index.php @@ -0,0 +1,3 @@ + Date: Mon, 22 Jul 2024 16:50:35 +0200 Subject: [PATCH 39/42] [debug] [logging] Automatically turn off `fs_debug_mode`after 24 hours + Refactor debugger and extract it to a separate class * [debug] [logging] Automatically turn off fs_debug_mode after 24 hours, moved debug logic from Freemius to new FS_DebugManager class, fix a bug about logging attempt to DB when table does not exist. * Removed useless $ON static variable, using $_isStorageLoggingOn * Removed useless $ON static variable, using $_isStorageLoggingOn * Removed useless `off` method and redundant checks --- includes/class-freemius.php | 446 ++-------------- includes/class-fs-logger.php | 17 +- includes/class-fs-storage.php | 1 + includes/managers/class-fs-debug-manager.php | 508 +++++++++++++++++++ require.php | 1 + templates/debug.php | 65 ++- 6 files changed, 611 insertions(+), 427 deletions(-) create mode 100644 includes/managers/class-fs-debug-manager.php diff --git a/includes/class-freemius.php b/includes/class-freemius.php index 347bc44d6..17a9d174d 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -1257,7 +1257,7 @@ private static function migrate_accounts_to_network() { * * @return bool */ - private static function set_network_upgrade_mode( FS_Storage $storage ) { + public static function set_network_upgrade_mode( FS_Storage $storage ) { return $storage->is_network_activation = true; } @@ -1583,6 +1583,8 @@ private function register_constructor_hooks() { ) { add_action( 'admin_init', array( &$this, 'connect_again' ) ); } + + FS_DebugManager::register_hooks(); } /** @@ -2701,7 +2703,7 @@ static function is_deactivation_snoozed() { * @author Vova Feldman (@svovaf) * @since 2.4.3 */ - private static function reset_deactivation_snoozing( $period = 0 ) { + public static function reset_deactivation_snoozing( $period = 0 ) { $value = ( 0 === $period ) ? null : 'true'; if ( ! is_multisite() || fs_is_network_admin() ) { @@ -3418,20 +3420,7 @@ private static function _load_required_static() { self::$_global_admin_notices = FS_Admin_Notices::instance( 'global' ); - if ( ! WP_FS__DEMO_MODE ) { - add_action( ( fs_is_network_admin() ? 'network_' : '' ) . 'admin_menu', array( - 'Freemius', - '_add_debug_section' - ) ); - } - - add_action( "wp_ajax_fs_toggle_debug_mode", array( 'Freemius', '_toggle_debug_mode' ) ); - - self::add_ajax_action_static( 'get_debug_log', array( 'Freemius', '_get_debug_log' ) ); - - self::add_ajax_action_static( 'get_db_option', array( 'Freemius', '_get_db_option' ) ); - - self::add_ajax_action_static( 'set_db_option', array( 'Freemius', '_set_db_option' ) ); + FS_DebugManager::load_required_static(); if ( 0 == did_action( 'plugins_loaded' ) ) { add_action( 'plugins_loaded', array( 'Freemius', '_load_textdomain' ), 1 ); @@ -3458,6 +3447,14 @@ private static function _load_required_static() { self::$_statics_loaded = true; } + public static function get_static_logger() { + return self::$_static_logger; + } + + public static function get_accounts() { + return self::$_accounts; + } + #-------------------------------------------------------------------------------- #region Clone #-------------------------------------------------------------------------------- @@ -3626,7 +3623,7 @@ function _handle_long_term_duplicate() { * * @since 2.1.3 */ - private static function migrate_options_to_network() { + public static function migrate_options_to_network() { self::migrate_accounts_to_network(); // Migrate API options from site level to network level. @@ -3666,325 +3663,6 @@ static function _load_textdomain() { #endregion - #---------------------------------------------------------------------------------- - #region Debugging - #---------------------------------------------------------------------------------- - - /** - * @author Vova Feldman (@svovaf) - * @since 1.0.8 - */ - static function _add_debug_section() { - if ( ! is_super_admin() ) { - // Add debug page only for super-admins. - return; - } - - self::$_static_logger->entrance(); - - $title = sprintf( '%s [v.%s]', fs_text_inline( 'Freemius Debug' ), WP_FS__SDK_VERSION ); - - if ( WP_FS__DEV_MODE ) { - // Add top-level debug menu item. - $hook = FS_Admin_Menu_Manager::add_page( - $title, - $title, - 'manage_options', - 'freemius', - array( 'Freemius', '_debug_page_render' ) - ); - } else { - // Add hidden debug page. - $hook = FS_Admin_Menu_Manager::add_subpage( - '', - $title, - $title, - 'manage_options', - 'freemius', - array( 'Freemius', '_debug_page_render' ) - ); - } - - if ( ! empty( $hook ) ) { - add_action( "load-$hook", array( 'Freemius', '_debug_page_actions' ) ); - } - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.1.7.3 - */ - static function _toggle_debug_mode() { - check_admin_referer( 'fs_toggle_debug_mode' ); - - if ( ! is_super_admin() ) { - return; - } - - $is_on = fs_request_get( 'is_on', false, 'post' ); - - if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) { - update_option( 'fs_debug_mode', $is_on ); - - // Turn on/off storage logging. - FS_Logger::_set_storage_logging( ( 1 == $is_on ) ); - } - - exit; - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.2.1.6 - */ - static function _get_debug_log() { - check_admin_referer( 'fs_get_debug_log' ); - - if ( ! is_super_admin() ) { - return; - } - - $limit = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 ); - $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 ); - - $logs = FS_Logger::load_db_logs( - fs_request_get( 'filters', false, 'post' ), - $limit, - $offset - ); - - self::shoot_ajax_success( $logs ); - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.2.1.7 - */ - static function _get_db_option() { - check_admin_referer( 'fs_get_db_option' ); - - $option_name = fs_request_get( 'option_name' ); - - if ( ! is_super_admin() || - ! fs_starts_with( $option_name, 'fs_' ) - ) { - self::shoot_ajax_failure(); - } - - $value = get_option( $option_name ); - - $result = array( - 'name' => $option_name, - ); - - if ( false !== $value ) { - if ( ! is_string( $value ) ) { - $value = json_encode( $value ); - } - - $result['value'] = $value; - } - - self::shoot_ajax_success( $result ); - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.2.1.7 - */ - static function _set_db_option() { - check_admin_referer( 'fs_set_db_option' ); - - $option_name = fs_request_get( 'option_name' ); - - if ( ! is_super_admin() || - ! fs_starts_with( $option_name, 'fs_' ) - ) { - self::shoot_ajax_failure(); - } - - $option_value = fs_request_get_raw( 'option_value' ); - - if ( ! empty( $option_value ) ) { - update_option( $option_name, $option_value ); - } - - self::shoot_ajax_success(); - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.0.8 - */ - static function _debug_page_actions() { - self::_clean_admin_content_section(); - - if ( fs_request_is_action( 'restart_freemius' ) ) { - check_admin_referer( 'restart_freemius' ); - - if ( ! is_multisite() ) { - // Clear accounts data. - self::$_accounts->clear( null, true ); - } else { - $sites = self::get_sites(); - foreach ( $sites as $site ) { - $blog_id = self::get_site_blog_id( $site ); - self::$_accounts->clear( $blog_id, true ); - } - - // Clear network level storage. - self::$_accounts->clear( true, true ); - } - - // Clear SDK reference cache. - delete_option( 'fs_active_plugins' ); - } else if ( fs_request_is_action( 'clear_updates_data' ) ) { - check_admin_referer( 'clear_updates_data' ); - - if ( ! is_multisite() ) { - set_site_transient( 'update_plugins', null ); - set_site_transient( 'update_themes', null ); - } else { - $current_blog_id = get_current_blog_id(); - - $sites = self::get_sites(); - foreach ( $sites as $site ) { - switch_to_blog( self::get_site_blog_id( $site ) ); - - set_site_transient( 'update_plugins', null ); - set_site_transient( 'update_themes', null ); - } - - switch_to_blog( $current_blog_id ); - } - } else if ( fs_request_is_action( 'reset_deactivation_snoozing' ) ) { - check_admin_referer( 'reset_deactivation_snoozing' ); - - self::reset_deactivation_snoozing(); - } else if ( fs_request_is_action( 'simulate_trial' ) ) { - check_admin_referer( 'simulate_trial' ); - - $fs = freemius( fs_request_get( 'module_id' ) ); - - // Update SDK install to at least 24 hours before. - $fs->_storage->install_timestamp = ( time() - WP_FS__TIME_24_HOURS_IN_SEC ); - // Unset the trial shown timestamp. - unset( $fs->_storage->trial_promotion_shown ); - } else if ( fs_request_is_action( 'simulate_network_upgrade' ) ) { - check_admin_referer( 'simulate_network_upgrade' ); - - $fs = freemius( fs_request_get( 'module_id' ) ); - - self::set_network_upgrade_mode( $fs->_storage ); - } else if ( fs_request_is_action( 'delete_install' ) ) { - check_admin_referer( 'delete_install' ); - - self::_delete_site_by_slug( - fs_request_get( 'slug' ), - fs_request_get( 'module_type' ), - true, - fs_request_get( 'blog_id', null ) - ); - } else if ( fs_request_is_action( 'delete_user' ) ) { - check_admin_referer( 'delete_user' ); - - self::delete_user( fs_request_get( 'user_id' ) ); - } else if ( fs_request_is_action( 'download_logs' ) ) { - check_admin_referer( 'download_logs' ); - - $download_url = FS_Logger::download_db_logs( - fs_request_get( 'filters', false, 'post' ) - ); - - if ( false === $download_url ) { - wp_die( 'Oops... there was an error while generating the logs download file. Please try again and if it doesn\'t work contact support@freemius.com.' ); - } - - fs_redirect( $download_url ); - } else if ( fs_request_is_action( 'migrate_options_to_network' ) ) { - check_admin_referer( 'migrate_options_to_network' ); - - self::migrate_options_to_network(); - } - } - - /** - * @author Leo Fajardo (@leorw) - * @since 2.5.0 - * - * @return array - */ - static function get_all_modules_sites() { - self::$_static_logger->entrance(); - - $sites_by_type = array( - WP_FS__MODULE_TYPE_PLUGIN => array(), - WP_FS__MODULE_TYPE_THEME => array(), - ); - - $module_types = array_keys( $sites_by_type ); - - if ( ! is_multisite() ) { - foreach ( $module_types as $type ) { - $sites_by_type[ $type ] = self::get_all_sites( $type ); - - foreach ( $sites_by_type[ $type ] as $slug => $install ) { - $sites_by_type[ $type ][ $slug ] = array( $install ); - } - } - } else { - $sites = self::get_sites(); - - foreach ( $sites as $site ) { - $blog_id = self::get_site_blog_id( $site ); - - foreach ( $module_types as $type ) { - $installs = self::get_all_sites( $type, $blog_id ); - - foreach ( $installs as $slug => $install ) { - if ( ! isset( $sites_by_type[ $type ][ $slug ] ) ) { - $sites_by_type[ $type ][ $slug ] = array(); - } - - $install->blog_id = $blog_id; - - $sites_by_type[ $type ][ $slug ][] = $install; - } - - } - } - } - - return $sites_by_type; - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.0.8 - */ - static function _debug_page_render() { - self::$_static_logger->entrance(); - - $all_modules_sites = self::get_all_modules_sites(); - - $licenses_by_module_type = self::get_all_licenses_by_module_type(); - - $vars = array( - 'plugin_sites' => $all_modules_sites[ WP_FS__MODULE_TYPE_PLUGIN ], - 'theme_sites' => $all_modules_sites[ WP_FS__MODULE_TYPE_THEME ], - 'users' => self::get_all_users(), - 'addons' => self::get_all_addons(), - 'account_addons' => self::get_all_account_addons(), - 'plugin_licenses' => $licenses_by_module_type[ WP_FS__MODULE_TYPE_PLUGIN ], - 'theme_licenses' => $licenses_by_module_type[ WP_FS__MODULE_TYPE_THEME ] - ); - - fs_enqueue_local_style( 'fs_debug', '/admin/debug.css' ); - fs_require_once_template( 'debug.php', $vars ); - } - - #endregion - #---------------------------------------------------------------------------------- #region Connectivity Issues #---------------------------------------------------------------------------------- @@ -7482,31 +7160,6 @@ static function _delete_site_by_slug( $slug, $module_type, $store = true, $blog_ return $install_id; } - /** - * Delete user. - * - * @author Vova Feldman (@svovaf) - * @since 2.0.0 - * - * @param number $user_id - * @param bool $store - * - * @return false|int The user ID if deleted. Otherwise, FALSE (when install not exist). - */ - private static function delete_user( $user_id, $store = true ) { - $users = self::get_all_users(); - - if ( ! is_array( $users ) || ! isset( $users[ $user_id ] ) ) { - return false; - } - - unset( $users[ $user_id ] ); - - self::$_accounts->set_option( 'users', $users, $store ); - - return $user_id; - } - /** * Delete plugin's plans information. * @@ -10642,7 +10295,7 @@ static function get_all_users() { * * @return array[string]FS_Site */ - private static function get_all_sites( + public static function get_all_sites( $module_type = WP_FS__MODULE_TYPE_PLUGIN, $blog_id = null, $is_backup = false @@ -10671,7 +10324,7 @@ private static function get_all_sites( * * @return mixed */ - private static function get_account_option( $option_name, $module_type = null, $network_level_or_blog_id = null ) { + public static function get_account_option( $option_name, $module_type = null, $network_level_or_blog_id = null ) { if ( ! is_null( $module_type ) && WP_FS__MODULE_TYPE_PLUGIN !== $module_type ) { $option_name = $module_type . '_' . $option_name; } @@ -10802,36 +10455,6 @@ private static function get_all_licenses( $module_id = null ) { return $licenses; } - /** - * @author Leo Fajardo (@leorw) - * @since 2.0.0 - * - * @return array - */ - private static function get_all_licenses_by_module_type() { - $licenses = self::get_account_option( 'all_licenses' ); - - $licenses_by_module_type = array( - WP_FS__MODULE_TYPE_PLUGIN => array(), - WP_FS__MODULE_TYPE_THEME => array() - ); - - if ( ! is_array( $licenses ) ) { - return $licenses_by_module_type; - } - - foreach ( $licenses as $module_id => $module_licenses ) { - $fs = self::get_instance_by_id( $module_id ); - if ( false === $fs ) { - continue; - } - - $licenses_by_module_type[ $fs->_module_type ] = array_merge( $licenses_by_module_type[ $fs->_module_type ], $module_licenses ); - } - - return $licenses_by_module_type; - } - /** * @author Leo Fajardo (@leorw) * @since 2.0.0 @@ -10974,7 +10597,7 @@ private static function get_all_updates() { * * @return array|false */ - private static function get_all_addons() { + public static function get_all_addons() { $addons = self::maybe_get_entities_account_option( 'addons', array() ); if ( ! is_array( $addons ) ) { @@ -10990,7 +10613,7 @@ private static function get_all_addons() { * * @return number[]|false */ - private static function get_all_account_addons() { + public static function get_all_account_addons() { $addons = self::$_accounts->get_option( 'account_addons', array() ); if ( ! is_array( $addons ) ) { @@ -11107,6 +10730,16 @@ function get_site() { return $this->_site; } + /** + * @author Daniele Alessandra (@danielealessandra) + * @return FS_Storage + * @since 2.6.2 + * + */ + public function get_storage() { + return $this->_storage; + } + /** * @author Leo Fajardo (@leorw) * @since 2.5.0 @@ -24884,27 +24517,6 @@ private function add_after_plan_activation_or_upgrade_instructions_notice( $is_u ); } - /** - * @author Leo Fajardo (@leorw) - * @since 2.1.0 - * - * @param string $url - * @param array $request - */ - private static function enrich_request_for_debug( &$url, &$request ) { - if ( WP_FS__DEBUG_SDK || isset( $_COOKIE['XDEBUG_SESSION'] ) ) { - $url = add_query_arg( 'XDEBUG_SESSION_START', rand( 0, 9999999 ), $url ); - $url = add_query_arg( 'XDEBUG_SESSION', 'PHPSTORM', $url ); - - $request['cookies'] = array( - new WP_Http_Cookie( array( - 'name' => 'XDEBUG_SESSION', - 'value' => 'PHPSTORM', - ) ) - ); - } - } - /** * @author Leo Fajardo (@leorw) * @since 2.1.0 @@ -24934,7 +24546,7 @@ static function safe_remote_post( if ( false === $response ) { if ( $maybe_enrich_request_for_debug ) { - self::enrich_request_for_debug( $url, $request ); + FS_DebugManager::enrich_request_for_debug( $url, $request ); } if ( ! isset( $request['method'] ) ) { diff --git a/includes/class-fs-logger.php b/includes/class-fs-logger.php index 6dde8aa30..c5f0c52a1 100644 --- a/includes/class-fs-logger.php +++ b/includes/class-fs-logger.php @@ -32,6 +32,9 @@ class FS_Logger { */ private static $_abspathLength; + /** + * @var FS_Logger[] $LOGGERS + */ private static $LOGGERS = array(); private static $LOG = array(); private static $CNT = 0; @@ -124,7 +127,6 @@ function on() { self::hook_footer(); } - function echo_on() { $this->on(); @@ -320,6 +322,11 @@ public static function _set_storage_logging( $is_on = true ) { $table = "{$wpdb->prefix}fs_logger"; + /** + * Drop logging table in any case. + */ + $result = $wpdb->query( "DROP TABLE IF EXISTS $table;" ); + if ( $is_on ) { /** * Create logging table. @@ -329,7 +336,7 @@ public static function _set_storage_logging( $is_on = true ) { * * @link https://core.trac.wordpress.org/ticket/2695 */ - $result = $wpdb->query( "CREATE TABLE {$table} ( + $result = $wpdb->query( "CREATE TABLE IF NOT EXISTS {$table} ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `process_id` INT UNSIGNED NOT NULL, `user_name` VARCHAR(64) NOT NULL, @@ -348,15 +355,11 @@ public static function _set_storage_logging( $is_on = true ) { KEY `process_logger` (`process_id` ASC, `logger` ASC), KEY `function` (`function` ASC), KEY `type` (`type` ASC))" ); - } else { - /** - * Drop logging table. - */ - $result = $wpdb->query( "DROP TABLE IF EXISTS $table;" ); } if ( false !== $result ) { update_option( 'fs_storage_logger', ( $is_on ? 1 : 0 ) ); + self::$_isStorageLoggingOn = $is_on; } return ( false !== $result ); diff --git a/includes/class-fs-storage.php b/includes/class-fs-storage.php index 1093302ad..1028b113d 100644 --- a/includes/class-fs-storage.php +++ b/includes/class-fs-storage.php @@ -20,6 +20,7 @@ * @property bool|null $is_extensions_tracking_allowed * @property bool|null $is_diagnostic_tracking_allowed * @property object $sync_cron + * @property bool|int $install_timestamp */ class FS_Storage { /** diff --git a/includes/managers/class-fs-debug-manager.php b/includes/managers/class-fs-debug-manager.php new file mode 100644 index 000000000..f8b8e130c --- /dev/null +++ b/includes/managers/class-fs-debug-manager.php @@ -0,0 +1,508 @@ +entrance(); + + $title = sprintf( '%s [v.%s]', fs_text_inline( 'Freemius Debug' ), WP_FS__SDK_VERSION ); + + if ( WP_FS__DEV_MODE ) { + // Add top-level debug menu item. + $hook = FS_Admin_Menu_Manager::add_page( + $title, + $title, + 'manage_options', + 'freemius', + array( self::class, '_debug_page_render' ) + ); + } else { + // Add hidden debug page. + $hook = FS_Admin_Menu_Manager::add_subpage( + '', + $title, + $title, + 'manage_options', + 'freemius', + array( self::class, '_debug_page_render' ) + ); + } + + if ( ! empty( $hook ) ) { + add_action( "load-$hook", array( self::class, '_debug_page_actions' ) ); + } + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.0.8 + */ + static function _debug_page_actions() { + Freemius::_clean_admin_content_section(); + + if ( fs_request_is_action( 'restart_freemius' ) ) { + check_admin_referer( 'restart_freemius' ); + + if ( ! is_multisite() ) { + // Clear accounts data. + Freemius::get_accounts()->clear( null, true ); + } else { + $sites = Freemius::get_sites(); + foreach ( $sites as $site ) { + $blog_id = Freemius::get_site_blog_id( $site ); + Freemius::get_accounts()->clear( $blog_id, true ); + } + + // Clear network level storage. + Freemius::get_accounts()->clear( true, true ); + } + + // Clear SDK reference cache. + delete_option( 'fs_active_plugins' ); + } else if ( fs_request_is_action( 'clear_updates_data' ) ) { + check_admin_referer( 'clear_updates_data' ); + + if ( ! is_multisite() ) { + set_site_transient( 'update_plugins', null ); + set_site_transient( 'update_themes', null ); + } else { + $current_blog_id = get_current_blog_id(); + + $sites = Freemius::get_sites(); + foreach ( $sites as $site ) { + switch_to_blog( Freemius::get_site_blog_id( $site ) ); + + set_site_transient( 'update_plugins', null ); + set_site_transient( 'update_themes', null ); + } + + switch_to_blog( $current_blog_id ); + } + } else if ( fs_request_is_action( 'reset_deactivation_snoozing' ) ) { + check_admin_referer( 'reset_deactivation_snoozing' ); + + Freemius::reset_deactivation_snoozing(); + } else if ( fs_request_is_action( 'simulate_trial' ) ) { + check_admin_referer( 'simulate_trial' ); + + $fs = freemius( fs_request_get( 'module_id' ) ); + + // Update SDK install to at least 24 hours before. + $fs->get_storage()->install_timestamp = ( time() - WP_FS__TIME_24_HOURS_IN_SEC ); + // Unset the trial shown timestamp. + unset( $fs->get_storage()->trial_promotion_shown ); + } else if ( fs_request_is_action( 'simulate_network_upgrade' ) ) { + check_admin_referer( 'simulate_network_upgrade' ); + + $fs = freemius( fs_request_get( 'module_id' ) ); + + Freemius::set_network_upgrade_mode( $fs->get_storage() ); + } else if ( fs_request_is_action( 'delete_install' ) ) { + check_admin_referer( 'delete_install' ); + + Freemius::_delete_site_by_slug( + fs_request_get( 'slug' ), + fs_request_get( 'module_type' ), + true, + fs_request_get( 'blog_id', null ) + ); + } else if ( fs_request_is_action( 'delete_user' ) ) { + check_admin_referer( 'delete_user' ); + + self::delete_user( fs_request_get( 'user_id' ) ); + } else if ( fs_request_is_action( 'download_logs' ) ) { + check_admin_referer( 'download_logs' ); + + $download_url = FS_Logger::download_db_logs( + fs_request_get( 'filters', false, 'post' ) + ); + + if ( false === $download_url ) { + wp_die( 'Oops... there was an error while generating the logs download file. Please try again and if it doesn\'t work contact support@freemius.com.' ); + } + + fs_redirect( $download_url ); + } else if ( fs_request_is_action( 'migrate_options_to_network' ) ) { + check_admin_referer( 'migrate_options_to_network' ); + + Freemius::migrate_options_to_network(); + } + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.0.8 + */ + static function _debug_page_render() { + Freemius::get_static_logger()->entrance(); + + $all_modules_sites = self::get_all_modules_sites(); + + $licenses_by_module_type = self::get_all_licenses_by_module_type(); + + $vars = array( + 'plugin_sites' => $all_modules_sites[ WP_FS__MODULE_TYPE_PLUGIN ], + 'theme_sites' => $all_modules_sites[ WP_FS__MODULE_TYPE_THEME ], + 'users' => Freemius::get_all_users(), + 'addons' => Freemius::get_all_addons(), + 'account_addons' => Freemius::get_all_account_addons(), + 'plugin_licenses' => $licenses_by_module_type[ WP_FS__MODULE_TYPE_PLUGIN ], + 'theme_licenses' => $licenses_by_module_type[ WP_FS__MODULE_TYPE_THEME ], + ); + + fs_enqueue_local_style( 'fs_debug', '/admin/debug.css' ); + fs_require_once_template( 'debug.php', $vars ); + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.2.1.6 + */ + static function _get_debug_log() { + check_admin_referer( 'fs_get_debug_log' ); + + if ( ! is_super_admin() ) { + return; + } + + if (!FS_Logger::is_storage_logging_on()) { + return; + } + + $limit = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 ); + $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 ); + + $logs = FS_Logger::load_db_logs( + fs_request_get( 'filters', false, 'post' ), + $limit, + $offset + ); + + Freemius::shoot_ajax_success( $logs ); + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.2.1.7 + */ + static function _get_db_option() { + check_admin_referer( 'fs_get_db_option' ); + + $option_name = fs_request_get( 'option_name' ); + + if ( ! is_super_admin() || + ! fs_starts_with( $option_name, 'fs_' ) + ) { + Freemius::shoot_ajax_failure(); + } + + $value = get_option( $option_name ); + + $result = array( + 'name' => $option_name, + ); + + if ( false !== $value ) { + if ( ! is_string( $value ) ) { + $value = json_encode( $value ); + } + + $result['value'] = $value; + } + + Freemius::shoot_ajax_success( $result ); + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.2.1.7 + */ + static function _set_db_option() { + check_admin_referer( 'fs_set_db_option' ); + + $option_name = fs_request_get( 'option_name' ); + + if ( ! is_super_admin() || + ! fs_starts_with( $option_name, 'fs_' ) + ) { + Freemius::shoot_ajax_failure(); + } + + $option_value = fs_request_get_raw( 'option_value' ); + + if ( ! empty( $option_value ) ) { + update_option( $option_name, $option_value ); + } + + Freemius::shoot_ajax_success(); + } + + /** + * @author Vova Feldman (@svovaf) + * Moved from Freemius + * + * @since 1.1.7.3 + */ + static function _toggle_debug_mode() { + check_admin_referer( 'fs_toggle_debug_mode' ); + + if ( ! is_super_admin() ) { + return; + } + + $is_on = fs_request_get( 'is_on', false, 'post' ); + + if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) { + if ( $is_on ) { + self::_turn_on_debug_mode(); + } else { + self::_turn_off_debug_mode(); + } + + // Logic to turn debugging off automatically + if ( 1 == $is_on ) { + // Plan a single event triggering after 24 hours to turn debugging off. + wp_schedule_single_event( time() + 24 * HOUR_IN_SECONDS, 'fs_debug_turn_off_logging_hook' ); + } else { + // Cancels any planned event when debugging is turned off manually. + $timestamp = wp_next_scheduled( 'fs_debug_turn_off_logging_hook' ); + if ( $timestamp ) { + wp_unschedule_event( $timestamp, 'fs_debug_turn_off_logging_hook' ); + } + } + } + + exit; + } + + /** + * @author Daniele Alessandra (@danielealessandra) + * @since 2.6.2 + * + */ + static function _turn_off_debug_mode() { + self::update_debug_mode_option( 0 ); + FS_Logger::_set_storage_logging( false ); + } + + /** + * @author Daniele Alessandra (@danielealessandra) + * @since 2.6.2 + * + */ + static function _turn_on_debug_mode() { + self::update_debug_mode_option( 1 ); + FS_Logger::_set_storage_logging(); + } + + /** + * @author Leo Fajardo (@leorw) + * Moved from Freemius + * + * @param string $url + * @param array $request + * + * @since 2.1.0 + * + */ + public static function enrich_request_for_debug( &$url, &$request ) { + if ( WP_FS__DEBUG_SDK || isset( $_COOKIE['XDEBUG_SESSION'] ) ) { + $url = add_query_arg( 'XDEBUG_SESSION_START', rand( 0, 9999999 ), $url ); + $url = add_query_arg( 'XDEBUG_SESSION', 'PHPSTORM', $url ); + + $request['cookies'] = array( + new WP_Http_Cookie( array( + 'name' => 'XDEBUG_SESSION', + 'value' => 'PHPSTORM', + ) ), + ); + } + } + + /** + * @author Leo Fajardo (@leorw) + * Moved from Freemius + * + * @return array + * + * @since 2.0.0 + * + */ + private static function get_all_licenses_by_module_type() { + $licenses = Freemius::get_account_option( 'all_licenses' ); + + $licenses_by_module_type = array( + WP_FS__MODULE_TYPE_PLUGIN => array(), + WP_FS__MODULE_TYPE_THEME => array(), + ); + + if ( ! is_array( $licenses ) ) { + return $licenses_by_module_type; + } + + foreach ( $licenses as $module_id => $module_licenses ) { + $fs = Freemius::get_instance_by_id( $module_id ); + if ( false === $fs ) { + continue; + } + + $licenses_by_module_type[ $fs->get_module_type() ] = array_merge( $licenses_by_module_type[ $fs->get_module_type() ], + $module_licenses ); + } + + return $licenses_by_module_type; + } + + /** + * @author Leo Fajardo (@leorw) + * Moved from Freemius + * + * @return array + * + * @since 2.5.0 + * + */ + static function get_all_modules_sites() { + Freemius::get_static_logger()->entrance(); + + $sites_by_type = array( + WP_FS__MODULE_TYPE_PLUGIN => array(), + WP_FS__MODULE_TYPE_THEME => array(), + ); + + $module_types = array_keys( $sites_by_type ); + + if ( ! is_multisite() ) { + foreach ( $module_types as $type ) { + $sites_by_type[ $type ] = Freemius::get_all_sites( $type ); + + foreach ( $sites_by_type[ $type ] as $slug => $install ) { + $sites_by_type[ $type ][ $slug ] = array( $install ); + } + } + } else { + $sites = Freemius::get_sites(); + + foreach ( $sites as $site ) { + $blog_id = Freemius::get_site_blog_id( $site ); + + foreach ( $module_types as $type ) { + $installs = Freemius::get_all_sites( $type, $blog_id ); + + foreach ( $installs as $slug => $install ) { + if ( ! isset( $sites_by_type[ $type ][ $slug ] ) ) { + $sites_by_type[ $type ][ $slug ] = array(); + } + + $install->blog_id = $blog_id; + + $sites_by_type[ $type ][ $slug ][] = $install; + } + } + } + } + + return $sites_by_type; + } + + /** + * Delete user. + * + * @author Vova Feldman (@svovaf) + * + * @param number $user_id + * @param bool $store + * + * @return false|int The user ID if deleted. Otherwise, FALSE (when install not exist). + * @since 2.0.0 + * + */ + public static function delete_user( $user_id, $store = true ) { + $users = Freemius::get_all_users(); + + if ( ! is_array( $users ) || ! isset( $users[ $user_id ] ) ) { + return false; + } + + unset( $users[ $user_id ] ); + + self::$_accounts->set_option( 'users', $users, $store ); + + return $user_id; + } + + /** + * @author Daniele Alessandra (@danielealessandra) + * + * @return void + * @since 2.6.2 + * + */ + public static function load_required_static() { + if ( ! WP_FS__DEMO_MODE ) { + add_action( ( fs_is_network_admin() ? 'network_' : '' ) . 'admin_menu', array( + self::class, + '_add_debug_section', + ) ); + } + + add_action( "wp_ajax_fs_toggle_debug_mode", array( self::class, '_toggle_debug_mode' ) ); + + Freemius::add_ajax_action_static( 'get_debug_log', array( self::class, '_get_debug_log' ) ); + Freemius::add_ajax_action_static( 'get_db_option', array( self::class, '_get_db_option' ) ); + Freemius::add_ajax_action_static( 'set_db_option', array( self::class, '_set_db_option' ) ); + } + + /** + * @author Daniele Alessandra (@danielealessandra) + * + * @return void + * + * @since 2.6.2 + */ + public static function register_hooks() { + add_action( 'fs_debug_turn_off_logging_hook', array( self::class, '_turn_off_debug_mode' ) ); + } + + /** + * @author Daniele Alessandra (@danielealessandra) + * + * @param int $is_on + * + * @return void + * + * @since 2.6.2 + */ + private static function update_debug_mode_option( $is_on ) { + update_option( 'fs_debug_mode', $is_on ); + } + + } diff --git a/require.php b/require.php index cc194d2d9..bff3fc39e 100644 --- a/require.php +++ b/require.php @@ -50,6 +50,7 @@ require_once WP_FS__DIR_INCLUDES . '/class-fs-api.php'; require_once WP_FS__DIR_INCLUDES . '/class-fs-plugin-updater.php'; require_once WP_FS__DIR_INCLUDES . '/class-fs-security.php'; + require_once WP_FS__DIR_INCLUDES . '/managers/class-fs-debug-manager.php'; require_once WP_FS__DIR_INCLUDES . '/class-fs-options.php'; require_once WP_FS__DIR_INCLUDES . '/class-fs-storage.php'; require_once WP_FS__DIR_INCLUDES . '/class-fs-admin-notices.php'; diff --git a/templates/debug.php b/templates/debug.php index 4e386e1d5..b45a6ff53 100644 --- a/templates/debug.php +++ b/templates/debug.php @@ -17,19 +17,26 @@ $off_text = fs_text_x_inline( 'Off', 'as turned off' ); $on_text = fs_text_x_inline( 'On', 'as turned on' ); + // For some reason css was missing + fs_enqueue_local_style( 'fs_common', '/admin/common.css' ); + $has_any_active_clone = false; $is_multisite = is_multisite(); + + $auto_off_timestamp = wp_next_scheduled( 'fs_debug_turn_off_logging_hook' ) * 1000; ?>

newest->version ?>

-
+ +