Stop User Enumeration - Version 1.3.29

Version Description

  • Minor javascript fix
  • better IP detection for proxies
Download this release

Release Info

Developer fullworks
Plugin Icon 128x128 Stop User Enumeration
Version 1.3.29
Comparing to
See all releases

Code changes from version 1.3.28 to 1.3.29

Files changed (34) hide show
  1. bootstrap.php +1 -1
  2. control/class-freemius-config.php +44 -0
  3. frontend/class-frontend.php +24 -5
  4. frontend/js/frontend.js +5 -1
  5. includes/vendor/freemius/wordpress-sdk/includes/class-freemius.php +79 -41
  6. includes/vendor/freemius/wordpress-sdk/includes/class-fs-logger.php +2 -2
  7. includes/vendor/freemius/wordpress-sdk/includes/entities/class-fs-site.php +17 -0
  8. includes/vendor/freemius/wordpress-sdk/includes/entities/class-fs-user.php +0 -17
  9. includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.mo +0 -0
  10. includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.po +383 -351
  11. includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.mo +0 -0
  12. includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.po +377 -345
  13. includes/vendor/freemius/wordpress-sdk/languages/freemius-en.mo +0 -0
  14. includes/vendor/freemius/wordpress-sdk/languages/freemius-en.po +349 -317
  15. includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.mo +0 -0
  16. includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.po +377 -345
  17. includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.mo +0 -0
  18. includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.po +377 -345
  19. includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.mo +0 -0
  20. includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.po +377 -345
  21. includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.mo +0 -0
  22. includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.po +377 -345
  23. includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.mo +0 -0
  24. includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.po +377 -345
  25. includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.mo +0 -0
  26. includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.po +377 -345
  27. includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.mo +0 -0
  28. includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.po +377 -345
  29. includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.mo +0 -0
  30. includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.po +377 -345
  31. includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.mo +0 -0
  32. includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.po +377 -345
  33. includes/vendor/freemius/wordpress-sdk/languages/freemius-zh_CN.mo +0 -0
  34. includes/vendor/freemius/wordpress-sdk/languages/freemius-zh_CN.po +406 -373
bootstrap.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'WPINC' ) ) {
9
  die;
10
  }
11
  define( 'STOP_USER_ENUMERATION_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
12
- define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.3.25' );
13
 
14
 
15
  // Include the autoloader so we can dynamically include the classes.
9
  die;
10
  }
11
  define( 'STOP_USER_ENUMERATION_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
12
+ define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.3.29' );
13
 
14
 
15
  // Include the autoloader so we can dynamically include the classes.
control/class-freemius-config.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class to load freemius configuration
4
+ */
5
+
6
+ namespace Stop_User_Enumeration\Includes;
7
+
8
+
9
+ class Freemius_Config {
10
+
11
+ public function init() {
12
+
13
+ global $sue_fs;
14
+
15
+ if ( ! isset( $sue_fs ) ) {
16
+ // Include Freemius SDK.
17
+ require_once dirname( __FILE__ ) . '/vendor/freemius/wordpress-sdk/start.php';
18
+
19
+ $sue_fs = fs_dynamic_init( array(
20
+ 'id' => '1318',
21
+ 'slug' => 'stop-user-enumeration',
22
+ 'type' => 'plugin',
23
+ 'public_key' => 'pk_bbbd29c5de1662b6753871351b01f',
24
+ 'is_premium' => false,
25
+ 'has_addons' => false,
26
+ 'has_paid_plans' => false,
27
+ 'menu' => array(
28
+ 'slug' => 'stop-user-enumeration',
29
+ 'account' => false,
30
+ 'contact' => false,
31
+ 'support' => false,
32
+ 'parent' => array(
33
+ 'slug' => 'options-general.php',
34
+ ),
35
+ ),
36
+ ) );
37
+ }
38
+
39
+ return $sue_fs;
40
+ }
41
+
42
+
43
+ }
44
+
frontend/class-frontend.php CHANGED
@@ -84,15 +84,34 @@ class FrontEnd {
84
  }
85
 
86
  private function sue_log() {
87
- $ip = sanitize_text_field( $_SERVER['REMOTE_ADDR'] );
88
- if ( is_plugin_active( 'fullworks-firewall/fullworks-firewall.php' ) ) {
89
- do_action( 'fullworks_security_block_ip', $ip, 1, 'stop-user-enumeration' );
90
- }
91
- if ( 'on' === Core::sue_get_option( 'log_auth', 'off' ) ) {
92
  openlog( 'wordpress(' . sanitize_text_field( $_SERVER['HTTP_HOST'] ) . ')', LOG_NDELAY | LOG_PID, LOG_AUTH );
93
  syslog( LOG_INFO, "Attempted user enumeration from " . $ip );
94
  closelog();
95
  }
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
84
  }
85
 
86
  private function sue_log() {
87
+ $ip = $this->get_ip();
88
+ if ( false !== $ip && 'on' === Core::sue_get_option( 'log_auth', 'off' ) ) {
 
 
 
89
  openlog( 'wordpress(' . sanitize_text_field( $_SERVER['HTTP_HOST'] ) . ')', LOG_NDELAY | LOG_PID, LOG_AUTH );
90
  syslog( LOG_INFO, "Attempted user enumeration from " . $ip );
91
  closelog();
92
  }
93
  }
94
 
95
+ private function get_ip() {
96
+ $ipaddress = false;
97
+ if ( getenv( 'HTTP_CF_CONNECTING_IP' ) ) {
98
+ $ipaddress = getenv( 'HTTP_CLIENT_IP' );
99
+ } elseif ( getenv( 'HTTP_CLIENT_IP' ) ) {
100
+ $ipaddress = getenv( 'HTTP_CLIENT_IP' );
101
+ } elseif ( getenv( 'HTTP_X_FORWARDED_FOR' ) ) {
102
+ $ipaddress = getenv( 'HTTP_X_FORWARDED_FOR' );
103
+ } elseif ( getenv( 'HTTP_X_FORWARDED' ) ) {
104
+ $ipaddress = getenv( 'HTTP_X_FORWARDED' );
105
+ } elseif ( getenv( 'HTTP_FORWARDED_FOR' ) ) {
106
+ $ipaddress = getenv( 'HTTP_FORWARDED_FOR' );
107
+ } elseif ( getenv( 'HTTP_FORWARDED' ) ) {
108
+ $ipaddress = getenv( 'HTTP_FORWARDED' );
109
+ } elseif ( getenv( 'REMOTE_ADDR' ) ) {
110
+ $ipaddress = getenv( 'REMOTE_ADDR' );
111
+ }
112
+
113
+ // sanitize IP address
114
+ return filter_var( $ipaddress, FILTER_VALIDATE_IP );
115
+ }
116
+
117
  }
frontend/js/frontend.js CHANGED
@@ -7,7 +7,11 @@ document.addEventListener('DOMContentLoaded', function (event) {
7
  if (null === commentForm) {
8
  return;
9
  }
10
- commentForm.querySelector("#author").addEventListener(
 
 
 
 
11
  'blur',
12
  function () {
13
  this.value = this.value.replace(/\d+/g, '');
7
  if (null === commentForm) {
8
  return;
9
  }
10
+ var author = commentForm.querySelector("#author");
11
+ if (null === author) {
12
+ return;
13
+ }
14
+ author.addEventListener(
15
  'blur',
16
  function () {
17
  this.value = this.value.replace(/\d+/g, '');
includes/vendor/freemius/wordpress-sdk/includes/class-freemius.php CHANGED
@@ -384,6 +384,13 @@
384
  * @var boolean|null
385
  */
386
  private $_use_external_pricing = null;
 
 
 
 
 
 
 
387
 
388
  #endregion
389
 
@@ -5484,7 +5491,7 @@
5484
  function is_extensions_tracking_allowed() {
5485
  return ( true === $this->apply_filters(
5486
  'is_extensions_tracking_allowed',
5487
- $this->_storage->get( 'is_extensions_tracking_allowed', true )
5488
  ) );
5489
  }
5490
 
@@ -5528,10 +5535,12 @@
5528
  * @author Leo Fajardo (@leorw)
5529
  * @since 2.3.2
5530
  *
5531
- * @param bool $is_enabled
5532
  */
5533
- private function update_extensions_tracking_flag( $is_enabled ) {
5534
- $this->_storage->store( 'is_extensions_tracking_allowed', $is_enabled );
 
 
5535
  }
5536
 
5537
  /**
@@ -6860,8 +6869,6 @@
6860
  */
6861
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6862
  if ( $this->is_registered() ) {
6863
- $this->sync_user_beta_mode();
6864
-
6865
  if ( $this->has_paid_plan() ) {
6866
  // Initiate background plan sync.
6867
  $this->_sync_license( true, false, $current_blog_id );
@@ -7234,7 +7241,8 @@
7234
  }
7235
 
7236
  if ( $this->is_plugin_new_install() || $this->is_only_premium() ) {
7237
- if ( ! $this->_anonymous_mode ) {
 
7238
  // Show notice for new plugin installations.
7239
  $this->_admin_notices->add(
7240
  sprintf(
@@ -7285,6 +7293,10 @@
7285
  * @return bool
7286
  */
7287
  private function should_add_sticky_optin_notice() {
 
 
 
 
7288
  if ( fs_is_network_admin() ) {
7289
  if ( ! $this->_is_network_active ) {
7290
  return false;
@@ -13238,26 +13250,25 @@
13238
  self::shoot_ajax_failure();
13239
  }
13240
 
13241
- $user = $this->get_api_user_scope()->call(
13242
  '',
13243
  'put',
13244
  array(
13245
- 'plugin_id' => $this->get_id(),
13246
  'is_beta' => ( 'true' == $is_beta ),
13247
  'fields' => 'is_beta'
13248
  )
13249
  );
13250
 
13251
- if ( ! $this->is_api_result_entity( $user ) ) {
13252
  self::shoot_ajax_failure(
13253
- FS_Api::is_api_error_object( $user ) ?
13254
- $user->error->message :
13255
  fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() )
13256
  );
13257
  }
13258
 
13259
- $this->_user->is_beta = $user->is_beta;
13260
- $this->_store_user();
13261
 
13262
  self::shoot_ajax_response( array( 'success' => true ) );
13263
  }
@@ -13292,7 +13303,7 @@
13292
  fs_request_get( 'blog_id', null ),
13293
  fs_request_get( 'module_id', null, 'post' ),
13294
  fs_request_get( 'user_id', null ),
13295
- fs_request_get_bool( 'is_extensions_tracking_allowed', true )
13296
  );
13297
 
13298
  if (
@@ -13482,7 +13493,31 @@
13482
  * @return string
13483
  */
13484
  function get_pricing_js_path() {
13485
- return $this->apply_filters( 'freemius_pricing_js_path', WP_FS__DIR_INCLUDES . '/freemius-pricing/freemius-pricing.js' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13486
  }
13487
 
13488
  /**
@@ -13527,7 +13562,7 @@
13527
  $blog_id = null,
13528
  $plugin_id = null,
13529
  $license_owner_id = null,
13530
- $is_extensions_tracking_allowed = true
13531
  ) {
13532
  $this->_logger->entrance();
13533
 
@@ -16448,19 +16483,6 @@
16448
  );
16449
  }
16450
 
16451
- /**
16452
- * @author Leo Fajardo (@leorw)
16453
- * @since 2.3.0
16454
- */
16455
- private function sync_user_beta_mode() {
16456
- $user = $this->get_api_user_scope()->get( '/?plugin_id=' . $this->get_id() . '&fields=is_beta' );
16457
-
16458
- if ( $this->is_api_result_entity( $user ) ) {
16459
- $this->_user->is_beta = $user->is_beta;
16460
- $this->_store_user();
16461
- }
16462
- }
16463
-
16464
  /**
16465
  * @author Vova Feldman (@svovaf)
16466
  * @since 1.1.7.4
@@ -17148,9 +17170,7 @@
17148
  $this->disable_opt_in_notice_and_lock_user();
17149
  }
17150
 
17151
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17152
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17153
- }
17154
 
17155
  return $this->setup_account(
17156
  $this->_user,
@@ -17195,9 +17215,7 @@
17195
  $this->disable_opt_in_notice_and_lock_user();
17196
  }
17197
 
17198
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17199
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17200
- }
17201
 
17202
  $sites = array();
17203
  foreach ( $site_ids as $site_id ) {
@@ -17240,9 +17258,7 @@
17240
  $this->disable_opt_in_notice_and_lock_user();
17241
  }
17242
 
17243
- if ( ! is_null( $is_extensions_tracking_allowed ) ) {
17244
- $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
17245
- }
17246
 
17247
  $install_ids = array();
17248
 
@@ -17353,7 +17369,7 @@
17353
  */
17354
  $license_key = fs_request_get( 'license_secret_key' );
17355
 
17356
- $this->update_extensions_tracking_flag( fs_request_get_bool( 'is_extensions_tracking_allowed', true ) );
17357
 
17358
  $this->install_with_current_user( $license_key );
17359
  }
@@ -20605,6 +20621,20 @@
20605
  }
20606
  }
20607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20608
  if ( $this->is_addon() || $this->has_addons() ) {
20609
  /**
20610
  * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
@@ -21298,7 +21328,7 @@
21298
 
21299
  if ( $this->has_secret_key() ) {
21300
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
21301
- } else if ( $this->is_registered() && $this->_user->is_beta() ) {
21302
  $endpoint = add_query_arg( 'type', 'beta', $endpoint );
21303
  }
21304
 
@@ -23396,6 +23426,14 @@
23396
  return;
23397
  }
23398
 
 
 
 
 
 
 
 
 
23399
  if ( fs_is_network_admin() ) {
23400
  if ( ! $this->_is_network_active ) {
23401
  // Don't add tracking links when browsing the network WP Admin and the plugin is not network active.
384
  * @var boolean|null
385
  */
386
  private $_use_external_pricing = null;
387
+ /**
388
+ * @author Leo Fajardo (@leorw)
389
+ * @since 2.4.2
390
+ *
391
+ * @var string|null
392
+ */
393
+ private $_pricing_js_path = null;
394
 
395
  #endregion
396
 
5491
  function is_extensions_tracking_allowed() {
5492
  return ( true === $this->apply_filters(
5493
  'is_extensions_tracking_allowed',
5494
+ $this->_storage->get( 'is_extensions_tracking_allowed', null )
5495
  ) );
5496
  }
5497
 
5535
  * @author Leo Fajardo (@leorw)
5536
  * @since 2.3.2
5537
  *
5538
+ * @param bool|null $is_enabled
5539
  */
5540
+ function update_extensions_tracking_flag( $is_enabled ) {
5541
+ if ( is_bool( $is_enabled ) ) {
5542
+ $this->_storage->store( 'is_extensions_tracking_allowed', $is_enabled );
5543
+ }
5544
  }
5545
 
5546
  /**
6869
  */
6870
  function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
6871
  if ( $this->is_registered() ) {
 
 
6872
  if ( $this->has_paid_plan() ) {
6873
  // Initiate background plan sync.
6874
  $this->_sync_license( true, false, $current_blog_id );
7241
  }
7242
 
7243
  if ( $this->is_plugin_new_install() || $this->is_only_premium() ) {
7244
+ if ( ! $this->_anonymous_mode &&
7245
+ ( ! $this->is_addon() || ! $this->_parent->is_anonymous() ) ) {
7246
  // Show notice for new plugin installations.
7247
  $this->_admin_notices->add(
7248
  sprintf(
7293
  * @return bool
7294
  */
7295
  private function should_add_sticky_optin_notice() {
7296
+ if ( $this->is_addon() && $this->_parent->is_anonymous() ) {
7297
+ return false;
7298
+ }
7299
+
7300
  if ( fs_is_network_admin() ) {
7301
  if ( ! $this->_is_network_active ) {
7302
  return false;
13250
  self::shoot_ajax_failure();
13251
  }
13252
 
13253
+ $site = $this->get_api_site_scope()->call(
13254
  '',
13255
  'put',
13256
  array(
 
13257
  'is_beta' => ( 'true' == $is_beta ),
13258
  'fields' => 'is_beta'
13259
  )
13260
  );
13261
 
13262
+ if ( ! $this->is_api_result_entity( $site ) ) {
13263
  self::shoot_ajax_failure(
13264
+ FS_Api::is_api_error_object( $site ) ?
13265
+ $site->error->message :
13266
  fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() )
13267
  );
13268
  }
13269
 
13270
+ $this->_site->is_beta = $site->is_beta;
13271
+ $this->_store_site();
13272
 
13273
  self::shoot_ajax_response( array( 'success' => true ) );
13274
  }
13303
  fs_request_get( 'blog_id', null ),
13304
  fs_request_get( 'module_id', null, 'post' ),
13305
  fs_request_get( 'user_id', null ),
13306
+ fs_request_get_bool( 'is_extensions_tracking_allowed', null )
13307
  );
13308
 
13309
  if (
13493
  * @return string
13494
  */
13495
  function get_pricing_js_path() {
13496
+ if ( ! isset( $this->_pricing_js_path ) ) {
13497
+ $pricing_js_path = $this->apply_filters( 'freemius_pricing_js_path', '' );
13498
+
13499
+ if ( empty( $pricing_js_path ) ) {
13500
+ global $fs_active_plugins;
13501
+
13502
+ foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
13503
+ if ( $data->plugin_path == $this->get_plugin_basename() ) {
13504
+ $plugin_or_theme_root_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root( get_stylesheet() ) );
13505
+
13506
+ $pricing_js_path = $plugin_or_theme_root_dir
13507
+ . '/'
13508
+ // The basename will be `plugins`, `themes`, or the basename of a custom plugins or themes directory.
13509
+ . str_replace( '../' . basename( $plugin_or_theme_root_dir ) . '/', '', $sdk_path )
13510
+ . '/includes/freemius-pricing/freemius-pricing.js';
13511
+
13512
+ break;
13513
+ }
13514
+ }
13515
+ }
13516
+
13517
+ $this->_pricing_js_path = $pricing_js_path;
13518
+ }
13519
+
13520
+ return $this->_pricing_js_path;
13521
  }
13522
 
13523
  /**
13562
  $blog_id = null,
13563
  $plugin_id = null,
13564
  $license_owner_id = null,
13565
+ $is_extensions_tracking_allowed = null
13566
  ) {
13567
  $this->_logger->entrance();
13568
 
16483
  );
16484
  }
16485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16486
  /**
16487
  * @author Vova Feldman (@svovaf)
16488
  * @since 1.1.7.4
17170
  $this->disable_opt_in_notice_and_lock_user();
17171
  }
17172
 
17173
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17174
 
17175
  return $this->setup_account(
17176
  $this->_user,
17215
  $this->disable_opt_in_notice_and_lock_user();
17216
  }
17217
 
17218
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17219
 
17220
  $sites = array();
17221
  foreach ( $site_ids as $site_id ) {
17258
  $this->disable_opt_in_notice_and_lock_user();
17259
  }
17260
 
17261
+ $this->update_extensions_tracking_flag( $is_extensions_tracking_allowed );
 
 
17262
 
17263
  $install_ids = array();
17264
 
17369
  */
17370
  $license_key = fs_request_get( 'license_secret_key' );
17371
 
17372
+ $this->update_extensions_tracking_flag( fs_request_get_bool( 'is_extensions_tracking_allowed', null ) );
17373
 
17374
  $this->install_with_current_user( $license_key );
17375
  }
20621
  }
20622
  }
20623
 
20624
+ if ( ! $this->is_addon() &&
20625
+ $this->_site->is_beta() !== $site->is_beta
20626
+ ) {
20627
+ // Beta flag updated.
20628
+ $this->_site = $site;
20629
+
20630
+ $this->_store_site(
20631
+ true,
20632
+ $is_site_level_sync ?
20633
+ null :
20634
+ $this->get_network_install_blog_id()
20635
+ );
20636
+ }
20637
+
20638
  if ( $this->is_addon() || $this->has_addons() ) {
20639
  /**
20640
  * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded,
21328
 
21329
  if ( $this->has_secret_key() ) {
21330
  $endpoint = add_query_arg( 'type', 'all', $endpoint );
21331
+ } else if ( is_object( $this->_site ) && $this->_site->is_beta() ) {
21332
  $endpoint = add_query_arg( 'type', 'beta', $endpoint );
21333
  }
21334
 
23426
  return;
23427
  }
23428
 
23429
+ if (
23430
+ $this->is_addon() &&
23431
+ ! $this->is_only_premium() &&
23432
+ $this->_parent->is_anonymous()
23433
+ ) {
23434
+ return;
23435
+ }
23436
+
23437
  if ( fs_is_network_admin() ) {
23438
  if ( ! $this->_is_network_active ) {
23439
  // Don't add tracking links when browsing the network WP Admin and the plugin is not network active.
includes/vendor/freemius/wordpress-sdk/includes/class-fs-logger.php CHANGED
@@ -142,7 +142,7 @@
142
  return $this->_file_start;
143
  }
144
 
145
- private function _log( &$message, $type = 'log', $wrapper ) {
146
  if ( ! $this->is_on() ) {
147
  return;
148
  }
@@ -688,4 +688,4 @@ KEY `type` (`type` ASC))" );
688
  }
689
 
690
  #endregion
691
- }
142
  return $this->_file_start;
143
  }
144
 
145
+ private function _log( &$message, $type, $wrapper = false ) {
146
  if ( ! $this->is_on() ) {
147
  return;
148
  }
688
  }
689
 
690
  #endregion
691
+ }
includes/vendor/freemius/wordpress-sdk/includes/entities/class-fs-site.php CHANGED
@@ -102,6 +102,14 @@
102
  * @var bool
103
  */
104
  public $is_uninstalled = false;
 
 
 
 
 
 
 
 
105
 
106
  /**
107
  * @param stdClass|bool $site
@@ -233,4 +241,13 @@
233
  function is_tracking_prohibited() {
234
  return ! $this->is_tracking_allowed();
235
  }
 
 
 
 
 
 
 
 
 
236
  }
102
  * @var bool
103
  */
104
  public $is_uninstalled = false;
105
+ /**
106
+ * @author Edgar Melkonyan
107
+ *
108
+ * @since 2.4.2
109
+ *
110
+ * @var bool
111
+ */
112
+ public $is_beta;
113
 
114
  /**
115
  * @param stdClass|bool $site
241
  function is_tracking_prohibited() {
242
  return ! $this->is_tracking_allowed();
243
  }
244
+
245
+ /**
246
+ * @author Edgar Melkonyan
247
+ *
248
+ * @return bool
249
+ */
250
+ function is_beta() {
251
+ return ( isset( $this->is_beta ) && true === $this->is_beta );
252
+ }
253
  }
includes/vendor/freemius/wordpress-sdk/includes/entities/class-fs-user.php CHANGED
@@ -31,13 +31,6 @@
31
  */
32
  public $is_verified;
33
  /**
34
- * @author Leo Fajardo (@leorw)
35
- * @since 2.3.0
36
- *
37
- * @var bool
38
- */
39
- public $is_beta;
40
- /**
41
  * @var string|null
42
  */
43
  public $customer_id;
@@ -63,16 +56,6 @@
63
  return ( isset( $this->is_verified ) && true === $this->is_verified );
64
  }
65
 
66
- /**
67
- * @author Leo Fajardo (@leorw)
68
- * @since 2.3.0
69
- *
70
- * @return bool
71
- */
72
- function is_beta() {
73
- return ( isset( $this->is_beta ) && true === $this->is_beta );
74
- }
75
-
76
  static function get_type() {
77
  return 'user';
78
  }
31
  */
32
  public $is_verified;
33
  /**
 
 
 
 
 
 
 
34
  * @var string|null
35
  */
36
  public $customer_id;
56
  return ( isset( $this->is_verified ) && true === $this->is_verified );
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
59
  static function get_type() {
60
  return 'user';
61
  }
includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Karolína Vyskočilová <karolina@kybernaut.cz>, 2019-2020
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: cs_CZ\n"
13
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n"
@@ -21,835 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  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."
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Chcete pokračovat v aktualizaci?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK nemohl najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com."
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "Chyba"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "Našel jsem lepší %s"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "Jak se %s jmenuje?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Jen dočasná %s - ladím nějaký problém."
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
  msgstr "Deaktivace"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "Změna šablony"
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Jiné"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "Již nepotřebuji %s"
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "Potřeboval %s jsem jen krátkou dobu"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "%s rozbil můj web"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s náhle přestal pracovat"
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "Už si to nemohu dovolit"
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Jakou cenu byste byli ochotni platit?"
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "Nechci s vámi sdílet své informace"
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "%s nefungoval"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Nedokázal jsem jej zprovoznit"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná"
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "Jaká funkce?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "%s nefunguje"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..."
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "Není to to, co jsem hledal"
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "Co jste hledali?"
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s nefungoval podle očekávání"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "Co jste očekávali?"
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius Debug"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!"
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  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."
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  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."
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
  msgstr "Ano - udělejte, co potřebujete"
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
  msgstr "Ne - jen deaktivovat"
156
 
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Jejda"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  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."
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s nelze spustit bez %s."
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s nelze spustit bez tohoto pluginu."
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Premium %s version was successfully activated."
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "Máte licenci „%s“."
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
- msgstr "Yee-haw"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  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."
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci."
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Více informací o %s"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "Koupit licenci"
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Aktivační email od %s by měl dorazit do vašeho mailboxu (%s). Ujistěte se, že v emailu kliknete na tlačítko aktivovat, abyste %s."
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "spustit zkušební verzi"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "dokončit installaci"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "Jste jen na krok od - %s"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Dokončit aktivaci „%s“"
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Udělali jsme několik vylepšení %s, %s"
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "Aktualizace %s byla úspěšně dokončena."
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Doplněk"
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Šablona"
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
  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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě."
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
- msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován."
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "Změnit vlastnictví"
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?"
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "Účet čeká na aktivaci."
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Koupit licenci nyní"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Obnovte svou licenci teď"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "Aktivace %s byla úspěšně dokončena."
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
- msgstr "Účet byl úspěšně aktivován s plánem %s."
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "Vaše zkušebí verze byla úspěšně spuštěna."
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "Nelze aktivovat %s."
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "Kontaktujte nás prosím s následující zprávou:"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "Došlo k neznámé chybě."
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "Upgrade"
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "Začít Trial"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "Ceník"
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Účet"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Support"
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Doplňky"
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Ceník"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Fórum podpory"
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Your email has been successfully verified - you are AWESOME!"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  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."
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Your %s Add-on plan was successfully upgraded."
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "Rozšíření %s bylo úspěšně zakoupeno."
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "Stáhnout nejnovější verzi"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2s"
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "Chyba přijatá ze serveru:"
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  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."
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Trial"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "Kontaktujte nás prosím zde"
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "Vaše licence byla úspěšně aktivována."
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Váš plán byl úspěšně aktualizován."
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Váše předplatné bylo úspěšně změněn na %s."
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení."
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení."
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu."
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  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."
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Licenci se nepodařilo aktivovat."
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "Vaše licence byla úspěšně aktivována."
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "It looks like your site currently doesn't have an active license."
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Deaktivace licence pravděpodobně selhala."
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s."
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "OK"
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s."
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "You are already running the %s in a trial mode."
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "O zkušební licenci nelze žádat dvakrát."
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi."
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Plán %s nepodporuje zkušební období."
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "None of the %s's plans supports a trial period."
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)"
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  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."
586
 
587
- #: includes/class-freemius.php:21236
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Your %s free trial was successfully cancelled."
590
 
591
- #: includes/class-freemius.php:21552
592
  msgid "Version %s was released."
593
  msgstr "Byla vydána verze %s."
594
 
595
- #: includes/class-freemius.php:21552
596
  msgid "Please download %s."
597
  msgstr "Stáhněte si prosím %s."
598
 
599
- #: includes/class-freemius.php:21559
600
  msgid "the latest %s version here"
601
  msgstr "nejnovější %s verze zde"
602
 
603
- #: includes/class-freemius.php:21564
604
  msgid "New"
605
  msgstr "Nový"
606
 
607
- #: includes/class-freemius.php:21569
608
  msgid "Seems like you got the latest release."
609
  msgstr "Pravděpodobně máte nejnovější verzi."
610
 
611
- #: includes/class-freemius.php:21570
612
  msgid "You are all good!"
613
  msgstr "You are all good!"
614
 
615
- #: includes/class-freemius.php:21873
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  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."
618
 
619
- #: includes/class-freemius.php:22013
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
624
  msgid "Awesome"
625
  msgstr "Úžasný"
626
 
627
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Vážíme si vaší pomoci při zlepšování %s tím, že nám umožníte sledovat některá data o jeho používání."
630
 
631
- #: includes/class-freemius.php:22031
632
  msgid "Thank you!"
633
  msgstr "Děkujeme!"
634
 
635
- #: includes/class-freemius.php:22038
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s."
638
 
639
- #: includes/class-freemius.php:22196
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Zkontrolujte si prosím emailovou schránku, měli byste obdržet zprávu od %s pro potvrzení změny vlastnictví. Z bezpečnostních důvodů je nutné potvrdit tuto změnu během následujících 15 minut. Pokud email nemůžete najít, zkontrolujte složku se spamem."
642
 
643
- #: includes/class-freemius.php:22202
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení."
646
 
647
- #: includes/class-freemius.php:22207
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s je nový vlastník účtu."
650
 
651
- #: includes/class-freemius.php:22209
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Gratulujeme"
655
 
656
- #: includes/class-freemius.php:22245
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
 
660
- #: includes/class-freemius.php:22257
661
  msgid "Please provide your full name."
662
  msgstr "Zadejte prosím jméno a příjmení."
663
 
664
- #: includes/class-freemius.php:22262
665
  msgid "Your name was successfully updated."
666
  msgstr "Vaše jméno bylo úspěšně aktualizováno."
667
 
668
- #: includes/class-freemius.php:22323
669
  msgid "You have successfully updated your %s."
670
  msgstr "Úspěšně jste aktualizovali %s."
671
 
672
- #: includes/class-freemius.php:22382
673
  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."
674
  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."
675
 
676
- #: includes/class-freemius.php:22385
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
- #: includes/class-freemius.php:22483
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
 
684
- #: includes/class-freemius.php:22484
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Heads up"
688
 
689
- #: includes/class-freemius.php:23060
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Dobrý den"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma."
697
 
698
- #: includes/class-freemius.php:23068
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "No commitment for %s days - cancel anytime!"
701
 
702
- #: includes/class-freemius.php:23069
703
  msgid "No credit card required"
704
  msgstr "Kreditní karta není vyžadována"
705
 
706
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Start free trial"
710
 
711
- #: includes/class-freemius.php:23153
712
  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!"
713
  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!"
714
 
715
- #: includes/class-freemius.php:23162
716
  msgid "Learn more"
717
  msgstr "Přečtěte si více"
718
 
719
- #: includes/class-freemius.php23348, templates/account.php556,
720
- #: templates/account.php706, templates/connect.php179,
721
- #: templates/connect.php456, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Aktivovat licenci"
725
 
726
- #: includes/class-freemius.php23349, templates/account.php650,
727
- #: templates/account.php705, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Změnit licenci"
731
 
732
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Odhlásit se"
735
 
736
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Zúčastnit se"
741
 
742
- #: includes/class-freemius.php:23700
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s"
745
 
746
- #: includes/class-freemius.php:23708
747
  msgid "Activate %s features"
748
  msgstr "Aktivovat %s funkce"
749
 
750
- #: includes/class-freemius.php:23721
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Dokončete upgrade provedením následujících kroků"
753
 
754
- #: includes/class-freemius.php:23725
755
  msgid "Download the latest %s version"
756
  msgstr "Stáhnout nejnovější verzi %s"
757
 
758
- #: includes/class-freemius.php:23729
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Nahrát a aktivovat stáhnutou verzi"
761
 
762
- #: includes/class-freemius.php:23731
763
  msgid "How to upload and activate?"
764
  msgstr "Jak nahrát a aktivovat?"
765
 
766
- #: includes/class-freemius.php:23865
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
- #: includes/class-freemius.php:24034
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Auto installation only works for opted-in users."
773
 
774
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
775
- #: includes/class-fs-plugin-updater.php1273,
776
- #: includes/class-fs-plugin-updater.php:1287
777
  msgid "Invalid module ID."
778
- msgstr "Invalid module ID."
779
 
780
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
781
  msgid "Premium version already active."
782
  msgstr "Prémiová verze je již aktivní."
783
 
784
- #: includes/class-freemius.php:24060
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "You do not have a valid license to access the premium version."
787
 
788
- #: includes/class-freemius.php:24067
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
 
792
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
793
  msgid "Premium add-on version already installed."
794
  msgstr "Premium add-on version already installed."
795
 
796
- #: includes/class-freemius.php:24435
797
  msgid "View paid features"
798
  msgstr "Zobrazit placené funkce"
799
 
800
- #: includes/class-freemius.php:24757
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
- #: includes/class-freemius.php:24758
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
- #: includes/class-freemius.php:24764
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
- #: includes/class-freemius.php:24768
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
- #: includes/class-freemius.php:24769
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
- #: includes/class-freemius.php:24788
821
  msgid "%s and its add-ons"
822
  msgstr "%s a jeho doplňky"
823
 
824
- #: includes/class-freemius.php:24797
825
  msgid "Products"
826
  msgstr "Produkty"
827
 
828
- #: includes/class-freemius.php24804, templates/connect.php:280
829
  msgid "Yes"
830
  msgstr "Ano"
831
 
832
- #: includes/class-freemius.php24805, templates/connect.php:281
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "send me security & feature updates, educational content and offers."
835
 
836
- #: includes/class-freemius.php24806, templates/connect.php:286
837
  msgid "No"
838
  msgstr "Ne"
839
 
840
- #: includes/class-freemius.php24808, templates/connect.php:288
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
- #: includes/class-freemius.php:24818
845
  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 :-)"
846
  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 :-)"
847
 
848
- #: includes/class-freemius.php24820, templates/connect.php:295
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
- #: includes/class-freemius.php:25102
853
  msgid "License key is empty."
854
  msgstr "Licenční klíč je prázdný."
855
 
@@ -882,15 +882,15 @@ msgstr "nová verze"
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
- #: includes/class-fs-plugin-updater.php:1338
886
  msgid "Installing plugin: %s"
887
  msgstr "Instaluji plugin: %s"
888
 
889
- #: includes/class-fs-plugin-updater.php:1379
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření."
892
 
893
- #: includes/class-fs-plugin-updater.php:1561
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje."
896
 
@@ -912,7 +912,7 @@ msgstr "Začít můj bezplatný %s"
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
916
  msgid "Install Update Now"
917
  msgstr "Nainstalovat aktualizaci"
918
 
@@ -932,7 +932,7 @@ msgctxt "as download latest version"
932
  msgid "Download Latest Free Version"
933
  msgstr "Stáhněte si nejnovější bezplatnou verzi"
934
 
935
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
@@ -944,11 +944,11 @@ msgstr "Stáhněte si nejnovější"
944
  msgid "Activate this add-on"
945
  msgstr "Aktivovat toto rozšíření"
946
 
947
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
948
  msgid "Activate Free Version"
949
  msgstr "Aktivovat bezplatnou verzi"
950
 
951
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Aktivovat"
@@ -1041,11 +1041,11 @@ msgstr "Jedenkrát"
1041
 
1042
  #: includes/fs-plugin-info-dialog.php:1167
1043
  msgid "Single Site License"
1044
- msgstr "Single Site License"
1045
 
1046
  #: includes/fs-plugin-info-dialog.php:1169
1047
  msgid "Unlimited Licenses"
1048
- msgstr "Unlimited Licenses"
1049
 
1050
  #: includes/fs-plugin-info-dialog.php:1171
1051
  msgid "Up to %s Sites"
@@ -1084,7 +1084,7 @@ msgstr "Po bezplatné %s platit jen v %s"
1084
  msgid "Details"
1085
  msgstr "Detaily"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
@@ -1100,7 +1100,7 @@ msgstr "Autor"
1100
  msgid "Last Updated"
1101
  msgstr "Poslední aktualizace"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "Před %s"
@@ -1211,13 +1211,13 @@ msgstr "Nainstalována nejnovější verze"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Nainstalována nejnovější verze zdarma"
1213
 
1214
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Snižuji vaše předplatné"
1219
 
1220
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
@@ -1225,317 +1225,317 @@ msgstr "Ruším předplatné"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
1232
 
1233
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?"
1243
 
1244
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
- #: templates/account.php109,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Aktivovat %s plán"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
- #: templates/account.php112, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Automaticky se obnoví za %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
- #: templates/account.php114, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Vyprší za %s"
1274
 
1275
- #: templates/account.php:115
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Synchronizovat licence"
1279
 
1280
- #: templates/account.php116, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Zrušit zkušební verzi"
1283
 
1284
- #: templates/account.php117, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Změnit plán"
1287
 
1288
- #: templates/account.php118, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Vylepšit"
1292
 
1293
- #: templates/account.php120, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Přejít na nižší verzi"
1298
 
1299
- #: templates/account.php122, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Zdarma"
1305
 
1306
- #: templates/account.php124, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Druh členství"
1312
 
1313
- #: templates/account.php:125
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
- #: templates/account.php:248
1318
  msgid "Free Trial"
1319
  msgstr "Zkušební verze zdarma"
1320
 
1321
- #: templates/account.php:259
1322
  msgid "Account Details"
1323
  msgstr "Detaily účtu"
1324
 
1325
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
- #: templates/account.php:268
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
- #: templates/account.php:275
1334
  msgid "Billing & Invoices"
1335
  msgstr "Fakturace a platby"
1336
 
1337
- #: templates/account.php:286
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
 
1341
- #: templates/account.php:288
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
 
1345
- #: templates/account.php:291
1346
  msgid "Delete Account"
1347
  msgstr "Smazat účet"
1348
 
1349
- #: templates/account.php303, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Deaktivovat licenci"
1353
 
1354
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Opravdu chcete pokračovat?"
1357
 
1358
- #: templates/account.php326, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Zrušit předplatné"
1361
 
1362
- #: templates/account.php355, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Synchronizovat"
1366
 
1367
- #: templates/account.php370, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Jméno"
1370
 
1371
- #: templates/account.php376, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "ID uživatele"
1378
 
1379
- #: templates/account.php401, templates/account.php719,
1380
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
- #: templates/account.php:408
1388
  msgid "Site ID"
1389
  msgstr "ID stránky"
1390
 
1391
- #: templates/account.php:411
1392
  msgid "No ID"
1393
  msgstr "Žádné ID"
1394
 
1395
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Veřejný klíč"
1400
 
1401
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Tajný klíč"
1405
 
1406
- #: templates/account.php:425
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Tajný klíč chybí"
1410
 
1411
- #: templates/account.php452, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Zkouška"
1415
 
1416
- #: templates/account.php479, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Licenční klíč"
1420
 
1421
- #: templates/account.php:510
1422
  msgid "Join the Beta program"
1423
  msgstr "Odebírat betaverze"
1424
 
1425
- #: templates/account.php:516
1426
  msgid "not verified"
1427
  msgstr "není ověřeno"
1428
 
1429
- #: templates/account.php525, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Vypršelo"
1432
 
1433
- #: templates/account.php:585
1434
  msgid "Premium version"
1435
  msgstr "Prémiová verze"
1436
 
1437
- #: templates/account.php:587
1438
  msgid "Free version"
1439
  msgstr "Verze zdarma"
1440
 
1441
- #: templates/account.php:599
1442
  msgid "Verify Email"
1443
  msgstr "Ověřit e-mail"
1444
 
1445
- #: templates/account.php:613
1446
  msgid "Download %s Version"
1447
  msgstr "Stáhnout verzi %s"
1448
 
1449
- #: templates/account.php:629
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
- #: templates/account.php647, templates/account.php890,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Zobrazit"
1459
 
1460
- #: templates/account.php:662
1461
  msgid "What is your %s?"
1462
  msgstr "Jaké je vaše \"%s\"?"
1463
 
1464
- #: templates/account.php670, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Upravit"
1468
 
1469
- #: templates/account.php674, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
- #: templates/account.php:698
1474
  msgid "Sites"
1475
  msgstr "Weby"
1476
 
1477
- #: templates/account.php:711
1478
  msgid "Search by address"
1479
  msgstr "Hledat podle adresy"
1480
 
1481
- #: templates/account.php720, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Adresa"
1484
 
1485
- #: templates/account.php:721
1486
  msgid "License"
1487
  msgstr "Licence"
1488
 
1489
- #: templates/account.php:722
1490
  msgid "Plan"
1491
  msgstr "Druh členství"
1492
 
1493
- #: templates/account.php:755
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licence"
1497
 
1498
- #: templates/account.php:884
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Skrýt"
1502
 
1503
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Processing"
1506
 
1507
- #: templates/account.php:909
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
- #: templates/account.php:967
1512
  msgid "Cancelling %s"
1513
  msgstr "Ruším %s"
1514
 
1515
- #: templates/account.php967, templates/account.php984,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "zkušební"
1520
 
1521
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Ruším %s..."
1524
 
1525
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "předplatné"
1529
 
1530
- #: templates/account.php:999
1531
  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?"
1532
  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?"
1533
 
1534
- #: templates/account.php:1073
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
- #: templates/account.php:1074
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
@@ -1561,7 +1561,7 @@ msgctxt "installed add-on"
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
@@ -1617,86 +1617,94 @@ msgstr "Děkujeme %s!"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Aktivovat licenci"
1619
 
1620
- #: templates/connect.php:189
1621
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1622
- msgstr "Děkujeme za nákup %s! Pro aktivaci zadejte prosím svůj licenční klíč:"
1623
 
1624
- #: templates/connect.php:196
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace."
1627
 
1628
- #: templates/connect.php:197
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace."
1631
 
1632
- #: templates/connect.php:203
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1635
 
1636
- #: templates/connect.php:204
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1639
 
1640
- #: templates/connect.php:238
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů."
1643
 
1644
- #: templates/connect.php:241
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
- #: templates/connect.php:243
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "Pokud chcete použít %s na těchto stránkách, zadejte platný licenční klíč a klikněte na tlačítko aktivovat."
1651
 
1652
- #: templates/connect.php:245
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
- #: templates/connect.php:250
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
- #: templates/connect.php:252
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Licenční klíč"
1668
 
1669
- #: templates/connect.php264, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Nemůžete najít svůj licenční klíč?"
1672
 
1673
- #: templates/connect.php323, templates/connect.php695,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Přeskočit"
1678
 
1679
- #: templates/connect.php:326
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
- #: templates/connect.php:326
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
- #: templates/connect.php:364
 
 
 
 
1688
  msgid "Your Profile Overview"
1689
  msgstr "Informace o vašem profilu"
1690
 
1691
- #: templates/connect.php:365
1692
  msgid "Name and email address"
1693
  msgstr "Jméno a emailová adresa"
1694
 
1695
- #: templates/connect.php:372
 
 
 
 
1696
  msgid "Your Site Overview"
1697
  msgstr "Informace o vaší stránce"
1698
 
1699
- #: templates/connect.php:373
1700
  msgid "Site URL, WP version, PHP info"
1701
  msgstr "Site URL, WP version, PHP info"
1702
 
@@ -1704,64 +1712,84 @@ msgstr "Site URL, WP version, PHP info"
1704
  msgid "Admin Notices"
1705
  msgstr "Zobrazení oznámení v adminu"
1706
 
1707
- #: templates/connect.php380, templates/connect.php:396
1708
  msgid "Updates, announcements, marketing, no spam"
1709
  msgstr "Aktualizace, oznámení, marketing, žádný spam"
1710
 
1711
- #: templates/connect.php:386
1712
- msgid "Current %s Events"
1713
- msgstr "Informace o událostech pro %s"
1714
-
1715
  #: templates/connect.php:387
1716
- msgid "Activation, deactivation and uninstall"
1717
- msgstr "Aktivace, deaktivace a odinstalace"
 
 
 
 
 
 
 
 
1718
 
1719
- #: templates/connect.php:395
1720
  msgid "Newsletter"
1721
  msgstr "Newsletter"
1722
 
1723
- #: templates/connect.php:403
1724
  msgid "Plugins & Themes"
1725
  msgstr "Plugins & Themes"
1726
 
1727
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1728
  msgid "Title, slug, version, and is active"
1729
  msgstr "Title, slug, version, and is active"
1730
 
1731
- #: templates/connect.php421, templates/forms/license-activation.php:41
1732
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1733
- msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s."
1734
 
1735
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1736
  msgid "What permissions are being granted?"
1737
  msgstr "Jaká oprávnění budou udělena?"
1738
 
1739
- #: templates/connect.php:452
1740
  msgid "Don't have a license key?"
1741
  msgstr "Nemáte licenční klíč?"
1742
 
1743
- #: templates/connect.php:455
1744
  msgid "Have a license key?"
1745
  msgstr "Máte licenční klíč?"
1746
 
1747
- #: templates/connect.php:463
1748
  msgid "Privacy Policy"
1749
  msgstr "Zásady ochrany osobních údajů"
1750
 
1751
- #: templates/connect.php:465
1752
  msgid "License Agreement"
1753
  msgstr "Licenční smlouva"
1754
 
1755
- #: templates/connect.php:465
1756
  msgid "Terms of Service"
1757
  msgstr "Podmínky služby"
1758
 
1759
- #: templates/connect.php:854
1760
  msgctxt "as in the process of sending an email"
1761
  msgid "Sending email"
1762
  msgstr "Probíhá odesílání emailů"
1763
 
1764
- #: templates/connect.php:855
1765
  msgctxt "as activating plugin"
1766
  msgid "Activating"
1767
  msgstr "Probíhá aktivace"
@@ -2364,7 +2392,11 @@ msgstr "Zadejte licenční klíč, který najdete v emailu odeslaném po provede
2364
  msgid "Update License"
2365
  msgstr "Aktualizovat licenci"
2366
 
2367
- #: templates/forms/license-activation.php:181
 
 
 
 
2368
  msgid "Associate with the license owner's account."
2369
  msgstr "Associate with the license owner's account."
2370
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Karolína Vyskočilová <karolina@kybernaut.cz>, 2019-2020
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: cs_CZ\n"
13
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1919, templates/account.php:912
25
  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."
26
  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."
27
 
28
+ #: includes/class-freemius.php:1926
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Chcete pokračovat v aktualizaci?"
31
 
32
+ #: includes/class-freemius.php:2138
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK nemohl najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com."
35
 
36
+ #: includes/class-freemius.php:2140
37
  msgid "Error"
38
  msgstr "Chyba"
39
 
40
+ #: includes/class-freemius.php:2540
41
  msgid "I found a better %s"
42
  msgstr "Našel jsem lepší %s"
43
 
44
+ #: includes/class-freemius.php:2542
45
  msgid "What's the %s's name?"
46
  msgstr "Jak se %s jmenuje?"
47
 
48
+ #: includes/class-freemius.php:2548
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Jen dočasná %s - ladím nějaký problém."
51
 
52
+ #: includes/class-freemius.php:2550
53
  msgid "Deactivation"
54
  msgstr "Deaktivace"
55
 
56
+ #: includes/class-freemius.php:2551
57
  msgid "Theme Switch"
58
  msgstr "Změna šablony"
59
 
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Jiné"
64
 
65
+ #: includes/class-freemius.php:2568
66
  msgid "I no longer need the %s"
67
  msgstr "Již nepotřebuji %s"
68
 
69
+ #: includes/class-freemius.php:2575
70
  msgid "I only needed the %s for a short period"
71
  msgstr "Potřeboval %s jsem jen krátkou dobu"
72
 
73
+ #: includes/class-freemius.php:2581
74
  msgid "The %s broke my site"
75
  msgstr "%s rozbil můj web"
76
 
77
+ #: includes/class-freemius.php:2588
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s náhle přestal pracovat"
80
 
81
+ #: includes/class-freemius.php:2598
82
  msgid "I can't pay for it anymore"
83
  msgstr "Už si to nemohu dovolit"
84
 
85
+ #: includes/class-freemius.php:2600
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Jakou cenu byste byli ochotni platit?"
88
 
89
+ #: includes/class-freemius.php:2606
90
  msgid "I don't like to share my information with you"
91
  msgstr "Nechci s vámi sdílet své informace"
92
 
93
+ #: includes/class-freemius.php:2627
94
  msgid "The %s didn't work"
95
  msgstr "%s nefungoval"
96
 
97
+ #: includes/class-freemius.php:2637
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Nedokázal jsem jej zprovoznit"
100
 
101
+ #: includes/class-freemius.php:2645
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná"
104
 
105
+ #: includes/class-freemius.php:2647
106
  msgid "What feature?"
107
  msgstr "Jaká funkce?"
108
 
109
+ #: includes/class-freemius.php:2651
110
  msgid "The %s is not working"
111
  msgstr "%s nefunguje"
112
 
113
+ #: includes/class-freemius.php:2653
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..."
116
 
117
+ #: includes/class-freemius.php:2657
118
  msgid "It's not what I was looking for"
119
  msgstr "Není to to, co jsem hledal"
120
 
121
+ #: includes/class-freemius.php:2659
122
  msgid "What you've been looking for?"
123
  msgstr "Co jste hledali?"
124
 
125
+ #: includes/class-freemius.php:2663
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s nefungoval podle očekávání"
128
 
129
+ #: includes/class-freemius.php:2665
130
  msgid "What did you expect?"
131
  msgstr "Co jste očekávali?"
132
 
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius Debug"
136
 
137
+ #: includes/class-freemius.php:4272
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!"
140
 
141
+ #: includes/class-freemius.php:4274
142
  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."
143
  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."
144
 
145
+ #: includes/class-freemius.php:4281
146
  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."
147
  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."
148
 
149
+ #: includes/class-freemius.php:4386
150
  msgid "Yes - do your thing"
151
  msgstr "Ano - udělejte, co potřebujete"
152
 
153
+ #: includes/class-freemius.php:4391
154
  msgid "No - just deactivate"
155
  msgstr "Ne - jen deaktivovat"
156
 
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Jejda"
168
 
169
+ #: includes/class-freemius.php:4505
170
  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."
171
  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."
172
 
173
+ #: includes/class-freemius.php:4927
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s nelze spustit bez %s."
177
 
178
+ #: includes/class-freemius.php:4928
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s nelze spustit bez tohoto pluginu."
182
 
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
 
188
+ #: includes/class-freemius.php:5857
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Premium %s version was successfully activated."
191
 
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
+ #: includes/class-freemius.php:5884
198
  msgid "You have a %s license."
199
  msgstr "Máte licenci „%s“."
200
 
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
+ msgstr "Jupí"
208
 
209
+ #: includes/class-freemius.php:6174
210
  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."
211
  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."
212
 
213
+ #: includes/class-freemius.php:6178
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci."
216
 
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Více informací o %s"
221
 
222
+ #: includes/class-freemius.php:6188
223
  msgid "Purchase License"
224
  msgstr "Koupit licenci"
225
 
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Aktivační email od %s by měl dorazit do vašeho mailboxu (%s). Ujistěte se, že v emailu kliknete na tlačítko aktivovat, abyste %s."
229
 
230
+ #: includes/class-freemius.php:7129
231
  msgid "start the trial"
232
  msgstr "spustit zkušební verzi"
233
 
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "dokončit installaci"
237
 
238
+ #: includes/class-freemius.php:7249
239
  msgid "You are just one step away - %s"
240
  msgstr "Jste jen na krok od - %s"
241
 
242
+ #: includes/class-freemius.php:7252
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Dokončit aktivaci „%s“"
246
 
247
+ #: includes/class-freemius.php:7334
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Udělali jsme několik vylepšení %s, %s"
250
 
251
+ #: includes/class-freemius.php:7338
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!"
254
 
255
+ #: includes/class-freemius.php:7773
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "Aktualizace %s byla úspěšně dokončena."
258
 
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Doplněk"
265
 
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Šablona"
276
 
277
+ #: includes/class-freemius.php:13188
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
+ #: includes/class-freemius.php:13202
282
  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."
283
  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."
284
 
285
+ #: includes/class-freemius.php:13207
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
+ #: includes/class-freemius.php:13208
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
+ #: includes/class-freemius.php:13266
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě."
296
 
297
+ #: includes/class-freemius.php:13339
298
  msgid "Invalid new user ID or email address."
299
+ msgstr "Neplatné ID uživatele nebo emailová adresa."
300
 
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován."
304
 
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
 
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
  msgid "Change Ownership"
311
  msgstr "Změnit vlastnictví"
312
 
313
+ #: includes/class-freemius.php:13977
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
+ #: includes/class-freemius.php:14097
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?"
320
 
321
+ #: includes/class-freemius.php:14099
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
 
325
+ #: includes/class-freemius.php:14373
326
  msgid "Account is pending activation."
327
  msgstr "Účet čeká na aktivaci."
328
 
329
+ #: includes/class-freemius.php14485,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Koupit licenci nyní"
333
 
334
+ #: includes/class-freemius.php14497,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Obnovte svou licenci teď"
338
 
339
+ #: includes/class-freemius.php:14501
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
342
 
343
+ #: includes/class-freemius.php:16929
344
  msgid "%s activation was successfully completed."
345
  msgstr "Aktivace %s byla úspěšně dokončena."
346
 
347
+ #: includes/class-freemius.php:16943
348
  msgid "Your account was successfully activated with the %s plan."
349
+ msgstr "Účet byl úspěšně aktivován s %s plánem."
350
 
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
  msgid "Your trial has been successfully started."
353
  msgstr "Vaše zkušebí verze byla úspěšně spuštěna."
354
 
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
  msgid "Couldn't activate %s."
358
  msgstr "Nelze aktivovat %s."
359
 
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
  msgid "Please contact us with the following message:"
363
  msgstr "Kontaktujte nás prosím s následující zprávou:"
364
 
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "Došlo k neznámé chybě."
368
 
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
  msgid "Upgrade"
371
  msgstr "Upgrade"
372
 
373
+ #: includes/class-freemius.php:18184
374
  msgid "Start Trial"
375
  msgstr "Začít Trial"
376
 
377
+ #: includes/class-freemius.php:18186
378
  msgid "Pricing"
379
  msgstr "Ceník"
380
 
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Účet"
389
 
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Support"
394
 
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Doplňky"
400
 
401
+ #: includes/class-freemius.php:18361
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Ceník"
415
 
416
+ #: includes/class-freemius.php18576,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Fórum podpory"
420
 
421
+ #: includes/class-freemius.php:19550
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Your email has been successfully verified - you are AWESOME!"
424
 
425
+ #: includes/class-freemius.php:19551
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
+ #: includes/class-freemius.php:20057
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
+ #: includes/class-freemius.php:20081
435
  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."
436
  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."
437
 
438
+ #: includes/class-freemius.php:20316
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Your %s Add-on plan was successfully upgraded."
441
 
442
+ #: includes/class-freemius.php:20318
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "Rozšíření %s bylo úspěšně zakoupeno."
445
 
446
+ #: includes/class-freemius.php:20321
447
  msgid "Download the latest version"
448
  msgstr "Stáhnout nejnovější verzi"
449
 
450
+ #: includes/class-freemius.php:20407
451
  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"
452
  msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2s"
453
 
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
  msgid "Error received from the server:"
457
  msgstr "Chyba přijatá ze serveru:"
458
 
459
+ #: includes/class-freemius.php:20423
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
 
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
+ #: includes/class-freemius.php:20664
470
  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."
471
  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."
472
 
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Trial"
478
 
479
+ #: includes/class-freemius.php:20670
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
 
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
  msgid "Please contact us here"
485
  msgstr "Kontaktujte nás prosím zde"
486
 
487
+ #: includes/class-freemius.php:20685
488
  msgid "Your plan was successfully activated."
489
  msgstr "Vaše licence byla úspěšně aktivována."
490
 
491
+ #: includes/class-freemius.php:20686
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Váš plán byl úspěšně aktualizován."
494
 
495
+ #: includes/class-freemius.php:20703
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Váše předplatné bylo úspěšně změněn na %s."
498
 
499
+ #: includes/class-freemius.php:20719
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení."
502
 
503
+ #: includes/class-freemius.php:20721
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení."
506
 
507
+ #: includes/class-freemius.php:20729
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu."
510
 
511
+ #: includes/class-freemius.php:20742
512
  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."
513
  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."
514
 
515
+ #: includes/class-freemius.php:20768
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
+ #: includes/class-freemius.php:20770
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
+ #: includes/class-freemius.php:20885
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Licenci se nepodařilo aktivovat."
526
 
527
+ #: includes/class-freemius.php:20927
528
  msgid "Your license was successfully activated."
529
  msgstr "Vaše licence byla úspěšně aktivována."
530
 
531
+ #: includes/class-freemius.php:20953
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "It looks like your site currently doesn't have an active license."
534
 
535
+ #: includes/class-freemius.php:20977
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Deaktivace licence pravděpodobně selhala."
538
 
539
+ #: includes/class-freemius.php:21006
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
+ #: includes/class-freemius.php:21007
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s."
546
 
547
+ #: includes/class-freemius.php:21010
548
  msgid "O.K"
549
  msgstr "OK"
550
 
551
+ #: includes/class-freemius.php:21063
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
+ #: includes/class-freemius.php:21072
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s."
558
 
559
+ #: includes/class-freemius.php:21114
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "You are already running the %s in a trial mode."
562
 
563
+ #: includes/class-freemius.php:21125
564
  msgid "You already utilized a trial before."
565
  msgstr "O zkušební licenci nelze žádat dvakrát."
566
 
567
+ #: includes/class-freemius.php:21139
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi."
570
 
571
+ #: includes/class-freemius.php:21150
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Plán %s nepodporuje zkušební období."
574
 
575
+ #: includes/class-freemius.php:21161
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "None of the %s's plans supports a trial period."
578
 
579
+ #: includes/class-freemius.php:21211
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)"
582
 
583
+ #: includes/class-freemius.php:21247
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  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."
586
 
587
+ #: includes/class-freemius.php:21266
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Your %s free trial was successfully cancelled."
590
 
591
+ #: includes/class-freemius.php:21582
592
  msgid "Version %s was released."
593
  msgstr "Byla vydána verze %s."
594
 
595
+ #: includes/class-freemius.php:21582
596
  msgid "Please download %s."
597
  msgstr "Stáhněte si prosím %s."
598
 
599
+ #: includes/class-freemius.php:21589
600
  msgid "the latest %s version here"
601
  msgstr "nejnovější %s verze zde"
602
 
603
+ #: includes/class-freemius.php:21594
604
  msgid "New"
605
  msgstr "Nový"
606
 
607
+ #: includes/class-freemius.php:21599
608
  msgid "Seems like you got the latest release."
609
  msgstr "Pravděpodobně máte nejnovější verzi."
610
 
611
+ #: includes/class-freemius.php:21600
612
  msgid "You are all good!"
613
  msgstr "You are all good!"
614
 
615
+ #: includes/class-freemius.php:21903
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  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."
618
 
619
+ #: includes/class-freemius.php:22043
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
  msgid "Awesome"
625
  msgstr "Úžasný"
626
 
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Vážíme si vaší pomoci při zlepšování %s tím, že nám umožníte sledovat některá data o jeho používání."
630
 
631
+ #: includes/class-freemius.php:22061
632
  msgid "Thank you!"
633
  msgstr "Děkujeme!"
634
 
635
+ #: includes/class-freemius.php:22068
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s."
638
 
639
+ #: includes/class-freemius.php:22226
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Zkontrolujte si prosím emailovou schránku, měli byste obdržet zprávu od %s pro potvrzení změny vlastnictví. Z bezpečnostních důvodů je nutné potvrdit tuto změnu během následujících 15 minut. Pokud email nemůžete najít, zkontrolujte složku se spamem."
642
 
643
+ #: includes/class-freemius.php:22232
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení."
646
 
647
+ #: includes/class-freemius.php:22237
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s je nový vlastník účtu."
650
 
651
+ #: includes/class-freemius.php:22239
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Gratulujeme"
655
 
656
+ #: includes/class-freemius.php:22275
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
 
660
+ #: includes/class-freemius.php:22287
661
  msgid "Please provide your full name."
662
  msgstr "Zadejte prosím jméno a příjmení."
663
 
664
+ #: includes/class-freemius.php:22292
665
  msgid "Your name was successfully updated."
666
  msgstr "Vaše jméno bylo úspěšně aktualizováno."
667
 
668
+ #: includes/class-freemius.php:22353
669
  msgid "You have successfully updated your %s."
670
  msgstr "Úspěšně jste aktualizovali %s."
671
 
672
+ #: includes/class-freemius.php:22412
673
  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."
674
  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."
675
 
676
+ #: includes/class-freemius.php:22415
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
+ #: includes/class-freemius.php:22513
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
 
684
+ #: includes/class-freemius.php:22514
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Heads up"
688
 
689
+ #: includes/class-freemius.php:23090
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Dobrý den"
693
 
694
+ #: includes/class-freemius.php:23090
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma."
697
 
698
+ #: includes/class-freemius.php:23098
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "No commitment for %s days - cancel anytime!"
701
 
702
+ #: includes/class-freemius.php:23099
703
  msgid "No credit card required"
704
  msgstr "Kreditní karta není vyžadována"
705
 
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Start free trial"
710
 
711
+ #: includes/class-freemius.php:23183
712
  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!"
713
  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!"
714
 
715
+ #: includes/class-freemius.php:23192
716
  msgid "Learn more"
717
  msgstr "Přečtěte si více"
718
 
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Aktivovat licenci"
725
 
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Změnit licenci"
731
 
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Odhlásit se"
735
 
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Zúčastnit se"
741
 
742
+ #: includes/class-freemius.php:23738
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s"
745
 
746
+ #: includes/class-freemius.php:23746
747
  msgid "Activate %s features"
748
  msgstr "Aktivovat %s funkce"
749
 
750
+ #: includes/class-freemius.php:23759
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Dokončete upgrade provedením následujících kroků"
753
 
754
+ #: includes/class-freemius.php:23763
755
  msgid "Download the latest %s version"
756
  msgstr "Stáhnout nejnovější verzi %s"
757
 
758
+ #: includes/class-freemius.php:23767
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Nahrát a aktivovat stáhnutou verzi"
761
 
762
+ #: includes/class-freemius.php:23769
763
  msgid "How to upload and activate?"
764
  msgstr "Jak nahrát a aktivovat?"
765
 
766
+ #: includes/class-freemius.php:23903
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
+ #: includes/class-freemius.php:24072
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Auto installation only works for opted-in users."
773
 
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
  msgid "Invalid module ID."
778
+ msgstr "Neplatné ID modulu."
779
 
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
  msgid "Premium version already active."
782
  msgstr "Prémiová verze je již aktivní."
783
 
784
+ #: includes/class-freemius.php:24098
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "You do not have a valid license to access the premium version."
787
 
788
+ #: includes/class-freemius.php:24105
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
 
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
  msgid "Premium add-on version already installed."
794
  msgstr "Premium add-on version already installed."
795
 
796
+ #: includes/class-freemius.php:24473
797
  msgid "View paid features"
798
  msgstr "Zobrazit placené funkce"
799
 
800
+ #: includes/class-freemius.php:24795
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
+ #: includes/class-freemius.php:24796
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
+ #: includes/class-freemius.php:24802
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
+ #: includes/class-freemius.php:24806
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
+ #: includes/class-freemius.php:24807
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
+ #: includes/class-freemius.php:24826
821
  msgid "%s and its add-ons"
822
  msgstr "%s a jeho doplňky"
823
 
824
+ #: includes/class-freemius.php:24835
825
  msgid "Products"
826
  msgstr "Produkty"
827
 
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
  msgid "Yes"
830
  msgstr "Ano"
831
 
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "send me security & feature updates, educational content and offers."
835
 
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
  msgid "No"
838
  msgstr "Ne"
839
 
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
+ #: includes/class-freemius.php:24856
845
  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 :-)"
846
  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 :-)"
847
 
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
+ #: includes/class-freemius.php:25140
853
  msgid "License key is empty."
854
  msgstr "Licenční klíč je prázdný."
855
 
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
+ #: includes/class-fs-plugin-updater.php:1326
886
  msgid "Installing plugin: %s"
887
  msgstr "Instaluji plugin: %s"
888
 
889
+ #: includes/class-fs-plugin-updater.php:1367
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření."
892
 
893
+ #: includes/class-fs-plugin-updater.php:1549
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje."
896
 
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
  msgid "Install Update Now"
917
  msgstr "Nainstalovat aktualizaci"
918
 
932
  msgid "Download Latest Free Version"
933
  msgstr "Stáhněte si nejnovější bezplatnou verzi"
934
 
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
944
  msgid "Activate this add-on"
945
  msgstr "Aktivovat toto rozšíření"
946
 
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
  msgid "Activate Free Version"
949
  msgstr "Aktivovat bezplatnou verzi"
950
 
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Aktivovat"
1041
 
1042
  #: includes/fs-plugin-info-dialog.php:1167
1043
  msgid "Single Site License"
1044
+ msgstr "Licence pro jednu instalaci"
1045
 
1046
  #: includes/fs-plugin-info-dialog.php:1169
1047
  msgid "Unlimited Licenses"
1048
+ msgstr "Neomezené množství instalací"
1049
 
1050
  #: includes/fs-plugin-info-dialog.php:1171
1051
  msgid "Up to %s Sites"
1084
  msgid "Details"
1085
  msgstr "Detaily"
1086
 
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
1100
  msgid "Last Updated"
1101
  msgstr "Poslední aktualizace"
1102
 
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "Před %s"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Nainstalována nejnovější verze zdarma"
1213
 
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Snižuji vaše předplatné"
1219
 
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
1232
 
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?"
1243
 
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Aktivovat %s plán"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Automaticky se obnoví za %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Vyprší za %s"
1274
 
1275
+ #: templates/account.php:117
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Synchronizovat licence"
1279
 
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Zrušit zkušební verzi"
1283
 
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Změnit plán"
1287
 
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Vylepšit"
1292
 
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Přejít na nižší verzi"
1298
 
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Zdarma"
1305
 
1306
+ #: templates/account.php126, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Druh členství"
1312
 
1313
+ #: templates/account.php:127
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
+ #: templates/account.php:250
1318
  msgid "Free Trial"
1319
  msgstr "Zkušební verze zdarma"
1320
 
1321
+ #: templates/account.php:261
1322
  msgid "Account Details"
1323
  msgstr "Detaily účtu"
1324
 
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
+ #: templates/account.php:270
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
+ #: templates/account.php:277
1334
  msgid "Billing & Invoices"
1335
  msgstr "Fakturace a platby"
1336
 
1337
+ #: templates/account.php:288
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
 
1341
+ #: templates/account.php:290
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
 
1345
+ #: templates/account.php:293
1346
  msgid "Delete Account"
1347
  msgstr "Smazat účet"
1348
 
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Deaktivovat licenci"
1353
 
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Opravdu chcete pokračovat?"
1357
 
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Zrušit předplatné"
1361
 
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Synchronizovat"
1366
 
1367
+ #: templates/account.php372, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Jméno"
1370
 
1371
+ #: templates/account.php378, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "ID uživatele"
1378
 
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
+ #: templates/account.php:410
1388
  msgid "Site ID"
1389
  msgstr "ID stránky"
1390
 
1391
+ #: templates/account.php:413
1392
  msgid "No ID"
1393
  msgstr "Žádné ID"
1394
 
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Veřejný klíč"
1400
 
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Tajný klíč"
1405
 
1406
+ #: templates/account.php:427
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Tajný klíč chybí"
1410
 
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Zkouška"
1415
 
1416
+ #: templates/account.php481, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Licenční klíč"
1420
 
1421
+ #: templates/account.php:512
1422
  msgid "Join the Beta program"
1423
  msgstr "Odebírat betaverze"
1424
 
1425
+ #: templates/account.php:518
1426
  msgid "not verified"
1427
  msgstr "není ověřeno"
1428
 
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Vypršelo"
1432
 
1433
+ #: templates/account.php:587
1434
  msgid "Premium version"
1435
  msgstr "Prémiová verze"
1436
 
1437
+ #: templates/account.php:589
1438
  msgid "Free version"
1439
  msgstr "Verze zdarma"
1440
 
1441
+ #: templates/account.php:601
1442
  msgid "Verify Email"
1443
  msgstr "Ověřit e-mail"
1444
 
1445
+ #: templates/account.php:615
1446
  msgid "Download %s Version"
1447
  msgstr "Stáhnout verzi %s"
1448
 
1449
+ #: templates/account.php:631
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
+ #: templates/account.php649, templates/account.php892,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Zobrazit"
1459
 
1460
+ #: templates/account.php:664
1461
  msgid "What is your %s?"
1462
  msgstr "Jaké je vaše \"%s\"?"
1463
 
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Upravit"
1468
 
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
+ #: templates/account.php:700
1474
  msgid "Sites"
1475
  msgstr "Weby"
1476
 
1477
+ #: templates/account.php:713
1478
  msgid "Search by address"
1479
  msgstr "Hledat podle adresy"
1480
 
1481
+ #: templates/account.php722, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Adresa"
1484
 
1485
+ #: templates/account.php:723
1486
  msgid "License"
1487
  msgstr "Licence"
1488
 
1489
+ #: templates/account.php:724
1490
  msgid "Plan"
1491
  msgstr "Druh členství"
1492
 
1493
+ #: templates/account.php:757
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licence"
1497
 
1498
+ #: templates/account.php:886
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Skrýt"
1502
 
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Processing"
1506
 
1507
+ #: templates/account.php:911
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
+ #: templates/account.php:969
1512
  msgid "Cancelling %s"
1513
  msgstr "Ruším %s"
1514
 
1515
+ #: templates/account.php969, templates/account.php986,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "zkušební"
1520
 
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Ruším %s..."
1524
 
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "předplatné"
1529
 
1530
+ #: templates/account.php:1001
1531
  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?"
1532
  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?"
1533
 
1534
+ #: templates/account.php:1075
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
+ #: templates/account.php:1076
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Aktivovat licenci"
1619
 
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
 
1624
+ #: templates/connect.php:191
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace."
1627
 
1628
+ #: templates/connect.php:192
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace."
1631
 
1632
+ #: templates/connect.php:198
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1635
 
1636
+ #: templates/connect.php:199
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1639
 
1640
+ #: templates/connect.php:233
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů."
1643
 
1644
+ #: templates/connect.php:236
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
+ #: templates/connect.php:238
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "Pokud chcete použít %s na těchto stránkách, zadejte platný licenční klíč a klikněte na tlačítko aktivovat."
1651
 
1652
+ #: templates/connect.php:240
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
+ #: templates/connect.php:245
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
+ #: templates/connect.php:247
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Licenční klíč"
1668
 
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Nemůžete najít svůj licenční klíč?"
1672
 
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Přeskočit"
1678
 
1679
+ #: templates/connect.php:321
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
+ #: templates/connect.php:321
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
  msgid "Your Profile Overview"
1693
  msgstr "Informace o vašem profilu"
1694
 
1695
+ #: templates/connect.php:363
1696
  msgid "Name and email address"
1697
  msgstr "Jméno a emailová adresa"
1698
 
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
  msgid "Your Site Overview"
1705
  msgstr "Informace o vaší stránce"
1706
 
1707
+ #: templates/connect.php:372
1708
  msgid "Site URL, WP version, PHP info"
1709
  msgstr "Site URL, WP version, PHP info"
1710
 
1712
  msgid "Admin Notices"
1713
  msgstr "Zobrazení oznámení v adminu"
1714
 
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
  msgid "Updates, announcements, marketing, no spam"
1717
  msgstr "Aktualizace, oznámení, marketing, žádný spam"
1718
 
 
 
 
 
1719
  #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
 
1731
+ #: templates/connect.php:397
1732
  msgid "Newsletter"
1733
  msgstr "Newsletter"
1734
 
1735
+ #: templates/connect.php:405
1736
  msgid "Plugins & Themes"
1737
  msgstr "Plugins & Themes"
1738
 
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
  msgid "Title, slug, version, and is active"
1749
  msgstr "Title, slug, version, and is active"
1750
 
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
 
1755
  #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
  msgid "What permissions are being granted?"
1765
  msgstr "Jaká oprávnění budou udělena?"
1766
 
1767
+ #: templates/connect.php:457
1768
  msgid "Don't have a license key?"
1769
  msgstr "Nemáte licenční klíč?"
1770
 
1771
+ #: templates/connect.php:460
1772
  msgid "Have a license key?"
1773
  msgstr "Máte licenční klíč?"
1774
 
1775
+ #: templates/connect.php:468
1776
  msgid "Privacy Policy"
1777
  msgstr "Zásady ochrany osobních údajů"
1778
 
1779
+ #: templates/connect.php:470
1780
  msgid "License Agreement"
1781
  msgstr "Licenční smlouva"
1782
 
1783
+ #: templates/connect.php:470
1784
  msgid "Terms of Service"
1785
  msgstr "Podmínky služby"
1786
 
1787
+ #: templates/connect.php:866
1788
  msgctxt "as in the process of sending an email"
1789
  msgid "Sending email"
1790
  msgstr "Probíhá odesílání emailů"
1791
 
1792
+ #: templates/connect.php:867
1793
  msgctxt "as activating plugin"
1794
  msgid "Activating"
1795
  msgstr "Probíhá aktivace"
2392
  msgid "Update License"
2393
  msgstr "Aktualizovat licenci"
2394
 
2395
+ #: templates/forms/license-activation.php:41
2396
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2397
+ msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
  msgid "Associate with the license owner's account."
2401
  msgstr "Associate with the license owner's account."
2402
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Joachim Jensen, 2019-2020
@@ -9,7 +9,7 @@ msgstr ""
9
  "Project-Id-Version: WordPress SDK\n"
10
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
  "POT-Creation-Date: \n"
12
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
13
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
  "Language: da_DK\n"
15
  "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
@@ -23,835 +23,835 @@ msgstr ""
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
- #: includes/class-freemius.php1912, templates/account.php:910
27
  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."
28
  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."
29
 
30
- #: includes/class-freemius.php:1919
31
  msgid "Would you like to proceed with the update?"
32
  msgstr "Vil du fortsætte med opdateringen?"
33
 
34
- #: includes/class-freemius.php:2131
35
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
37
 
38
- #: includes/class-freemius.php:2133
39
  msgid "Error"
40
  msgstr "Fejl"
41
 
42
- #: includes/class-freemius.php:2533
43
  msgid "I found a better %s"
44
  msgstr "Jeg fandt et bedre %s"
45
 
46
- #: includes/class-freemius.php:2535
47
  msgid "What's the %s's name?"
48
  msgstr "Hvad er navnet på %s?"
49
 
50
- #: includes/class-freemius.php:2541
51
  msgid "It's a temporary %s. I'm just debugging an issue."
52
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
53
 
54
- #: includes/class-freemius.php:2543
55
  msgid "Deactivation"
56
  msgstr "Deaktivering"
57
 
58
- #: includes/class-freemius.php:2544
59
  msgid "Theme Switch"
60
  msgstr "Temaskift"
61
 
62
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "Andet"
66
 
67
- #: includes/class-freemius.php:2561
68
  msgid "I no longer need the %s"
69
  msgstr "Jeg har ikke længere brug for %s"
70
 
71
- #: includes/class-freemius.php:2568
72
  msgid "I only needed the %s for a short period"
73
  msgstr "Jeg behøvede kun %s i en kort periode"
74
 
75
- #: includes/class-freemius.php:2574
76
  msgid "The %s broke my site"
77
  msgstr "%s ødelagde min webside"
78
 
79
- #: includes/class-freemius.php:2581
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s stoppede pludseligt med at virke"
82
 
83
- #: includes/class-freemius.php:2591
84
  msgid "I can't pay for it anymore"
85
  msgstr "Jeg kan ikke længere betale for det"
86
 
87
- #: includes/class-freemius.php:2593
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr "Hvilken pris ville du foretrække at betale?"
90
 
91
- #: includes/class-freemius.php:2599
92
  msgid "I don't like to share my information with you"
93
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
94
 
95
- #: includes/class-freemius.php:2620
96
  msgid "The %s didn't work"
97
  msgstr "%s virkede ikke"
98
 
99
- #: includes/class-freemius.php:2630
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
102
 
103
- #: includes/class-freemius.php:2638
104
  msgid "The %s is great, but I need specific feature that you don't support"
105
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
106
 
107
- #: includes/class-freemius.php:2640
108
  msgid "What feature?"
109
  msgstr "Hvilken feature?"
110
 
111
- #: includes/class-freemius.php:2644
112
  msgid "The %s is not working"
113
  msgstr "%s virker ikke"
114
 
115
- #: includes/class-freemius.php:2646
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende brugere...."
118
 
119
- #: includes/class-freemius.php:2650
120
  msgid "It's not what I was looking for"
121
  msgstr "Det er ikke, hvad jeg søgte"
122
 
123
- #: includes/class-freemius.php:2652
124
  msgid "What you've been looking for?"
125
  msgstr "Hvad ledte du efter?"
126
 
127
- #: includes/class-freemius.php:2656
128
  msgid "The %s didn't work as expected"
129
  msgstr "%s virkede ikke som forventet"
130
 
131
- #: includes/class-freemius.php:2658
132
  msgid "What did you expect?"
133
  msgstr "Hvad forventede du?"
134
 
135
- #: includes/class-freemius.php3513, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius Debug"
138
 
139
- #: includes/class-freemius.php:4265
140
  msgid "I don't know what is cURL or how to install it, help me!"
141
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
142
 
143
- #: includes/class-freemius.php:4267
144
  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."
145
  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."
146
 
147
- #: includes/class-freemius.php:4274
148
  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."
149
  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."
150
 
151
- #: includes/class-freemius.php:4379
152
  msgid "Yes - do your thing"
153
  msgstr "Ja - fortsæt bare"
154
 
155
- #: includes/class-freemius.php:4384
156
  msgid "No - just deactivate"
157
  msgstr "Nej - bare deaktiver"
158
 
159
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
160
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
161
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
162
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
163
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
164
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
165
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
166
- #: includes/class-freemius.php22274, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "Ups"
170
 
171
- #: includes/class-freemius.php:4498
172
  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."
173
  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."
174
 
175
- #: includes/class-freemius.php:4920
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s virker ikke uden %s."
179
 
180
- #: includes/class-freemius.php:4921
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s virker ikke uden pluginnet."
184
 
185
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
186
- #: includes/class-freemius.php:21150
187
  msgid "Unexpected API error. Please contact the %s's author with the following error."
188
  msgstr "Uventet API-fejl. Kontakt %s's forfatter med følgende fejl."
189
 
190
- #: includes/class-freemius.php:5848
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "Premium-versionen af %s blev aktiveret."
193
 
194
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "W00t"
198
 
199
- #: includes/class-freemius.php:5875
200
  msgid "You have a %s license."
201
  msgstr "Du har en %s licens."
202
 
203
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
204
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
205
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
206
- #: includes/class-freemius.php:20900
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "Yee-haw"
210
 
211
- #: includes/class-freemius.php:6165
212
  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."
213
  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."
214
 
215
- #: includes/class-freemius.php:6169
216
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
218
 
219
- #: includes/class-freemius.php6178, templates/add-ons.php186,
220
  #: templates/account/partials/addon.php:381
221
  msgid "More information about %s"
222
  msgstr "Mere information om %s"
223
 
224
- #: includes/class-freemius.php:6179
225
  msgid "Purchase License"
226
  msgstr "Køb licens"
227
 
228
- #: includes/class-freemius.php7118, templates/connect.php:171
229
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
231
 
232
- #: includes/class-freemius.php:7122
233
  msgid "start the trial"
234
  msgstr "start prøveperioden"
235
 
236
- #: includes/class-freemius.php7123, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "færdiggør installeringen"
239
 
240
- #: includes/class-freemius.php:7241
241
  msgid "You are just one step away - %s"
242
  msgstr "Du mangler kun ét skridt - %s"
243
 
244
- #: includes/class-freemius.php:7244
245
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
  msgid "Complete \"%s\" Activation Now"
247
  msgstr "Færdiggør aktivering af \"%s\" nu"
248
 
249
- #: includes/class-freemius.php:7322
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
252
 
253
- #: includes/class-freemius.php:7326
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Accepter for at gøre \"%s\" bedre!"
256
 
257
- #: includes/class-freemius.php:7761
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "Opgraderingen af %s blev fuldendt."
260
 
261
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
262
- #: includes/class-fs-plugin-updater.php1294,
263
- #: includes/class-fs-plugin-updater.php1301,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "Tilføjelse"
267
 
268
- #: includes/class-freemius.php10245, templates/account.php392,
269
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "Plugin"
272
 
273
- #: includes/class-freemius.php10246, templates/account.php393,
274
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
275
  #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "Tema"
278
 
279
- #: includes/class-freemius.php:13176
280
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
 
283
- #: includes/class-freemius.php:13190
284
  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."
285
  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."
286
 
287
- #: includes/class-freemius.php:13195
288
  msgid "User Dashboard"
289
  msgstr "User Dashboard"
290
 
291
- #: includes/class-freemius.php:13196
292
  msgid "revert it now"
293
  msgstr "revert it now"
294
 
295
- #: includes/class-freemius.php:13255
296
  msgid "An unknown error has occurred while trying to set the user's beta mode."
297
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
 
299
- #: includes/class-freemius.php:13328
300
  msgid "Invalid new user ID or email address."
301
  msgstr "Invalid new user ID or email address."
302
 
303
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
304
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
  msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail."
306
 
307
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
308
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
310
 
311
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
312
  msgid "Change Ownership"
313
  msgstr "Skift ejerskab"
314
 
315
- #: includes/class-freemius.php:13942
316
  msgid "Invalid site details collection."
317
  msgstr "Invalid site details collection."
318
 
319
- #: includes/class-freemius.php:14062
320
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
322
 
323
- #: includes/class-freemius.php:14064
324
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
326
 
327
- #: includes/class-freemius.php:14338
328
  msgid "Account is pending activation."
329
  msgstr "Konto afventer aktivering."
330
 
331
- #: includes/class-freemius.php14450,
332
  #: templates/forms/premium-versions-upgrade-handler.php:47
333
  msgid "Buy a license now"
334
  msgstr "Køb en licens nu"
335
 
336
- #: includes/class-freemius.php14462,
337
  #: templates/forms/premium-versions-upgrade-handler.php:46
338
  msgid "Renew your license now"
339
  msgstr "Forny din licens nu"
340
 
341
- #: includes/class-freemius.php:14466
342
  msgid "%s to access version %s security & feature updates, and support."
343
  msgstr "%s to access version %s security & feature updates, and support."
344
 
345
- #: includes/class-freemius.php:16907
346
  msgid "%s activation was successfully completed."
347
  msgstr "Aktivering af %s blev gennemført."
348
 
349
- #: includes/class-freemius.php:16921
350
  msgid "Your account was successfully activated with the %s plan."
351
  msgstr "Din konto blev aktiveret med planen %s."
352
 
353
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
354
  msgid "Your trial has been successfully started."
355
  msgstr "Din prøveperiode er begyndt."
356
 
357
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
358
- #: includes/class-freemius.php:17804
359
  msgid "Couldn't activate %s."
360
  msgstr "Kunne ikke aktivere %s."
361
 
362
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
363
- #: includes/class-freemius.php:17805
364
  msgid "Please contact us with the following message:"
365
  msgstr "Kontakt os venligst med følgende besked:"
366
 
367
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
368
  msgid "An unknown error has occurred."
369
  msgstr "Der skete en ukendt fejl."
370
 
371
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
372
  msgid "Upgrade"
373
  msgstr "Opgrader"
374
 
375
- #: includes/class-freemius.php:18168
376
  msgid "Start Trial"
377
  msgstr "Start prøveperiode"
378
 
379
- #: includes/class-freemius.php:18170
380
  msgid "Pricing"
381
  msgstr "Priser"
382
 
383
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
384
  msgid "Affiliation"
385
  msgstr "Affiliation"
386
 
387
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
388
- #: templates/account.php240, templates/debug.php:324
389
  msgid "Account"
390
  msgstr "Konto"
391
 
392
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
393
  #: includes/customizer/class-fs-customizer-support-section.php:60
394
  msgid "Contact Us"
395
  msgstr "Kontakt os"
396
 
397
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
398
- #: includes/class-freemius.php23324, templates/account.php119,
399
  #: templates/account/partials/addon.php:44
400
  msgid "Add-Ons"
401
  msgstr "Tilføjelser"
402
 
403
- #: includes/class-freemius.php:18345
404
  msgctxt "ASCII arrow left icon"
405
  msgid "&#x2190;"
406
  msgstr "&#x2190;"
407
 
408
- #: includes/class-freemius.php:18345
409
  msgctxt "ASCII arrow right icon"
410
  msgid "&#x27a4;"
411
  msgstr "&#x27a4;"
412
 
413
- #: includes/class-freemius.php18347, templates/pricing.php:109
414
  msgctxt "noun"
415
  msgid "Pricing"
416
  msgstr "Priser"
417
 
418
- #: includes/class-freemius.php18560,
419
  #: includes/customizer/class-fs-customizer-support-section.php:67
420
  msgid "Support Forum"
421
  msgstr "Supportforum"
422
 
423
- #: includes/class-freemius.php:19534
424
  msgid "Your email has been successfully verified - you are AWESOME!"
425
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
426
 
427
- #: includes/class-freemius.php:19535
428
  msgctxt "a positive response"
429
  msgid "Right on"
430
  msgstr "Sådan"
431
 
432
- #: includes/class-freemius.php:20041
433
  msgid "seems like the key you entered doesn't match our records."
434
  msgstr "seems like the key you entered doesn't match our records."
435
 
436
- #: includes/class-freemius.php:20065
437
  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."
438
  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."
439
 
440
- #: includes/class-freemius.php:20300
441
  msgid "Your %s Add-on plan was successfully upgraded."
442
  msgstr "Your %s Add-on plan was successfully upgraded."
443
 
444
- #: includes/class-freemius.php:20302
445
  msgid "%s Add-on was successfully purchased."
446
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
447
 
448
- #: includes/class-freemius.php:20305
449
  msgid "Download the latest version"
450
  msgstr "Download den seneste version"
451
 
452
- #: includes/class-freemius.php:20391
453
  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"
454
  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"
455
 
456
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
457
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
458
  msgid "Error received from the server:"
459
  msgstr "Fejl modtager fra serveren:"
460
 
461
- #: includes/class-freemius.php:20407
462
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
464
 
465
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
466
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
467
  msgctxt ""
468
  msgid "Hmm"
469
  msgstr "Hmm"
470
 
471
- #: includes/class-freemius.php:20634
472
  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
  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."
474
 
475
- #: includes/class-freemius.php20635, templates/account.php121,
476
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
  msgctxt "trial period"
478
  msgid "Trial"
479
  msgstr "Prøveperiode"
480
 
481
- #: includes/class-freemius.php:20640
482
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
484
 
485
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
486
  msgid "Please contact us here"
487
  msgstr "Kontakt os her"
488
 
489
- #: includes/class-freemius.php:20655
490
  msgid "Your plan was successfully activated."
491
  msgstr "Din plan er blevet aktiveret."
492
 
493
- #: includes/class-freemius.php:20656
494
  msgid "Your plan was successfully upgraded."
495
  msgstr "Din plan er blevet opgraderet."
496
 
497
- #: includes/class-freemius.php:20673
498
  msgid "Your plan was successfully changed to %s."
499
  msgstr "Din plan er blevet ændret til %s."
500
 
501
- #: includes/class-freemius.php:20689
502
  msgid "Your license has expired. You can still continue using the free %s forever."
503
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
504
 
505
- #: includes/class-freemius.php:20691
506
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
508
 
509
- #: includes/class-freemius.php:20699
510
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
512
 
513
- #: includes/class-freemius.php:20712
514
  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."
515
  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."
516
 
517
- #: includes/class-freemius.php:20738
518
  msgid "Your free trial has expired. You can still continue using all our free features."
519
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
520
 
521
- #: includes/class-freemius.php:20740
522
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
524
 
525
- #: includes/class-freemius.php:20855
526
  msgid "It looks like the license could not be activated."
527
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
528
 
529
- #: includes/class-freemius.php:20897
530
  msgid "Your license was successfully activated."
531
  msgstr "Din licens er blevet aktiveret."
532
 
533
- #: includes/class-freemius.php:20923
534
  msgid "It looks like your site currently doesn't have an active license."
535
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
536
 
537
- #: includes/class-freemius.php:20947
538
  msgid "It looks like the license deactivation failed."
539
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
540
 
541
- #: includes/class-freemius.php:20976
542
  msgid "Your %s license was successfully deactivated."
543
  msgstr "Your %s license was successfully deactivated."
544
 
545
- #: includes/class-freemius.php:20977
546
  msgid "Your license was successfully deactivated, you are back to the %s plan."
547
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
548
 
549
- #: includes/class-freemius.php:20980
550
  msgid "O.K"
551
  msgstr "O.K"
552
 
553
- #: includes/class-freemius.php:21033
554
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
 
557
- #: includes/class-freemius.php:21042
558
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
 
561
- #: includes/class-freemius.php:21084
562
  msgid "You are already running the %s in a trial mode."
563
  msgstr "Du benytter allerede %s under en prøveperiode."
564
 
565
- #: includes/class-freemius.php:21095
566
  msgid "You already utilized a trial before."
567
  msgstr "Du har allerede brugt din prøveperiode."
568
 
569
- #: includes/class-freemius.php:21109
570
  msgid "Plan %s do not exist, therefore, can't start a trial."
571
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
572
 
573
- #: includes/class-freemius.php:21120
574
  msgid "Plan %s does not support a trial period."
575
  msgstr "Plan %s understøtter ikke en prøveperiode."
576
 
577
- #: includes/class-freemius.php:21131
578
  msgid "None of the %s's plans supports a trial period."
579
  msgstr "Ingen af %s's planer understøtter prøveperiode."
580
 
581
- #: includes/class-freemius.php:21181
582
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
584
 
585
- #: includes/class-freemius.php:21217
586
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
588
 
589
- #: includes/class-freemius.php:21236
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
592
 
593
- #: includes/class-freemius.php:21552
594
  msgid "Version %s was released."
595
  msgstr "Version %s er blevet udgivet."
596
 
597
- #: includes/class-freemius.php:21552
598
  msgid "Please download %s."
599
  msgstr "Download venligst %s."
600
 
601
- #: includes/class-freemius.php:21559
602
  msgid "the latest %s version here"
603
  msgstr "den seneste version af %s her"
604
 
605
- #: includes/class-freemius.php:21564
606
  msgid "New"
607
  msgstr "Ny"
608
 
609
- #: includes/class-freemius.php:21569
610
  msgid "Seems like you got the latest release."
611
  msgstr "Det ser ud til, at du har den seneste udgivelse."
612
 
613
- #: includes/class-freemius.php:21570
614
  msgid "You are all good!"
615
  msgstr "Det var det!"
616
 
617
- #: includes/class-freemius.php:21873
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
620
 
621
- #: includes/class-freemius.php:22013
622
  msgid "Site successfully opted in."
623
  msgstr "Websted er tilmeldt."
624
 
625
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
626
  msgid "Awesome"
627
  msgstr "Sejt"
628
 
629
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
632
 
633
- #: includes/class-freemius.php:22031
634
  msgid "Thank you!"
635
  msgstr "Mange tak!"
636
 
637
- #: includes/class-freemius.php:22038
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
640
 
641
- #: includes/class-freemius.php:22196
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
644
 
645
- #: includes/class-freemius.php:22202
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse."
648
 
649
- #: includes/class-freemius.php:22207
650
  msgid "%s is the new owner of the account."
651
  msgstr "%s er den nye ejer af kontoen."
652
 
653
- #: includes/class-freemius.php:22209
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "Tillykke"
657
 
658
- #: includes/class-freemius.php:22245
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
661
 
662
- #: includes/class-freemius.php:22257
663
  msgid "Please provide your full name."
664
  msgstr "Indtast venligst dit fulde navn."
665
 
666
- #: includes/class-freemius.php:22262
667
  msgid "Your name was successfully updated."
668
  msgstr "Dit navn er blevet opdateret."
669
 
670
- #: includes/class-freemius.php:22323
671
  msgid "You have successfully updated your %s."
672
  msgstr "Opdatering af %s blev gennemført."
673
 
674
- #: includes/class-freemius.php:22382
675
  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."
676
  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."
677
 
678
- #: includes/class-freemius.php:22385
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
- #: includes/class-freemius.php:22483
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
685
 
686
- #: includes/class-freemius.php:22484
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "Se her"
690
 
691
- #: includes/class-freemius.php:23060
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "Hey"
695
 
696
- #: includes/class-freemius.php:23060
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode."
699
 
700
- #: includes/class-freemius.php:23068
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
703
 
704
- #: includes/class-freemius.php:23069
705
  msgid "No credit card required"
706
  msgstr "Betalingskort ikke påkrævet"
707
 
708
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "Start gratis prøveperiode"
712
 
713
- #: includes/class-freemius.php:23153
714
  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!"
715
  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!"
716
 
717
- #: includes/class-freemius.php:23162
718
  msgid "Learn more"
719
  msgstr "Læs mere"
720
 
721
- #: includes/class-freemius.php23348, templates/account.php556,
722
- #: templates/account.php706, templates/connect.php179,
723
- #: templates/connect.php456, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "Aktiver licens"
727
 
728
- #: includes/class-freemius.php23349, templates/account.php650,
729
- #: templates/account.php705, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "Skift licens"
733
 
734
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "Frameld"
737
 
738
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "Tilmeld"
743
 
744
- #: includes/class-freemius.php:23700
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
 
748
- #: includes/class-freemius.php:23708
749
  msgid "Activate %s features"
750
  msgstr "Aktiver funktioner i %s"
751
 
752
- #: includes/class-freemius.php:23721
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
755
 
756
- #: includes/class-freemius.php:23725
757
  msgid "Download the latest %s version"
758
  msgstr "Download den seneste version af %s"
759
 
760
- #: includes/class-freemius.php:23729
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "Upload og aktiver den downloadede version"
763
 
764
- #: includes/class-freemius.php:23731
765
  msgid "How to upload and activate?"
766
  msgstr "Upload og aktivering, hvordan?"
767
 
768
- #: includes/class-freemius.php:23865
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
771
 
772
- #: includes/class-freemius.php:24034
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
775
 
776
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
777
- #: includes/class-fs-plugin-updater.php1273,
778
- #: includes/class-fs-plugin-updater.php:1287
779
  msgid "Invalid module ID."
780
  msgstr "Ugyldigt modul-ID."
781
 
782
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
783
  msgid "Premium version already active."
784
  msgstr "Premium version allerede aktiv."
785
 
786
- #: includes/class-freemius.php:24060
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
789
 
790
- #: includes/class-freemius.php:24067
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
793
 
794
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
795
  msgid "Premium add-on version already installed."
796
  msgstr "Premium tilføjelse er allerede installeret."
797
 
798
- #: includes/class-freemius.php:24435
799
  msgid "View paid features"
800
  msgstr "Vis betalte features"
801
 
802
- #: includes/class-freemius.php:24757
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!"
805
 
806
- #: includes/class-freemius.php:24758
807
  msgid "Thank you so much for using %s!"
808
  msgstr "Tak fordi du benytter %s!"
809
 
810
- #: includes/class-freemius.php:24764
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
813
 
814
- #: includes/class-freemius.php:24768
815
  msgid "Thank you so much for using our products!"
816
  msgstr "Mange tak for at benytte vores produkter!"
817
 
818
- #: includes/class-freemius.php:24769
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
821
 
822
- #: includes/class-freemius.php:24788
823
  msgid "%s and its add-ons"
824
  msgstr "%s og tilføjelser"
825
 
826
- #: includes/class-freemius.php:24797
827
  msgid "Products"
828
  msgstr "Produkter"
829
 
830
- #: includes/class-freemius.php24804, templates/connect.php:280
831
  msgid "Yes"
832
  msgstr "Ja"
833
 
834
- #: includes/class-freemius.php24805, templates/connect.php:281
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
837
 
838
- #: includes/class-freemius.php24806, templates/connect.php:286
839
  msgid "No"
840
  msgstr "Nej"
841
 
842
- #: includes/class-freemius.php24808, templates/connect.php:288
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
845
 
846
- #: includes/class-freemius.php:24818
847
  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 :-)"
848
  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 :-)"
849
 
850
- #: includes/class-freemius.php24820, templates/connect.php:295
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
853
 
854
- #: includes/class-freemius.php:25102
855
  msgid "License key is empty."
856
  msgstr "Licensnøglen er tom."
857
 
@@ -884,15 +884,15 @@ msgstr "ny version"
884
  msgid "Important Upgrade Notice:"
885
  msgstr "Vigtig meddelelse til opgradering:"
886
 
887
- #: includes/class-fs-plugin-updater.php:1338
888
  msgid "Installing plugin: %s"
889
  msgstr "Installerer plugin: %s"
890
 
891
- #: includes/class-fs-plugin-updater.php:1379
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
894
 
895
- #: includes/class-fs-plugin-updater.php:1561
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
898
 
@@ -914,7 +914,7 @@ msgstr "Start mine gratis %s"
914
  msgid "Install Free Version Update Now"
915
  msgstr "Installer opdatering til gratis version nu"
916
 
917
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
918
  msgid "Install Update Now"
919
  msgstr "Installer opdatering nu"
920
 
@@ -934,7 +934,7 @@ msgctxt "as download latest version"
934
  msgid "Download Latest Free Version"
935
  msgstr "Download seneste gratis version"
936
 
937
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
@@ -946,11 +946,11 @@ msgstr "Download seneste"
946
  msgid "Activate this add-on"
947
  msgstr "Aktiver denne tilføjelse"
948
 
949
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
950
  msgid "Activate Free Version"
951
  msgstr "Aktiver gratis version"
952
 
953
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "Aktiver"
@@ -1086,7 +1086,7 @@ msgstr "Efter dine gratis %s er prisen kun %s"
1086
  msgid "Details"
1087
  msgstr "Detaljer"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
@@ -1102,7 +1102,7 @@ msgstr "Forfatter"
1102
  msgid "Last Updated"
1103
  msgstr "Senest opdateret"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s siden"
@@ -1213,13 +1213,13 @@ msgstr "Seneste version installeret"
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "Seneste gratis version installeret"
1215
 
1216
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "Nedgraderer din plan"
1221
 
1222
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
@@ -1227,317 +1227,317 @@ msgstr "Annullerer abonnementet"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
 
1235
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  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."
1240
 
1241
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1245
 
1246
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
 
1252
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
- #: templates/account.php109,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "Aktiver %s plan"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
- #: templates/account.php112, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "Auto-fornyer om %s"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
- #: templates/account.php114, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "Udløber om %s"
1276
 
1277
- #: templates/account.php:115
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "Synkroniser licens"
1281
 
1282
- #: templates/account.php116, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "Annuller prøveperiode"
1285
 
1286
- #: templates/account.php117, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "Skift plan"
1289
 
1290
- #: templates/account.php118, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "Opgrader"
1294
 
1295
- #: templates/account.php120, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "Nedgrader"
1300
 
1301
- #: templates/account.php122, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "Gratis"
1307
 
1308
- #: templates/account.php124, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "Plan"
1314
 
1315
- #: templates/account.php:125
1316
  msgid "Bundle Plan"
1317
  msgstr "Bundle Plan"
1318
 
1319
- #: templates/account.php:248
1320
  msgid "Free Trial"
1321
  msgstr "Gratis prøveperiode"
1322
 
1323
- #: templates/account.php:259
1324
  msgid "Account Details"
1325
  msgstr "Kontodetaljer"
1326
 
1327
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
- #: templates/account.php:268
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
- #: templates/account.php:275
1336
  msgid "Billing & Invoices"
1337
  msgstr "Fakturering"
1338
 
1339
- #: templates/account.php:286
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1342
 
1343
- #: templates/account.php:288
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1346
 
1347
- #: templates/account.php:291
1348
  msgid "Delete Account"
1349
  msgstr "Slet konto"
1350
 
1351
- #: templates/account.php303, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "Deaktiver licens"
1355
 
1356
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "Er du sikker på, du vil fortsætte?"
1359
 
1360
- #: templates/account.php326, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "Annuller abonnement"
1363
 
1364
- #: templates/account.php355, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "Synkroniser"
1368
 
1369
- #: templates/account.php370, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "Navn"
1372
 
1373
- #: templates/account.php376, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "E-mail"
1376
 
1377
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "Bruger-ID"
1380
 
1381
- #: templates/account.php401, templates/account.php719,
1382
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ID"
1388
 
1389
- #: templates/account.php:408
1390
  msgid "Site ID"
1391
  msgstr "Websteds-ID"
1392
 
1393
- #: templates/account.php:411
1394
  msgid "No ID"
1395
  msgstr "Intet ID"
1396
 
1397
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "Offentlig nøgle"
1402
 
1403
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "Privat nøgle"
1407
 
1408
- #: templates/account.php:425
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "Ingen privat nøgle"
1412
 
1413
- #: templates/account.php452, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "Prøveperiode"
1417
 
1418
- #: templates/account.php479, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "Licensnøgle"
1422
 
1423
- #: templates/account.php:510
1424
  msgid "Join the Beta program"
1425
  msgstr "Deltag i Beta-programmet"
1426
 
1427
- #: templates/account.php:516
1428
  msgid "not verified"
1429
  msgstr "ikke verificeret"
1430
 
1431
- #: templates/account.php525, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "Udløbet"
1434
 
1435
- #: templates/account.php:585
1436
  msgid "Premium version"
1437
  msgstr "Premium version"
1438
 
1439
- #: templates/account.php:587
1440
  msgid "Free version"
1441
  msgstr "Gratis version"
1442
 
1443
- #: templates/account.php:599
1444
  msgid "Verify Email"
1445
  msgstr "Verificer e-mail"
1446
 
1447
- #: templates/account.php:613
1448
  msgid "Download %s Version"
1449
  msgstr "Download 1%s version"
1450
 
1451
- #: templates/account.php:629
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
- #: templates/account.php647, templates/account.php890,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "Vis"
1461
 
1462
- #: templates/account.php:662
1463
  msgid "What is your %s?"
1464
  msgstr "Angiv venligst %s?"
1465
 
1466
- #: templates/account.php670, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "Rediger"
1470
 
1471
- #: templates/account.php674, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
- #: templates/account.php:698
1476
  msgid "Sites"
1477
  msgstr "Websteder"
1478
 
1479
- #: templates/account.php:711
1480
  msgid "Search by address"
1481
  msgstr "Søg efter adresse"
1482
 
1483
- #: templates/account.php720, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "Adresse"
1486
 
1487
- #: templates/account.php:721
1488
  msgid "License"
1489
  msgstr "Licens"
1490
 
1491
- #: templates/account.php:722
1492
  msgid "Plan"
1493
  msgstr "Plan"
1494
 
1495
- #: templates/account.php:755
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "Licens"
1499
 
1500
- #: templates/account.php:884
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "Skjul"
1504
 
1505
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "Arbejder"
1508
 
1509
- #: templates/account.php:909
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "Get updates for bleeding edge Beta versions of %s."
1512
 
1513
- #: templates/account.php:967
1514
  msgid "Cancelling %s"
1515
  msgstr "Annullerer %s"
1516
 
1517
- #: templates/account.php967, templates/account.php984,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "prøveperiode"
1522
 
1523
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "Annullerer %s..."
1526
 
1527
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "abonnement"
1531
 
1532
- #: templates/account.php:999
1533
  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?"
1534
  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?"
1535
 
1536
- #: templates/account.php:1073
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
- #: templates/account.php:1074
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
@@ -1563,7 +1563,7 @@ msgctxt "installed add-on"
1563
  msgid "Installed"
1564
  msgstr "Installeret"
1565
 
1566
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
@@ -1619,86 +1619,94 @@ msgstr "Tak %s!"
1619
  msgid "Agree & Activate License"
1620
  msgstr "Accepter & aktiver licens"
1621
 
1622
- #: templates/connect.php:189
1623
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1624
- msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
1625
 
1626
- #: templates/connect.php:196
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. "
1629
 
1630
- #: templates/connect.php:197
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %%4$s."
1633
 
1634
- #: templates/connect.php:203
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1637
 
1638
- #: templates/connect.php:204
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1641
 
1642
- #: templates/connect.php:238
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "We're excited to introduce the Freemius network-level integration."
1645
 
1646
- #: templates/connect.php:241
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1649
 
1650
- #: templates/connect.php:243
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1653
 
1654
- #: templates/connect.php:245
1655
  msgid "%s's paid features"
1656
  msgstr "%s's betalte features"
1657
 
1658
- #: templates/connect.php:250
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1661
 
1662
- #: templates/connect.php:252
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1665
 
1666
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "Licensnøgle"
1670
 
1671
- #: templates/connect.php264, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "Kan du ikke finde din licensnøgle?"
1674
 
1675
- #: templates/connect.php323, templates/connect.php695,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "Spring over"
1680
 
1681
- #: templates/connect.php:326
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "Uddeleger til webstedsadministratorer"
1684
 
1685
- #: templates/connect.php:326
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1688
 
1689
- #: templates/connect.php:364
 
 
 
 
1690
  msgid "Your Profile Overview"
1691
  msgstr "Overblik af din profil"
1692
 
1693
- #: templates/connect.php:365
1694
  msgid "Name and email address"
1695
  msgstr "Navn og e-mailadresse"
1696
 
1697
- #: templates/connect.php:372
 
 
 
 
1698
  msgid "Your Site Overview"
1699
  msgstr "Overblik af dit websted"
1700
 
1701
- #: templates/connect.php:373
1702
  msgid "Site URL, WP version, PHP info"
1703
  msgstr "Site URL, WP version, PHP info"
1704
 
@@ -1706,64 +1714,84 @@ msgstr "Site URL, WP version, PHP info"
1706
  msgid "Admin Notices"
1707
  msgstr "Admin-meddelelser"
1708
 
1709
- #: templates/connect.php380, templates/connect.php:396
1710
  msgid "Updates, announcements, marketing, no spam"
1711
  msgstr "Opdateringer, annonceringer, marketing, ingen spam"
1712
 
1713
- #: templates/connect.php:386
1714
- msgid "Current %s Events"
1715
- msgstr "Current %s Events"
1716
-
1717
  #: templates/connect.php:387
1718
- msgid "Activation, deactivation and uninstall"
1719
- msgstr "Aktivering, deaktivering og afinstallering"
 
 
 
 
 
 
 
 
1720
 
1721
- #: templates/connect.php:395
1722
  msgid "Newsletter"
1723
  msgstr "Nyhedsbrev"
1724
 
1725
- #: templates/connect.php:403
1726
  msgid "Plugins & Themes"
1727
  msgstr "Plugins & Temaer"
1728
 
1729
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1730
  msgid "Title, slug, version, and is active"
1731
  msgstr "Title, slug, version, and is active"
1732
 
1733
- #: templates/connect.php421, templates/forms/license-activation.php:41
1734
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1735
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1736
 
1737
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1738
  msgid "What permissions are being granted?"
1739
  msgstr "Hvilke tilladelser bliver givet?"
1740
 
1741
- #: templates/connect.php:452
1742
  msgid "Don't have a license key?"
1743
  msgstr "Har du ikke en licensnøgle?"
1744
 
1745
- #: templates/connect.php:455
1746
  msgid "Have a license key?"
1747
  msgstr "Har du en licensnøgle?"
1748
 
1749
- #: templates/connect.php:463
1750
  msgid "Privacy Policy"
1751
  msgstr "Privatlivspolitik"
1752
 
1753
- #: templates/connect.php:465
1754
  msgid "License Agreement"
1755
  msgstr "Licensaftale"
1756
 
1757
- #: templates/connect.php:465
1758
  msgid "Terms of Service"
1759
  msgstr "Servicevilkår"
1760
 
1761
- #: templates/connect.php:854
1762
  msgctxt "as in the process of sending an email"
1763
  msgid "Sending email"
1764
  msgstr "Sender e-mail"
1765
 
1766
- #: templates/connect.php:855
1767
  msgctxt "as activating plugin"
1768
  msgid "Activating"
1769
  msgstr "Aktiverer"
@@ -2366,7 +2394,11 @@ msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2366
  msgid "Update License"
2367
  msgstr "Opdater licens"
2368
 
2369
- #: templates/forms/license-activation.php:181
 
 
 
 
2370
  msgid "Associate with the license owner's account."
2371
  msgstr "Associate with the license owner's account."
2372
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Joachim Jensen, 2019-2020
9
  "Project-Id-Version: WordPress SDK\n"
10
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
  "POT-Creation-Date: \n"
12
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
13
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
  "Language: da_DK\n"
15
  "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
+ #: includes/class-freemius.php1919, templates/account.php:912
27
  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."
28
  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."
29
 
30
+ #: includes/class-freemius.php:1926
31
  msgid "Would you like to proceed with the update?"
32
  msgstr "Vil du fortsætte med opdateringen?"
33
 
34
+ #: includes/class-freemius.php:2138
35
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
37
 
38
+ #: includes/class-freemius.php:2140
39
  msgid "Error"
40
  msgstr "Fejl"
41
 
42
+ #: includes/class-freemius.php:2540
43
  msgid "I found a better %s"
44
  msgstr "Jeg fandt et bedre %s"
45
 
46
+ #: includes/class-freemius.php:2542
47
  msgid "What's the %s's name?"
48
  msgstr "Hvad er navnet på %s?"
49
 
50
+ #: includes/class-freemius.php:2548
51
  msgid "It's a temporary %s. I'm just debugging an issue."
52
  msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
53
 
54
+ #: includes/class-freemius.php:2550
55
  msgid "Deactivation"
56
  msgstr "Deaktivering"
57
 
58
+ #: includes/class-freemius.php:2551
59
  msgid "Theme Switch"
60
  msgstr "Temaskift"
61
 
62
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "Andet"
66
 
67
+ #: includes/class-freemius.php:2568
68
  msgid "I no longer need the %s"
69
  msgstr "Jeg har ikke længere brug for %s"
70
 
71
+ #: includes/class-freemius.php:2575
72
  msgid "I only needed the %s for a short period"
73
  msgstr "Jeg behøvede kun %s i en kort periode"
74
 
75
+ #: includes/class-freemius.php:2581
76
  msgid "The %s broke my site"
77
  msgstr "%s ødelagde min webside"
78
 
79
+ #: includes/class-freemius.php:2588
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s stoppede pludseligt med at virke"
82
 
83
+ #: includes/class-freemius.php:2598
84
  msgid "I can't pay for it anymore"
85
  msgstr "Jeg kan ikke længere betale for det"
86
 
87
+ #: includes/class-freemius.php:2600
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr "Hvilken pris ville du foretrække at betale?"
90
 
91
+ #: includes/class-freemius.php:2606
92
  msgid "I don't like to share my information with you"
93
  msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
94
 
95
+ #: includes/class-freemius.php:2627
96
  msgid "The %s didn't work"
97
  msgstr "%s virkede ikke"
98
 
99
+ #: includes/class-freemius.php:2637
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
102
 
103
+ #: includes/class-freemius.php:2645
104
  msgid "The %s is great, but I need specific feature that you don't support"
105
  msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
106
 
107
+ #: includes/class-freemius.php:2647
108
  msgid "What feature?"
109
  msgstr "Hvilken feature?"
110
 
111
+ #: includes/class-freemius.php:2651
112
  msgid "The %s is not working"
113
  msgstr "%s virker ikke"
114
 
115
+ #: includes/class-freemius.php:2653
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende brugere...."
118
 
119
+ #: includes/class-freemius.php:2657
120
  msgid "It's not what I was looking for"
121
  msgstr "Det er ikke, hvad jeg søgte"
122
 
123
+ #: includes/class-freemius.php:2659
124
  msgid "What you've been looking for?"
125
  msgstr "Hvad ledte du efter?"
126
 
127
+ #: includes/class-freemius.php:2663
128
  msgid "The %s didn't work as expected"
129
  msgstr "%s virkede ikke som forventet"
130
 
131
+ #: includes/class-freemius.php:2665
132
  msgid "What did you expect?"
133
  msgstr "Hvad forventede du?"
134
 
135
+ #: includes/class-freemius.php3520, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius Debug"
138
 
139
+ #: includes/class-freemius.php:4272
140
  msgid "I don't know what is cURL or how to install it, help me!"
141
  msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
142
 
143
+ #: includes/class-freemius.php:4274
144
  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."
145
  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."
146
 
147
+ #: includes/class-freemius.php:4281
148
  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."
149
  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."
150
 
151
+ #: includes/class-freemius.php:4386
152
  msgid "Yes - do your thing"
153
  msgstr "Ja - fortsæt bare"
154
 
155
+ #: includes/class-freemius.php:4391
156
  msgid "No - just deactivate"
157
  msgstr "Nej - bare deaktiver"
158
 
159
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
160
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
161
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
162
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
163
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
164
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
165
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
166
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "Ups"
170
 
171
+ #: includes/class-freemius.php:4505
172
  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."
173
  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."
174
 
175
+ #: includes/class-freemius.php:4927
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s virker ikke uden %s."
179
 
180
+ #: includes/class-freemius.php:4928
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s virker ikke uden pluginnet."
184
 
185
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
186
+ #: includes/class-freemius.php:21180
187
  msgid "Unexpected API error. Please contact the %s's author with the following error."
188
  msgstr "Uventet API-fejl. Kontakt %s's forfatter med følgende fejl."
189
 
190
+ #: includes/class-freemius.php:5857
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "Premium-versionen af %s blev aktiveret."
193
 
194
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "W00t"
198
 
199
+ #: includes/class-freemius.php:5884
200
  msgid "You have a %s license."
201
  msgstr "Du har en %s licens."
202
 
203
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
204
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
205
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
206
+ #: includes/class-freemius.php:20930
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "Yee-haw"
210
 
211
+ #: includes/class-freemius.php:6174
212
  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."
213
  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."
214
 
215
+ #: includes/class-freemius.php:6178
216
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
218
 
219
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
220
  #: templates/account/partials/addon.php:381
221
  msgid "More information about %s"
222
  msgstr "Mere information om %s"
223
 
224
+ #: includes/class-freemius.php:6188
225
  msgid "Purchase License"
226
  msgstr "Køb licens"
227
 
228
+ #: includes/class-freemius.php7125, templates/connect.php:171
229
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
231
 
232
+ #: includes/class-freemius.php:7129
233
  msgid "start the trial"
234
  msgstr "start prøveperioden"
235
 
236
+ #: includes/class-freemius.php7130, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "færdiggør installeringen"
239
 
240
+ #: includes/class-freemius.php:7249
241
  msgid "You are just one step away - %s"
242
  msgstr "Du mangler kun ét skridt - %s"
243
 
244
+ #: includes/class-freemius.php:7252
245
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
  msgid "Complete \"%s\" Activation Now"
247
  msgstr "Færdiggør aktivering af \"%s\" nu"
248
 
249
+ #: includes/class-freemius.php:7334
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "Vi har foretaget nogle rettelser til %s, %s"
252
 
253
+ #: includes/class-freemius.php:7338
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Accepter for at gøre \"%s\" bedre!"
256
 
257
+ #: includes/class-freemius.php:7773
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "Opgraderingen af %s blev fuldendt."
260
 
261
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
262
+ #: includes/class-fs-plugin-updater.php1282,
263
+ #: includes/class-fs-plugin-updater.php1289,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "Tilføjelse"
267
 
268
+ #: includes/class-freemius.php10257, templates/account.php394,
269
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "Plugin"
272
 
273
+ #: includes/class-freemius.php10258, templates/account.php395,
274
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
275
  #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "Tema"
278
 
279
+ #: includes/class-freemius.php:13188
280
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
 
283
+ #: includes/class-freemius.php:13202
284
  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."
285
  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."
286
 
287
+ #: includes/class-freemius.php:13207
288
  msgid "User Dashboard"
289
  msgstr "User Dashboard"
290
 
291
+ #: includes/class-freemius.php:13208
292
  msgid "revert it now"
293
  msgstr "revert it now"
294
 
295
+ #: includes/class-freemius.php:13266
296
  msgid "An unknown error has occurred while trying to set the user's beta mode."
297
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
 
299
+ #: includes/class-freemius.php:13339
300
  msgid "Invalid new user ID or email address."
301
  msgstr "Invalid new user ID or email address."
302
 
303
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
304
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
  msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail."
306
 
307
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
308
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
310
 
311
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
312
  msgid "Change Ownership"
313
  msgstr "Skift ejerskab"
314
 
315
+ #: includes/class-freemius.php:13977
316
  msgid "Invalid site details collection."
317
  msgstr "Invalid site details collection."
318
 
319
+ #: includes/class-freemius.php:14097
320
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
322
 
323
+ #: includes/class-freemius.php:14099
324
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
326
 
327
+ #: includes/class-freemius.php:14373
328
  msgid "Account is pending activation."
329
  msgstr "Konto afventer aktivering."
330
 
331
+ #: includes/class-freemius.php14485,
332
  #: templates/forms/premium-versions-upgrade-handler.php:47
333
  msgid "Buy a license now"
334
  msgstr "Køb en licens nu"
335
 
336
+ #: includes/class-freemius.php14497,
337
  #: templates/forms/premium-versions-upgrade-handler.php:46
338
  msgid "Renew your license now"
339
  msgstr "Forny din licens nu"
340
 
341
+ #: includes/class-freemius.php:14501
342
  msgid "%s to access version %s security & feature updates, and support."
343
  msgstr "%s to access version %s security & feature updates, and support."
344
 
345
+ #: includes/class-freemius.php:16929
346
  msgid "%s activation was successfully completed."
347
  msgstr "Aktivering af %s blev gennemført."
348
 
349
+ #: includes/class-freemius.php:16943
350
  msgid "Your account was successfully activated with the %s plan."
351
  msgstr "Din konto blev aktiveret med planen %s."
352
 
353
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
354
  msgid "Your trial has been successfully started."
355
  msgstr "Din prøveperiode er begyndt."
356
 
357
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
358
+ #: includes/class-freemius.php:17820
359
  msgid "Couldn't activate %s."
360
  msgstr "Kunne ikke aktivere %s."
361
 
362
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
363
+ #: includes/class-freemius.php:17821
364
  msgid "Please contact us with the following message:"
365
  msgstr "Kontakt os venligst med følgende besked:"
366
 
367
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
368
  msgid "An unknown error has occurred."
369
  msgstr "Der skete en ukendt fejl."
370
 
371
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
372
  msgid "Upgrade"
373
  msgstr "Opgrader"
374
 
375
+ #: includes/class-freemius.php:18184
376
  msgid "Start Trial"
377
  msgstr "Start prøveperiode"
378
 
379
+ #: includes/class-freemius.php:18186
380
  msgid "Pricing"
381
  msgstr "Priser"
382
 
383
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
384
  msgid "Affiliation"
385
  msgstr "Affiliation"
386
 
387
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
388
+ #: templates/account.php242, templates/debug.php:324
389
  msgid "Account"
390
  msgstr "Konto"
391
 
392
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
393
  #: includes/customizer/class-fs-customizer-support-section.php:60
394
  msgid "Contact Us"
395
  msgstr "Kontakt os"
396
 
397
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
398
+ #: includes/class-freemius.php23354, templates/account.php121,
399
  #: templates/account/partials/addon.php:44
400
  msgid "Add-Ons"
401
  msgstr "Tilføjelser"
402
 
403
+ #: includes/class-freemius.php:18361
404
  msgctxt "ASCII arrow left icon"
405
  msgid "&#x2190;"
406
  msgstr "&#x2190;"
407
 
408
+ #: includes/class-freemius.php:18361
409
  msgctxt "ASCII arrow right icon"
410
  msgid "&#x27a4;"
411
  msgstr "&#x27a4;"
412
 
413
+ #: includes/class-freemius.php18363, templates/pricing.php:109
414
  msgctxt "noun"
415
  msgid "Pricing"
416
  msgstr "Priser"
417
 
418
+ #: includes/class-freemius.php18576,
419
  #: includes/customizer/class-fs-customizer-support-section.php:67
420
  msgid "Support Forum"
421
  msgstr "Supportforum"
422
 
423
+ #: includes/class-freemius.php:19550
424
  msgid "Your email has been successfully verified - you are AWESOME!"
425
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
426
 
427
+ #: includes/class-freemius.php:19551
428
  msgctxt "a positive response"
429
  msgid "Right on"
430
  msgstr "Sådan"
431
 
432
+ #: includes/class-freemius.php:20057
433
  msgid "seems like the key you entered doesn't match our records."
434
  msgstr "seems like the key you entered doesn't match our records."
435
 
436
+ #: includes/class-freemius.php:20081
437
  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."
438
  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."
439
 
440
+ #: includes/class-freemius.php:20316
441
  msgid "Your %s Add-on plan was successfully upgraded."
442
  msgstr "Your %s Add-on plan was successfully upgraded."
443
 
444
+ #: includes/class-freemius.php:20318
445
  msgid "%s Add-on was successfully purchased."
446
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
447
 
448
+ #: includes/class-freemius.php:20321
449
  msgid "Download the latest version"
450
  msgstr "Download den seneste version"
451
 
452
+ #: includes/class-freemius.php:20407
453
  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"
454
  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"
455
 
456
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
457
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
458
  msgid "Error received from the server:"
459
  msgstr "Fejl modtager fra serveren:"
460
 
461
+ #: includes/class-freemius.php:20423
462
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
464
 
465
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
466
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
467
  msgctxt ""
468
  msgid "Hmm"
469
  msgstr "Hmm"
470
 
471
+ #: includes/class-freemius.php:20664
472
  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
  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."
474
 
475
+ #: includes/class-freemius.php20665, templates/account.php123,
476
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
  msgctxt "trial period"
478
  msgid "Trial"
479
  msgstr "Prøveperiode"
480
 
481
+ #: includes/class-freemius.php:20670
482
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
484
 
485
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
486
  msgid "Please contact us here"
487
  msgstr "Kontakt os her"
488
 
489
+ #: includes/class-freemius.php:20685
490
  msgid "Your plan was successfully activated."
491
  msgstr "Din plan er blevet aktiveret."
492
 
493
+ #: includes/class-freemius.php:20686
494
  msgid "Your plan was successfully upgraded."
495
  msgstr "Din plan er blevet opgraderet."
496
 
497
+ #: includes/class-freemius.php:20703
498
  msgid "Your plan was successfully changed to %s."
499
  msgstr "Din plan er blevet ændret til %s."
500
 
501
+ #: includes/class-freemius.php:20719
502
  msgid "Your license has expired. You can still continue using the free %s forever."
503
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
504
 
505
+ #: includes/class-freemius.php:20721
506
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
508
 
509
+ #: includes/class-freemius.php:20729
510
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
512
 
513
+ #: includes/class-freemius.php:20742
514
  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."
515
  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."
516
 
517
+ #: includes/class-freemius.php:20768
518
  msgid "Your free trial has expired. You can still continue using all our free features."
519
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
520
 
521
+ #: includes/class-freemius.php:20770
522
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
524
 
525
+ #: includes/class-freemius.php:20885
526
  msgid "It looks like the license could not be activated."
527
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
528
 
529
+ #: includes/class-freemius.php:20927
530
  msgid "Your license was successfully activated."
531
  msgstr "Din licens er blevet aktiveret."
532
 
533
+ #: includes/class-freemius.php:20953
534
  msgid "It looks like your site currently doesn't have an active license."
535
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
536
 
537
+ #: includes/class-freemius.php:20977
538
  msgid "It looks like the license deactivation failed."
539
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
540
 
541
+ #: includes/class-freemius.php:21006
542
  msgid "Your %s license was successfully deactivated."
543
  msgstr "Your %s license was successfully deactivated."
544
 
545
+ #: includes/class-freemius.php:21007
546
  msgid "Your license was successfully deactivated, you are back to the %s plan."
547
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
548
 
549
+ #: includes/class-freemius.php:21010
550
  msgid "O.K"
551
  msgstr "O.K"
552
 
553
+ #: includes/class-freemius.php:21063
554
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
 
557
+ #: includes/class-freemius.php:21072
558
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
 
561
+ #: includes/class-freemius.php:21114
562
  msgid "You are already running the %s in a trial mode."
563
  msgstr "Du benytter allerede %s under en prøveperiode."
564
 
565
+ #: includes/class-freemius.php:21125
566
  msgid "You already utilized a trial before."
567
  msgstr "Du har allerede brugt din prøveperiode."
568
 
569
+ #: includes/class-freemius.php:21139
570
  msgid "Plan %s do not exist, therefore, can't start a trial."
571
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
572
 
573
+ #: includes/class-freemius.php:21150
574
  msgid "Plan %s does not support a trial period."
575
  msgstr "Plan %s understøtter ikke en prøveperiode."
576
 
577
+ #: includes/class-freemius.php:21161
578
  msgid "None of the %s's plans supports a trial period."
579
  msgstr "Ingen af %s's planer understøtter prøveperiode."
580
 
581
+ #: includes/class-freemius.php:21211
582
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
584
 
585
+ #: includes/class-freemius.php:21247
586
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
588
 
589
+ #: includes/class-freemius.php:21266
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
592
 
593
+ #: includes/class-freemius.php:21582
594
  msgid "Version %s was released."
595
  msgstr "Version %s er blevet udgivet."
596
 
597
+ #: includes/class-freemius.php:21582
598
  msgid "Please download %s."
599
  msgstr "Download venligst %s."
600
 
601
+ #: includes/class-freemius.php:21589
602
  msgid "the latest %s version here"
603
  msgstr "den seneste version af %s her"
604
 
605
+ #: includes/class-freemius.php:21594
606
  msgid "New"
607
  msgstr "Ny"
608
 
609
+ #: includes/class-freemius.php:21599
610
  msgid "Seems like you got the latest release."
611
  msgstr "Det ser ud til, at du har den seneste udgivelse."
612
 
613
+ #: includes/class-freemius.php:21600
614
  msgid "You are all good!"
615
  msgstr "Det var det!"
616
 
617
+ #: includes/class-freemius.php:21903
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
620
 
621
+ #: includes/class-freemius.php:22043
622
  msgid "Site successfully opted in."
623
  msgstr "Websted er tilmeldt."
624
 
625
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
626
  msgid "Awesome"
627
  msgstr "Sejt"
628
 
629
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
632
 
633
+ #: includes/class-freemius.php:22061
634
  msgid "Thank you!"
635
  msgstr "Mange tak!"
636
 
637
+ #: includes/class-freemius.php:22068
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
640
 
641
+ #: includes/class-freemius.php:22226
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
644
 
645
+ #: includes/class-freemius.php:22232
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse."
648
 
649
+ #: includes/class-freemius.php:22237
650
  msgid "%s is the new owner of the account."
651
  msgstr "%s er den nye ejer af kontoen."
652
 
653
+ #: includes/class-freemius.php:22239
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "Tillykke"
657
 
658
+ #: includes/class-freemius.php:22275
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
661
 
662
+ #: includes/class-freemius.php:22287
663
  msgid "Please provide your full name."
664
  msgstr "Indtast venligst dit fulde navn."
665
 
666
+ #: includes/class-freemius.php:22292
667
  msgid "Your name was successfully updated."
668
  msgstr "Dit navn er blevet opdateret."
669
 
670
+ #: includes/class-freemius.php:22353
671
  msgid "You have successfully updated your %s."
672
  msgstr "Opdatering af %s blev gennemført."
673
 
674
+ #: includes/class-freemius.php:22412
675
  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."
676
  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."
677
 
678
+ #: includes/class-freemius.php:22415
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
+ #: includes/class-freemius.php:22513
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
685
 
686
+ #: includes/class-freemius.php:22514
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "Se her"
690
 
691
+ #: includes/class-freemius.php:23090
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "Hey"
695
 
696
+ #: includes/class-freemius.php:23090
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode."
699
 
700
+ #: includes/class-freemius.php:23098
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
703
 
704
+ #: includes/class-freemius.php:23099
705
  msgid "No credit card required"
706
  msgstr "Betalingskort ikke påkrævet"
707
 
708
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "Start gratis prøveperiode"
712
 
713
+ #: includes/class-freemius.php:23183
714
  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!"
715
  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!"
716
 
717
+ #: includes/class-freemius.php:23192
718
  msgid "Learn more"
719
  msgstr "Læs mere"
720
 
721
+ #: includes/class-freemius.php23378, templates/account.php558,
722
+ #: templates/account.php708, templates/connect.php179,
723
+ #: templates/connect.php461, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "Aktiver licens"
727
 
728
+ #: includes/class-freemius.php23379, templates/account.php652,
729
+ #: templates/account.php707, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "Skift licens"
733
 
734
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "Frameld"
737
 
738
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "Tilmeld"
743
 
744
+ #: includes/class-freemius.php:23738
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
 
748
+ #: includes/class-freemius.php:23746
749
  msgid "Activate %s features"
750
  msgstr "Aktiver funktioner i %s"
751
 
752
+ #: includes/class-freemius.php:23759
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
755
 
756
+ #: includes/class-freemius.php:23763
757
  msgid "Download the latest %s version"
758
  msgstr "Download den seneste version af %s"
759
 
760
+ #: includes/class-freemius.php:23767
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "Upload og aktiver den downloadede version"
763
 
764
+ #: includes/class-freemius.php:23769
765
  msgid "How to upload and activate?"
766
  msgstr "Upload og aktivering, hvordan?"
767
 
768
+ #: includes/class-freemius.php:23903
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
771
 
772
+ #: includes/class-freemius.php:24072
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
775
 
776
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
777
+ #: includes/class-fs-plugin-updater.php1261,
778
+ #: includes/class-fs-plugin-updater.php:1275
779
  msgid "Invalid module ID."
780
  msgstr "Ugyldigt modul-ID."
781
 
782
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
783
  msgid "Premium version already active."
784
  msgstr "Premium version allerede aktiv."
785
 
786
+ #: includes/class-freemius.php:24098
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
789
 
790
+ #: includes/class-freemius.php:24105
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
793
 
794
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
795
  msgid "Premium add-on version already installed."
796
  msgstr "Premium tilføjelse er allerede installeret."
797
 
798
+ #: includes/class-freemius.php:24473
799
  msgid "View paid features"
800
  msgstr "Vis betalte features"
801
 
802
+ #: includes/class-freemius.php:24795
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!"
805
 
806
+ #: includes/class-freemius.php:24796
807
  msgid "Thank you so much for using %s!"
808
  msgstr "Tak fordi du benytter %s!"
809
 
810
+ #: includes/class-freemius.php:24802
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
813
 
814
+ #: includes/class-freemius.php:24806
815
  msgid "Thank you so much for using our products!"
816
  msgstr "Mange tak for at benytte vores produkter!"
817
 
818
+ #: includes/class-freemius.php:24807
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
821
 
822
+ #: includes/class-freemius.php:24826
823
  msgid "%s and its add-ons"
824
  msgstr "%s og tilføjelser"
825
 
826
+ #: includes/class-freemius.php:24835
827
  msgid "Products"
828
  msgstr "Produkter"
829
 
830
+ #: includes/class-freemius.php24842, templates/connect.php:275
831
  msgid "Yes"
832
  msgstr "Ja"
833
 
834
+ #: includes/class-freemius.php24843, templates/connect.php:276
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
837
 
838
+ #: includes/class-freemius.php24844, templates/connect.php:281
839
  msgid "No"
840
  msgstr "Nej"
841
 
842
+ #: includes/class-freemius.php24846, templates/connect.php:283
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
845
 
846
+ #: includes/class-freemius.php:24856
847
  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 :-)"
848
  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 :-)"
849
 
850
+ #: includes/class-freemius.php24858, templates/connect.php:290
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
853
 
854
+ #: includes/class-freemius.php:25140
855
  msgid "License key is empty."
856
  msgstr "Licensnøglen er tom."
857
 
884
  msgid "Important Upgrade Notice:"
885
  msgstr "Vigtig meddelelse til opgradering:"
886
 
887
+ #: includes/class-fs-plugin-updater.php:1326
888
  msgid "Installing plugin: %s"
889
  msgstr "Installerer plugin: %s"
890
 
891
+ #: includes/class-fs-plugin-updater.php:1367
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
894
 
895
+ #: includes/class-fs-plugin-updater.php:1549
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
898
 
914
  msgid "Install Free Version Update Now"
915
  msgstr "Installer opdatering til gratis version nu"
916
 
917
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
918
  msgid "Install Update Now"
919
  msgstr "Installer opdatering nu"
920
 
934
  msgid "Download Latest Free Version"
935
  msgstr "Download seneste gratis version"
936
 
937
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
946
  msgid "Activate this add-on"
947
  msgstr "Aktiver denne tilføjelse"
948
 
949
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
950
  msgid "Activate Free Version"
951
  msgstr "Aktiver gratis version"
952
 
953
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "Aktiver"
1086
  msgid "Details"
1087
  msgstr "Detaljer"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
1102
  msgid "Last Updated"
1103
  msgstr "Senest opdateret"
1104
 
1105
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s siden"
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "Seneste gratis version installeret"
1215
 
1216
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "Nedgraderer din plan"
1221
 
1222
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
 
1235
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  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."
1240
 
1241
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1245
 
1246
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
 
1252
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
+ #: templates/account.php111,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "Aktiver %s plan"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
+ #: templates/account.php114, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "Auto-fornyer om %s"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
+ #: templates/account.php116, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "Udløber om %s"
1276
 
1277
+ #: templates/account.php:117
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "Synkroniser licens"
1281
 
1282
+ #: templates/account.php118, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "Annuller prøveperiode"
1285
 
1286
+ #: templates/account.php119, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "Skift plan"
1289
 
1290
+ #: templates/account.php120, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "Opgrader"
1294
 
1295
+ #: templates/account.php122, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "Nedgrader"
1300
 
1301
+ #: templates/account.php124, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "Gratis"
1307
 
1308
+ #: templates/account.php126, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "Plan"
1314
 
1315
+ #: templates/account.php:127
1316
  msgid "Bundle Plan"
1317
  msgstr "Bundle Plan"
1318
 
1319
+ #: templates/account.php:250
1320
  msgid "Free Trial"
1321
  msgstr "Gratis prøveperiode"
1322
 
1323
+ #: templates/account.php:261
1324
  msgid "Account Details"
1325
  msgstr "Kontodetaljer"
1326
 
1327
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
+ #: templates/account.php:270
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
+ #: templates/account.php:277
1336
  msgid "Billing & Invoices"
1337
  msgstr "Fakturering"
1338
 
1339
+ #: templates/account.php:288
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1342
 
1343
+ #: templates/account.php:290
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1346
 
1347
+ #: templates/account.php:293
1348
  msgid "Delete Account"
1349
  msgstr "Slet konto"
1350
 
1351
+ #: templates/account.php305, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "Deaktiver licens"
1355
 
1356
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "Er du sikker på, du vil fortsætte?"
1359
 
1360
+ #: templates/account.php328, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "Annuller abonnement"
1363
 
1364
+ #: templates/account.php357, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "Synkroniser"
1368
 
1369
+ #: templates/account.php372, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "Navn"
1372
 
1373
+ #: templates/account.php378, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "E-mail"
1376
 
1377
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "Bruger-ID"
1380
 
1381
+ #: templates/account.php403, templates/account.php721,
1382
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ID"
1388
 
1389
+ #: templates/account.php:410
1390
  msgid "Site ID"
1391
  msgstr "Websteds-ID"
1392
 
1393
+ #: templates/account.php:413
1394
  msgid "No ID"
1395
  msgstr "Intet ID"
1396
 
1397
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "Offentlig nøgle"
1402
 
1403
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "Privat nøgle"
1407
 
1408
+ #: templates/account.php:427
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "Ingen privat nøgle"
1412
 
1413
+ #: templates/account.php454, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "Prøveperiode"
1417
 
1418
+ #: templates/account.php481, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "Licensnøgle"
1422
 
1423
+ #: templates/account.php:512
1424
  msgid "Join the Beta program"
1425
  msgstr "Deltag i Beta-programmet"
1426
 
1427
+ #: templates/account.php:518
1428
  msgid "not verified"
1429
  msgstr "ikke verificeret"
1430
 
1431
+ #: templates/account.php527, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "Udløbet"
1434
 
1435
+ #: templates/account.php:587
1436
  msgid "Premium version"
1437
  msgstr "Premium version"
1438
 
1439
+ #: templates/account.php:589
1440
  msgid "Free version"
1441
  msgstr "Gratis version"
1442
 
1443
+ #: templates/account.php:601
1444
  msgid "Verify Email"
1445
  msgstr "Verificer e-mail"
1446
 
1447
+ #: templates/account.php:615
1448
  msgid "Download %s Version"
1449
  msgstr "Download 1%s version"
1450
 
1451
+ #: templates/account.php:631
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
+ #: templates/account.php649, templates/account.php892,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "Vis"
1461
 
1462
+ #: templates/account.php:664
1463
  msgid "What is your %s?"
1464
  msgstr "Angiv venligst %s?"
1465
 
1466
+ #: templates/account.php672, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "Rediger"
1470
 
1471
+ #: templates/account.php676, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
+ #: templates/account.php:700
1476
  msgid "Sites"
1477
  msgstr "Websteder"
1478
 
1479
+ #: templates/account.php:713
1480
  msgid "Search by address"
1481
  msgstr "Søg efter adresse"
1482
 
1483
+ #: templates/account.php722, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "Adresse"
1486
 
1487
+ #: templates/account.php:723
1488
  msgid "License"
1489
  msgstr "Licens"
1490
 
1491
+ #: templates/account.php:724
1492
  msgid "Plan"
1493
  msgstr "Plan"
1494
 
1495
+ #: templates/account.php:757
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "Licens"
1499
 
1500
+ #: templates/account.php:886
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "Skjul"
1504
 
1505
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "Arbejder"
1508
 
1509
+ #: templates/account.php:911
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "Get updates for bleeding edge Beta versions of %s."
1512
 
1513
+ #: templates/account.php:969
1514
  msgid "Cancelling %s"
1515
  msgstr "Annullerer %s"
1516
 
1517
+ #: templates/account.php969, templates/account.php986,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "prøveperiode"
1522
 
1523
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "Annullerer %s..."
1526
 
1527
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "abonnement"
1531
 
1532
+ #: templates/account.php:1001
1533
  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?"
1534
  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?"
1535
 
1536
+ #: templates/account.php:1075
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
+ #: templates/account.php:1076
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
1563
  msgid "Installed"
1564
  msgstr "Installeret"
1565
 
1566
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
1619
  msgid "Agree & Activate License"
1620
  msgstr "Accepter & aktiver licens"
1621
 
1622
+ #: templates/connect.php:184
1623
+ msgid "Welcome to %s! To get started, please enter your license key:"
1624
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1625
 
1626
+ #: templates/connect.php:191
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. "
1629
 
1630
+ #: templates/connect.php:192
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %%4$s."
1633
 
1634
+ #: templates/connect.php:198
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1637
 
1638
+ #: templates/connect.php:199
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1641
 
1642
+ #: templates/connect.php:233
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "We're excited to introduce the Freemius network-level integration."
1645
 
1646
+ #: templates/connect.php:236
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1649
 
1650
+ #: templates/connect.php:238
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1653
 
1654
+ #: templates/connect.php:240
1655
  msgid "%s's paid features"
1656
  msgstr "%s's betalte features"
1657
 
1658
+ #: templates/connect.php:245
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1661
 
1662
+ #: templates/connect.php:247
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1665
 
1666
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "Licensnøgle"
1670
 
1671
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "Kan du ikke finde din licensnøgle?"
1674
 
1675
+ #: templates/connect.php318, templates/connect.php700,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "Spring over"
1680
 
1681
+ #: templates/connect.php:321
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "Uddeleger til webstedsadministratorer"
1684
 
1685
+ #: templates/connect.php:321
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1688
 
1689
+ #: templates/connect.php:346
1690
+ msgid "License issues?"
1691
+ msgstr "License issues?"
1692
+
1693
+ #: templates/connect.php:362
1694
  msgid "Your Profile Overview"
1695
  msgstr "Overblik af din profil"
1696
 
1697
+ #: templates/connect.php:363
1698
  msgid "Name and email address"
1699
  msgstr "Navn og e-mailadresse"
1700
 
1701
+ #: templates/connect.php:370
1702
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1703
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1704
+
1705
+ #: templates/connect.php:371
1706
  msgid "Your Site Overview"
1707
  msgstr "Overblik af dit websted"
1708
 
1709
+ #: templates/connect.php:372
1710
  msgid "Site URL, WP version, PHP info"
1711
  msgstr "Site URL, WP version, PHP info"
1712
 
1714
  msgid "Admin Notices"
1715
  msgstr "Admin-meddelelser"
1716
 
1717
+ #: templates/connect.php380, templates/connect.php:398
1718
  msgid "Updates, announcements, marketing, no spam"
1719
  msgstr "Opdateringer, annonceringer, marketing, ingen spam"
1720
 
 
 
 
 
1721
  #: templates/connect.php:387
1722
+ msgid "So you can reuse the license when the %s is no longer active."
1723
+ msgstr "So you can reuse the license when the %s is no longer active."
1724
+
1725
+ #: templates/connect.php:388
1726
+ msgid "Current %s Status"
1727
+ msgstr "Current %s Status"
1728
+
1729
+ #: templates/connect.php:389
1730
+ msgid "Active, deactivated, or uninstalled"
1731
+ msgstr "Active, deactivated, or uninstalled"
1732
 
1733
+ #: templates/connect.php:397
1734
  msgid "Newsletter"
1735
  msgstr "Nyhedsbrev"
1736
 
1737
+ #: templates/connect.php:405
1738
  msgid "Plugins & Themes"
1739
  msgstr "Plugins & Temaer"
1740
 
1741
+ #: templates/connect.php:405
1742
+ msgid "optional"
1743
+ msgstr "optional"
1744
+
1745
+ #: templates/connect.php:406
1746
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1748
+
1749
+ #: templates/connect.php:407
1750
  msgid "Title, slug, version, and is active"
1751
  msgstr "Title, slug, version, and is active"
1752
 
1753
+ #: templates/connect.php:424
1754
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1756
 
1757
  #: templates/connect.php:426
1758
+ msgid "diagnostic data"
1759
+ msgstr "diagnostic data"
1760
+
1761
+ #: templates/connect.php:427
1762
+ msgid "Freemius is our licensing and software updates engine"
1763
+ msgstr "Freemius is our licensing and software updates engine"
1764
+
1765
+ #: templates/connect.php:430
1766
  msgid "What permissions are being granted?"
1767
  msgstr "Hvilke tilladelser bliver givet?"
1768
 
1769
+ #: templates/connect.php:457
1770
  msgid "Don't have a license key?"
1771
  msgstr "Har du ikke en licensnøgle?"
1772
 
1773
+ #: templates/connect.php:460
1774
  msgid "Have a license key?"
1775
  msgstr "Har du en licensnøgle?"
1776
 
1777
+ #: templates/connect.php:468
1778
  msgid "Privacy Policy"
1779
  msgstr "Privatlivspolitik"
1780
 
1781
+ #: templates/connect.php:470
1782
  msgid "License Agreement"
1783
  msgstr "Licensaftale"
1784
 
1785
+ #: templates/connect.php:470
1786
  msgid "Terms of Service"
1787
  msgstr "Servicevilkår"
1788
 
1789
+ #: templates/connect.php:866
1790
  msgctxt "as in the process of sending an email"
1791
  msgid "Sending email"
1792
  msgstr "Sender e-mail"
1793
 
1794
+ #: templates/connect.php:867
1795
  msgctxt "as activating plugin"
1796
  msgid "Activating"
1797
  msgstr "Aktiverer"
2394
  msgid "Update License"
2395
  msgstr "Opdater licens"
2396
 
2397
+ #: templates/forms/license-activation.php:41
2398
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2399
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2400
+
2401
+ #: templates/forms/license-activation.php:183
2402
  msgid "Associate with the license owner's account."
2403
  msgstr "Associate with the license owner's account."
2404
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-en.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-en.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
@@ -19,795 +19,795 @@ msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
- #: includes/class-freemius.php:1912, templates/account.php:910
23
  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."
24
  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."
25
 
26
- #: includes/class-freemius.php:1919
27
  msgid "Would you like to proceed with the update?"
28
  msgstr "Would you like to proceed with the update?"
29
 
30
- #: includes/class-freemius.php:2131
31
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
32
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
33
 
34
- #: includes/class-freemius.php:2133
35
  msgid "Error"
36
  msgstr "Error"
37
 
38
- #: includes/class-freemius.php:2533
39
  msgid "I found a better %s"
40
  msgstr "I found a better %s"
41
 
42
- #: includes/class-freemius.php:2535
43
  msgid "What's the %s's name?"
44
  msgstr "What's the %s's name?"
45
 
46
- #: includes/class-freemius.php:2541
47
  msgid "It's a temporary %s. I'm just debugging an issue."
48
  msgstr "It's a temporary %s. I'm just debugging an issue."
49
 
50
- #: includes/class-freemius.php:2543
51
  msgid "Deactivation"
52
  msgstr "Deactivation"
53
 
54
- #: includes/class-freemius.php:2544
55
  msgid "Theme Switch"
56
  msgstr "Theme Switch"
57
 
58
- #: includes/class-freemius.php:2553, templates/forms/resend-key.php:24, templates/forms/user-change.php:29
59
  msgid "Other"
60
  msgstr "Other"
61
 
62
- #: includes/class-freemius.php:2561
63
  msgid "I no longer need the %s"
64
  msgstr "I no longer need the %s"
65
 
66
- #: includes/class-freemius.php:2568
67
  msgid "I only needed the %s for a short period"
68
  msgstr "I only needed the %s for a short period"
69
 
70
- #: includes/class-freemius.php:2574
71
  msgid "The %s broke my site"
72
  msgstr "The %s broke my site"
73
 
74
- #: includes/class-freemius.php:2581
75
  msgid "The %s suddenly stopped working"
76
  msgstr "The %s suddenly stopped working"
77
 
78
- #: includes/class-freemius.php:2591
79
  msgid "I can't pay for it anymore"
80
  msgstr "I can't pay for it anymore"
81
 
82
- #: includes/class-freemius.php:2593
83
  msgid "What price would you feel comfortable paying?"
84
  msgstr "What price would you feel comfortable paying?"
85
 
86
- #: includes/class-freemius.php:2599
87
  msgid "I don't like to share my information with you"
88
  msgstr "I don't like to share my information with you"
89
 
90
- #: includes/class-freemius.php:2620
91
  msgid "The %s didn't work"
92
  msgstr "The %s didn't work"
93
 
94
- #: includes/class-freemius.php:2630
95
  msgid "I couldn't understand how to make it work"
96
  msgstr "I couldn't understand how to make it work"
97
 
98
- #: includes/class-freemius.php:2638
99
  msgid "The %s is great, but I need specific feature that you don't support"
100
  msgstr "The %s is great, but I need specific feature that you don't support"
101
 
102
- #: includes/class-freemius.php:2640
103
  msgid "What feature?"
104
  msgstr "What feature?"
105
 
106
- #: includes/class-freemius.php:2644
107
  msgid "The %s is not working"
108
  msgstr "The %s is not working"
109
 
110
- #: includes/class-freemius.php:2646
111
  msgid "Kindly share what didn't work so we can fix it for future users..."
112
  msgstr "Kindly share what didn't work so we can fix it for future users..."
113
 
114
- #: includes/class-freemius.php:2650
115
  msgid "It's not what I was looking for"
116
  msgstr "It's not what I was looking for"
117
 
118
- #: includes/class-freemius.php:2652
119
  msgid "What you've been looking for?"
120
  msgstr "What you've been looking for?"
121
 
122
- #: includes/class-freemius.php:2656
123
  msgid "The %s didn't work as expected"
124
  msgstr "The %s didn't work as expected"
125
 
126
- #: includes/class-freemius.php:2658
127
  msgid "What did you expect?"
128
  msgstr "What did you expect?"
129
 
130
- #: includes/class-freemius.php:3513, templates/debug.php:20
131
  msgid "Freemius Debug"
132
  msgstr "Freemius Debug"
133
 
134
- #: includes/class-freemius.php:4265
135
  msgid "I don't know what is cURL or how to install it, help me!"
136
  msgstr "I don't know what is cURL or how to install it, help me!"
137
 
138
- #: includes/class-freemius.php:4267
139
  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."
140
  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."
141
 
142
- #: includes/class-freemius.php:4274
143
  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."
144
  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."
145
 
146
- #: includes/class-freemius.php:4379
147
  msgid "Yes - do your thing"
148
  msgstr "Yes - do your thing"
149
 
150
- #: includes/class-freemius.php:4384
151
  msgid "No - just deactivate"
152
  msgstr "No - just deactivate"
153
 
154
- #: includes/class-freemius.php:4429, includes/class-freemius.php:4923, includes/class-freemius.php:6182, includes/class-freemius.php:13357, includes/class-freemius.php:14075, includes/class-freemius.php:17526, includes/class-freemius.php:17631, includes/class-freemius.php:17806, includes/class-freemius.php:20040, includes/class-freemius.php:20398, includes/class-freemius.php:20408, includes/class-freemius.php:21079, includes/class-freemius.php:21985, includes/class-freemius.php:22118, includes/class-freemius.php:22274, templates/add-ons.php:57
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
- #: includes/class-freemius.php:4498
160
  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."
161
  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."
162
 
163
- #: includes/class-freemius.php:4920
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s cannot run without %s."
167
 
168
- #: includes/class-freemius.php:4921
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s cannot run without the plugin."
172
 
173
- #: includes/class-freemius.php:5120, includes/class-freemius.php:5145, includes/class-freemius.php:21150
174
  msgid "Unexpected API error. Please contact the %s's author with the following error."
175
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
176
 
177
- #: includes/class-freemius.php:5848
178
  msgid "Premium %s version was successfully activated."
179
  msgstr "Premium %s version was successfully activated."
180
 
181
- #: includes/class-freemius.php:5860, includes/class-freemius.php:7762
182
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
183
  msgid "W00t"
184
  msgstr "W00t"
185
 
186
- #: includes/class-freemius.php:5875
187
  msgid "You have a %s license."
188
  msgstr "You have a %s license."
189
 
190
- #: includes/class-freemius.php:5879, includes/class-freemius.php:16925, includes/class-freemius.php:16936, includes/class-freemius.php:20309, includes/class-freemius.php:20659, includes/class-freemius.php:20728, includes/class-freemius.php:20900
191
  msgctxt "interjection expressing joy or exuberance"
192
  msgid "Yee-haw"
193
  msgstr "Yee-haw"
194
 
195
- #: includes/class-freemius.php:6165
196
  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."
197
  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."
198
 
199
- #: includes/class-freemius.php:6169
200
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
201
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
202
 
203
- #: includes/class-freemius.php:6178, templates/add-ons.php:186, templates/account/partials/addon.php:381
204
  msgid "More information about %s"
205
  msgstr "More information about %s"
206
 
207
- #: includes/class-freemius.php:6179
208
  msgid "Purchase License"
209
  msgstr "Purchase License"
210
 
211
- #: includes/class-freemius.php:7118, templates/connect.php:171
212
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
213
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
214
 
215
- #: includes/class-freemius.php:7122
216
  msgid "start the trial"
217
  msgstr "start the trial"
218
 
219
- #: includes/class-freemius.php:7123, templates/connect.php:175
220
  msgid "complete the install"
221
  msgstr "complete the install"
222
 
223
- #: includes/class-freemius.php:7241
224
  msgid "You are just one step away - %s"
225
  msgstr "You are just one step away - %s"
226
 
227
- #: includes/class-freemius.php:7244
228
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
229
  msgid "Complete \"%s\" Activation Now"
230
  msgstr "Complete \"%s\" Activation Now"
231
 
232
- #: includes/class-freemius.php:7322
233
  msgid "We made a few tweaks to the %s, %s"
234
  msgstr "We made a few tweaks to the %s, %s"
235
 
236
- #: includes/class-freemius.php:7326
237
  msgid "Opt in to make \"%s\" better!"
238
  msgstr "Opt in to make \"%s\" better!"
239
 
240
- #: includes/class-freemius.php:7761
241
  msgid "The upgrade of %s was successfully completed."
242
  msgstr "The upgrade of %s was successfully completed."
243
 
244
- #: includes/class-freemius.php:10243, includes/class-fs-plugin-updater.php:1099, includes/class-fs-plugin-updater.php:1294, includes/class-fs-plugin-updater.php:1301, templates/auto-installation.php:32
245
  msgid "Add-On"
246
  msgstr "Add-On"
247
 
248
- #: includes/class-freemius.php:10245, templates/account.php:392, templates/account.php:400, templates/debug.php:358, templates/debug.php:549
249
  msgid "Plugin"
250
  msgstr "Plugin"
251
 
252
- #: includes/class-freemius.php:10246, templates/account.php:393, templates/account.php:401, templates/debug.php:358, templates/debug.php:549, templates/forms/deactivation/form.php:71
253
  msgid "Theme"
254
  msgstr "Theme"
255
 
256
- #: includes/class-freemius.php:13176
257
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
258
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
259
 
260
- #: includes/class-freemius.php:13190
261
  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."
262
  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."
263
 
264
- #: includes/class-freemius.php:13195
265
  msgid "User Dashboard"
266
  msgstr "User Dashboard"
267
 
268
- #: includes/class-freemius.php:13196
269
  msgid "revert it now"
270
  msgstr "revert it now"
271
 
272
- #: includes/class-freemius.php:13255
273
  msgid "An unknown error has occurred while trying to set the user's beta mode."
274
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
275
 
276
- #: includes/class-freemius.php:13328
277
  msgid "Invalid new user ID or email address."
278
  msgstr "Invalid new user ID or email address."
279
 
280
- #: includes/class-freemius.php:13358, includes/class-freemius.php:22229
281
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
282
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
283
 
284
- #: includes/class-freemius.php:13359, includes/class-freemius.php:22230
285
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
286
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
287
 
288
- #: includes/class-freemius.php:13366, includes/class-freemius.php:22237
289
  msgid "Change Ownership"
290
  msgstr "Change Ownership"
291
 
292
- #: includes/class-freemius.php:13942
293
  msgid "Invalid site details collection."
294
  msgstr "Invalid site details collection."
295
 
296
- #: includes/class-freemius.php:14062
297
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
298
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
299
 
300
- #: includes/class-freemius.php:14064
301
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
302
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
303
 
304
- #: includes/class-freemius.php:14338
305
  msgid "Account is pending activation."
306
  msgstr "Account is pending activation."
307
 
308
- #: includes/class-freemius.php:14450, templates/forms/premium-versions-upgrade-handler.php:47
309
  msgid "Buy a license now"
310
  msgstr "Buy a license now"
311
 
312
- #: includes/class-freemius.php:14462, templates/forms/premium-versions-upgrade-handler.php:46
313
  msgid "Renew your license now"
314
  msgstr "Renew your license now"
315
 
316
- #: includes/class-freemius.php:14466
317
  msgid "%s to access version %s security & feature updates, and support."
318
  msgstr "%s to access version %s security & feature updates, and support."
319
 
320
- #: includes/class-freemius.php:16907
321
  msgid "%s activation was successfully completed."
322
  msgstr "%s activation was successfully completed."
323
 
324
- #: includes/class-freemius.php:16921
325
  msgid "Your account was successfully activated with the %s plan."
326
  msgstr "Your account was successfully activated with the %s plan."
327
 
328
- #: includes/class-freemius.php:16932, includes/class-freemius.php:20724
329
  msgid "Your trial has been successfully started."
330
  msgstr "Your trial has been successfully started."
331
 
332
- #: includes/class-freemius.php:17524, includes/class-freemius.php:17629, includes/class-freemius.php:17804
333
  msgid "Couldn't activate %s."
334
  msgstr "Couldn't activate %s."
335
 
336
- #: includes/class-freemius.php:17525, includes/class-freemius.php:17630, includes/class-freemius.php:17805
337
  msgid "Please contact us with the following message:"
338
  msgstr "Please contact us with the following message:"
339
 
340
- #: includes/class-freemius.php:17626, templates/forms/data-debug-mode.php:162
341
  msgid "An unknown error has occurred."
342
  msgstr "An unknown error has occurred."
343
 
344
- #: includes/class-freemius.php:18162, includes/class-freemius.php:23310
345
  msgid "Upgrade"
346
  msgstr "Upgrade"
347
 
348
- #: includes/class-freemius.php:18168
349
  msgid "Start Trial"
350
  msgstr "Start Trial"
351
 
352
- #: includes/class-freemius.php:18170
353
  msgid "Pricing"
354
  msgstr "Pricing"
355
 
356
- #: includes/class-freemius.php:18250, includes/class-freemius.php:18252
357
  msgid "Affiliation"
358
  msgstr "Affiliation"
359
 
360
- #: includes/class-freemius.php:18280, includes/class-freemius.php:18282, templates/account.php:240, templates/debug.php:324
361
  msgid "Account"
362
  msgstr "Account"
363
 
364
- #: includes/class-freemius.php:18296, includes/class-freemius.php:18298, includes/customizer/class-fs-customizer-support-section.php:60
365
  msgid "Contact Us"
366
  msgstr "Contact Us"
367
 
368
- #: includes/class-freemius.php:18309, includes/class-freemius.php:18311, includes/class-freemius.php:23324, templates/account.php:119, templates/account/partials/addon.php:44
369
  msgid "Add-Ons"
370
  msgstr "Add-Ons"
371
 
372
- #: includes/class-freemius.php:18345
373
  msgctxt "ASCII arrow left icon"
374
  msgid "&#x2190;"
375
  msgstr "&#x2190;"
376
 
377
- #: includes/class-freemius.php:18345
378
  msgctxt "ASCII arrow right icon"
379
  msgid "&#x27a4;"
380
  msgstr "&#x27a4;"
381
 
382
- #: includes/class-freemius.php:18347, templates/pricing.php:109
383
  msgctxt "noun"
384
  msgid "Pricing"
385
  msgstr "Pricing"
386
 
387
- #: includes/class-freemius.php:18560, includes/customizer/class-fs-customizer-support-section.php:67
388
  msgid "Support Forum"
389
  msgstr "Support Forum"
390
 
391
- #: includes/class-freemius.php:19534
392
  msgid "Your email has been successfully verified - you are AWESOME!"
393
  msgstr "Your email has been successfully verified - you are AWESOME!"
394
 
395
- #: includes/class-freemius.php:19535
396
  msgctxt "a positive response"
397
  msgid "Right on"
398
  msgstr "Right on"
399
 
400
- #: includes/class-freemius.php:20041
401
  msgid "seems like the key you entered doesn't match our records."
402
  msgstr "seems like the key you entered doesn't match our records."
403
 
404
- #: includes/class-freemius.php:20065
405
  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."
406
  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."
407
 
408
- #: includes/class-freemius.php:20300
409
  msgid "Your %s Add-on plan was successfully upgraded."
410
  msgstr "Your %s Add-on plan was successfully upgraded."
411
 
412
- #: includes/class-freemius.php:20302
413
  msgid "%s Add-on was successfully purchased."
414
  msgstr "%s Add-on was successfully purchased."
415
 
416
- #: includes/class-freemius.php:20305
417
  msgid "Download the latest version"
418
  msgstr "Download the latest version"
419
 
420
- #: includes/class-freemius.php:20391
421
  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"
422
  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"
423
 
424
- #: includes/class-freemius.php:20397, includes/class-freemius.php:20407, includes/class-freemius.php:20859, includes/class-freemius.php:20948
425
  msgid "Error received from the server:"
426
  msgstr "Error received from the server:"
427
 
428
- #: includes/class-freemius.php:20407
429
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
430
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
431
 
432
- #: includes/class-freemius.php:20621, includes/class-freemius.php:20864, includes/class-freemius.php:20919, includes/class-freemius.php:21026
433
  msgctxt "something somebody says when they are thinking about what you have just said."
434
  msgid "Hmm"
435
  msgstr "Hmm"
436
 
437
- #: includes/class-freemius.php:20634
438
  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."
439
  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."
440
 
441
- #: includes/class-freemius.php:20635, templates/account.php:121, templates/add-ons.php:250, templates/account/partials/addon.php:46
442
  msgctxt "trial period"
443
  msgid "Trial"
444
  msgstr "Trial"
445
 
446
- #: includes/class-freemius.php:20640
447
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
448
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
449
 
450
- #: includes/class-freemius.php:20644, includes/class-freemius.php:20703
451
  msgid "Please contact us here"
452
  msgstr "Please contact us here"
453
 
454
- #: includes/class-freemius.php:20655
455
  msgid "Your plan was successfully activated."
456
  msgstr "Your plan was successfully activated."
457
 
458
- #: includes/class-freemius.php:20656
459
  msgid "Your plan was successfully upgraded."
460
  msgstr "Your plan was successfully upgraded."
461
 
462
- #: includes/class-freemius.php:20673
463
  msgid "Your plan was successfully changed to %s."
464
  msgstr "Your plan was successfully changed to %s."
465
 
466
- #: includes/class-freemius.php:20689
467
  msgid "Your license has expired. You can still continue using the free %s forever."
468
  msgstr "Your license has expired. You can still continue using the free %s forever."
469
 
470
- #: includes/class-freemius.php:20691
471
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
473
 
474
- #: includes/class-freemius.php:20699
475
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
476
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
477
 
478
- #: includes/class-freemius.php:20712
479
  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."
480
  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."
481
 
482
- #: includes/class-freemius.php:20738
483
  msgid "Your free trial has expired. You can still continue using all our free features."
484
  msgstr "Your free trial has expired. You can still continue using all our free features."
485
 
486
- #: includes/class-freemius.php:20740
487
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
488
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
 
490
- #: includes/class-freemius.php:20855
491
  msgid "It looks like the license could not be activated."
492
  msgstr "It looks like the license could not be activated."
493
 
494
- #: includes/class-freemius.php:20897
495
  msgid "Your license was successfully activated."
496
  msgstr "Your license was successfully activated."
497
 
498
- #: includes/class-freemius.php:20923
499
  msgid "It looks like your site currently doesn't have an active license."
500
  msgstr "It looks like your site currently doesn't have an active license."
501
 
502
- #: includes/class-freemius.php:20947
503
  msgid "It looks like the license deactivation failed."
504
  msgstr "It looks like the license deactivation failed."
505
 
506
- #: includes/class-freemius.php:20976
507
  msgid "Your %s license was successfully deactivated."
508
  msgstr "Your %s license was successfully deactivated."
509
 
510
- #: includes/class-freemius.php:20977
511
  msgid "Your license was successfully deactivated, you are back to the %s plan."
512
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
513
 
514
- #: includes/class-freemius.php:20980
515
  msgid "O.K"
516
  msgstr "O.K"
517
 
518
- #: includes/class-freemius.php:21033
519
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
520
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
521
 
522
- #: includes/class-freemius.php:21042
523
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
524
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
525
 
526
- #: includes/class-freemius.php:21084
527
  msgid "You are already running the %s in a trial mode."
528
  msgstr "You are already running the %s in a trial mode."
529
 
530
- #: includes/class-freemius.php:21095
531
  msgid "You already utilized a trial before."
532
  msgstr "You already utilized a trial before."
533
 
534
- #: includes/class-freemius.php:21109
535
  msgid "Plan %s do not exist, therefore, can't start a trial."
536
  msgstr "Plan %s do not exist, therefore, can't start a trial."
537
 
538
- #: includes/class-freemius.php:21120
539
  msgid "Plan %s does not support a trial period."
540
  msgstr "Plan %s does not support a trial period."
541
 
542
- #: includes/class-freemius.php:21131
543
  msgid "None of the %s's plans supports a trial period."
544
  msgstr "None of the %s's plans supports a trial period."
545
 
546
- #: includes/class-freemius.php:21181
547
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
548
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
549
 
550
- #: includes/class-freemius.php:21217
551
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
552
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
553
 
554
- #: includes/class-freemius.php:21236
555
  msgid "Your %s free trial was successfully cancelled."
556
  msgstr "Your %s free trial was successfully cancelled."
557
 
558
- #: includes/class-freemius.php:21552
559
  msgid "Version %s was released."
560
  msgstr "Version %s was released."
561
 
562
- #: includes/class-freemius.php:21552
563
  msgid "Please download %s."
564
  msgstr "Please download %s."
565
 
566
- #: includes/class-freemius.php:21559
567
  msgid "the latest %s version here"
568
  msgstr "the latest %s version here"
569
 
570
- #: includes/class-freemius.php:21564
571
  msgid "New"
572
  msgstr "New"
573
 
574
- #: includes/class-freemius.php:21569
575
  msgid "Seems like you got the latest release."
576
  msgstr "Seems like you got the latest release."
577
 
578
- #: includes/class-freemius.php:21570
579
  msgid "You are all good!"
580
  msgstr "You are all good!"
581
 
582
- #: includes/class-freemius.php:21873
583
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
584
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
585
 
586
- #: includes/class-freemius.php:22013
587
  msgid "Site successfully opted in."
588
  msgstr "Site successfully opted in."
589
 
590
- #: includes/class-freemius.php:22014, includes/class-freemius.php:23020
591
  msgid "Awesome"
592
  msgstr "Awesome"
593
 
594
- #: includes/class-freemius.php:22030, templates/forms/optout.php:41
595
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
596
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
597
 
598
- #: includes/class-freemius.php:22031
599
  msgid "Thank you!"
600
  msgstr "Thank you!"
601
 
602
- #: includes/class-freemius.php:22038
603
  msgid "We will no longer be sending any usage data of %s on %s to %s."
604
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
605
 
606
- #: includes/class-freemius.php:22196
607
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
608
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
609
 
610
- #: includes/class-freemius.php:22202
611
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
612
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
613
 
614
- #: includes/class-freemius.php:22207
615
  msgid "%s is the new owner of the account."
616
  msgstr "%s is the new owner of the account."
617
 
618
- #: includes/class-freemius.php:22209
619
  msgctxt "as congratulations"
620
  msgid "Congrats"
621
  msgstr "Congrats"
622
 
623
- #: includes/class-freemius.php:22245
624
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
625
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
626
 
627
- #: includes/class-freemius.php:22257
628
  msgid "Please provide your full name."
629
  msgstr "Please provide your full name."
630
 
631
- #: includes/class-freemius.php:22262
632
  msgid "Your name was successfully updated."
633
  msgstr "Your name was successfully updated."
634
 
635
- #: includes/class-freemius.php:22323
636
  msgid "You have successfully updated your %s."
637
  msgstr "You have successfully updated your %s."
638
 
639
- #: includes/class-freemius.php:22382
640
  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."
641
  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."
642
 
643
- #: includes/class-freemius.php:22385
644
  msgid "Click here"
645
  msgstr "Click here"
646
 
647
- #: includes/class-freemius.php:22483
648
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
649
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
650
 
651
- #: includes/class-freemius.php:22484
652
  msgctxt "advance notice of something that will need attention."
653
  msgid "Heads up"
654
  msgstr "Heads up"
655
 
656
- #: includes/class-freemius.php:23060
657
  msgctxt "exclamation"
658
  msgid "Hey"
659
  msgstr "Hey"
660
 
661
- #: includes/class-freemius.php:23060
662
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
663
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
664
 
665
- #: includes/class-freemius.php:23068
666
  msgid "No commitment for %s days - cancel anytime!"
667
  msgstr "No commitment for %s days - cancel anytime!"
668
 
669
- #: includes/class-freemius.php:23069
670
  msgid "No credit card required"
671
  msgstr "No credit card required"
672
 
673
- #: includes/class-freemius.php:23076, templates/forms/trial-start.php:53
674
  msgctxt "call to action"
675
  msgid "Start free trial"
676
  msgstr "Start free trial"
677
 
678
- #: includes/class-freemius.php:23153
679
  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!"
680
  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!"
681
 
682
- #: includes/class-freemius.php:23162
683
  msgid "Learn more"
684
  msgstr "Learn more"
685
 
686
- #: includes/class-freemius.php:23348, templates/account.php:556, templates/account.php:706, templates/connect.php:179, templates/connect.php:456, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321
687
  msgid "Activate License"
688
  msgstr "Activate License"
689
 
690
- #: includes/class-freemius.php:23349, templates/account.php:650, templates/account.php:705, templates/account/partials/addon.php:322, templates/account/partials/site.php:271
691
  msgid "Change License"
692
  msgstr "Change License"
693
 
694
- #: includes/class-freemius.php:23462, templates/account/partials/site.php:169
695
  msgid "Opt Out"
696
  msgstr "Opt Out"
697
 
698
- #: includes/class-freemius.php:23464, includes/class-freemius.php:23470, templates/account/partials/site.php:49, templates/account/partials/site.php:169
699
  msgid "Opt In"
700
  msgstr "Opt In"
701
 
702
- #: includes/class-freemius.php:23700
703
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
704
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
705
 
706
- #: includes/class-freemius.php:23708
707
  msgid "Activate %s features"
708
  msgstr "Activate %s features"
709
 
710
- #: includes/class-freemius.php:23721
711
  msgid "Please follow these steps to complete the upgrade"
712
  msgstr "Please follow these steps to complete the upgrade"
713
 
714
- #: includes/class-freemius.php:23725
715
  msgid "Download the latest %s version"
716
  msgstr "Download the latest %s version"
717
 
718
- #: includes/class-freemius.php:23729
719
  msgid "Upload and activate the downloaded version"
720
  msgstr "Upload and activate the downloaded version"
721
 
722
- #: includes/class-freemius.php:23731
723
  msgid "How to upload and activate?"
724
  msgstr "How to upload and activate?"
725
 
726
- #: includes/class-freemius.php:23865
727
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
728
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
729
 
730
- #: includes/class-freemius.php:24034
731
  msgid "Auto installation only works for opted-in users."
732
  msgstr "Auto installation only works for opted-in users."
733
 
734
- #: includes/class-freemius.php:24044, includes/class-freemius.php:24077, includes/class-fs-plugin-updater.php:1273, includes/class-fs-plugin-updater.php:1287
735
  msgid "Invalid module ID."
736
  msgstr "Invalid module ID."
737
 
738
- #: includes/class-freemius.php:24053, includes/class-fs-plugin-updater.php:1309
739
  msgid "Premium version already active."
740
  msgstr "Premium version already active."
741
 
742
- #: includes/class-freemius.php:24060
743
  msgid "You do not have a valid license to access the premium version."
744
  msgstr "You do not have a valid license to access the premium version."
745
 
746
- #: includes/class-freemius.php:24067
747
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
748
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
749
 
750
- #: includes/class-freemius.php:24085, includes/class-fs-plugin-updater.php:1308
751
  msgid "Premium add-on version already installed."
752
  msgstr "Premium add-on version already installed."
753
 
754
- #: includes/class-freemius.php:24435
755
  msgid "View paid features"
756
  msgstr "View paid features"
757
 
758
- #: includes/class-freemius.php:24757
759
  msgid "Thank you so much for using %s and its add-ons!"
760
  msgstr "Thank you so much for using %s and its add-ons!"
761
 
762
- #: includes/class-freemius.php:24758
763
  msgid "Thank you so much for using %s!"
764
  msgstr "Thank you so much for using %s!"
765
 
766
- #: includes/class-freemius.php:24764
767
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
768
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
769
 
770
- #: includes/class-freemius.php:24768
771
  msgid "Thank you so much for using our products!"
772
  msgstr "Thank you so much for using our products!"
773
 
774
- #: includes/class-freemius.php:24769
775
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
776
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
777
 
778
- #: includes/class-freemius.php:24788
779
  msgid "%s and its add-ons"
780
  msgstr "%s and its add-ons"
781
 
782
- #: includes/class-freemius.php:24797
783
  msgid "Products"
784
  msgstr "Products"
785
 
786
- #: includes/class-freemius.php:24804, templates/connect.php:280
787
  msgid "Yes"
788
  msgstr "Yes"
789
 
790
- #: includes/class-freemius.php:24805, templates/connect.php:281
791
  msgid "send me security & feature updates, educational content and offers."
792
  msgstr "send me security & feature updates, educational content and offers."
793
 
794
- #: includes/class-freemius.php:24806, templates/connect.php:286
795
  msgid "No"
796
  msgstr "No"
797
 
798
- #: includes/class-freemius.php:24808, templates/connect.php:288
799
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
800
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
801
 
802
- #: includes/class-freemius.php:24818
803
  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 :-)"
804
  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 :-)"
805
 
806
- #: includes/class-freemius.php:24820, templates/connect.php:295
807
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
808
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
809
 
810
- #: includes/class-freemius.php:25102
811
  msgid "License key is empty."
812
  msgstr "License key is empty."
813
 
@@ -835,15 +835,15 @@ msgstr "new version"
835
  msgid "Important Upgrade Notice:"
836
  msgstr "Important Upgrade Notice:"
837
 
838
- #: includes/class-fs-plugin-updater.php:1338
839
  msgid "Installing plugin: %s"
840
  msgstr "Installing plugin: %s"
841
 
842
- #: includes/class-fs-plugin-updater.php:1379
843
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
844
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
845
 
846
- #: includes/class-fs-plugin-updater.php:1561
847
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
848
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
849
 
@@ -864,7 +864,7 @@ msgstr "Start my free %s"
864
  msgid "Install Free Version Update Now"
865
  msgstr "Install Free Version Update Now"
866
 
867
- #: includes/fs-plugin-info-dialog.php:745, templates/account.php:639
868
  msgid "Install Update Now"
869
  msgstr "Install Update Now"
870
 
@@ -881,7 +881,7 @@ msgctxt "as download latest version"
881
  msgid "Download Latest Free Version"
882
  msgstr "Download Latest Free Version"
883
 
884
- #: includes/fs-plugin-info-dialog.php:772, templates/account.php:99, templates/add-ons.php:37, templates/account/partials/addon.php:25
885
  msgctxt "as download latest version"
886
  msgid "Download Latest"
887
  msgstr "Download Latest"
@@ -890,11 +890,11 @@ msgstr "Download Latest"
890
  msgid "Activate this add-on"
891
  msgstr "Activate this add-on"
892
 
893
- #: includes/fs-plugin-info-dialog.php:789, templates/connect.php:453
894
  msgid "Activate Free Version"
895
  msgstr "Activate Free Version"
896
 
897
- #: includes/fs-plugin-info-dialog.php:790, templates/account.php:123, templates/add-ons.php:330, templates/account/partials/addon.php:48
898
  msgid "Activate"
899
  msgstr "Activate"
900
 
@@ -1023,7 +1023,7 @@ msgstr "After your free %s, pay as little as %s"
1023
  msgid "Details"
1024
  msgstr "Details"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1318, templates/account.php:110, templates/debug.php:201, templates/debug.php:238, templates/debug.php:455, templates/account/partials/addon.php:36
1027
  msgctxt "product version"
1028
  msgid "Version"
1029
  msgstr "Version"
@@ -1037,7 +1037,7 @@ msgstr "Author"
1037
  msgid "Last Updated"
1038
  msgstr "Last Updated"
1039
 
1040
- #: includes/fs-plugin-info-dialog.php:1337, templates/account.php:525
1041
  msgctxt "x-ago"
1042
  msgid "%s ago"
1043
  msgstr "%s ago"
@@ -1146,293 +1146,293 @@ msgstr "Latest Version Installed"
1146
  msgid "Latest Free Version Installed"
1147
  msgstr "Latest Free Version Installed"
1148
 
1149
- #: templates/account.php:100, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:311
1150
  msgid "Downgrading your plan"
1151
  msgstr "Downgrading your plan"
1152
 
1153
- #: templates/account.php:101, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:312
1154
  msgid "Cancelling the subscription"
1155
  msgstr "Cancelling the subscription"
1156
 
1157
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1158
- #: templates/account.php:103, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314
1159
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1160
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1161
 
1162
- #: templates/account.php:104, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:315
1163
  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."
1164
  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."
1165
 
1166
- #: templates/account.php:105, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31
1167
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1168
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1169
 
1170
- #: templates/account.php:106, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:316
1171
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1172
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1173
 
1174
- #: templates/account.php:107, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:317
1175
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1176
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1177
 
1178
  #. translators: %s: Plan title (e.g. "Professional")
1179
- #: templates/account.php:109, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35
1180
  msgid "Activate %s Plan"
1181
  msgstr "Activate %s Plan"
1182
 
1183
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1184
- #: templates/account.php:112, templates/account/partials/addon.php:38, templates/account/partials/site.php:291
1185
  msgid "Auto renews in %s"
1186
  msgstr "Auto renews in %s"
1187
 
1188
  #. translators: %s: Time period (e.g. Expires in "2 months")
1189
- #: templates/account.php:114, templates/account/partials/addon.php:40, templates/account/partials/site.php:293
1190
  msgid "Expires in %s"
1191
  msgstr "Expires in %s"
1192
 
1193
- #: templates/account.php:115
1194
  msgctxt "as synchronize license"
1195
  msgid "Sync License"
1196
  msgstr "Sync License"
1197
 
1198
- #: templates/account.php:116, templates/account/partials/addon.php:41
1199
  msgid "Cancel Trial"
1200
  msgstr "Cancel Trial"
1201
 
1202
- #: templates/account.php:117, templates/account/partials/addon.php:42
1203
  msgid "Change Plan"
1204
  msgstr "Change Plan"
1205
 
1206
- #: templates/account.php:118, templates/account/partials/addon.php:43
1207
  msgctxt "verb"
1208
  msgid "Upgrade"
1209
  msgstr "Upgrade"
1210
 
1211
- #: templates/account.php:120, templates/account/partials/addon.php:45, templates/account/partials/site.php:318
1212
  msgctxt "verb"
1213
  msgid "Downgrade"
1214
  msgstr "Downgrade"
1215
 
1216
- #: templates/account.php:122, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:47, templates/account/partials/site.php:33
1217
  msgid "Free"
1218
  msgstr "Free"
1219
 
1220
- #: templates/account.php:124, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:49
1221
  msgctxt "as product pricing plan"
1222
  msgid "Plan"
1223
  msgstr "Plan"
1224
 
1225
- #: templates/account.php:125
1226
  msgid "Bundle Plan"
1227
  msgstr "Bundle Plan"
1228
 
1229
- #: templates/account.php:248
1230
  msgid "Free Trial"
1231
  msgstr "Free Trial"
1232
 
1233
- #: templates/account.php:259
1234
  msgid "Account Details"
1235
  msgstr "Account Details"
1236
 
1237
- #: templates/account.php:266, templates/forms/data-debug-mode.php:33
1238
  msgid "Start Debug"
1239
  msgstr "Start Debug"
1240
 
1241
- #: templates/account.php:268
1242
  msgid "Stop Debug"
1243
  msgstr "Stop Debug"
1244
 
1245
- #: templates/account.php:275
1246
  msgid "Billing & Invoices"
1247
  msgstr "Billing & Invoices"
1248
 
1249
- #: templates/account.php:286
1250
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1251
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1252
 
1253
- #: templates/account.php:288
1254
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1255
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1256
 
1257
- #: templates/account.php:291
1258
  msgid "Delete Account"
1259
  msgstr "Delete Account"
1260
 
1261
- #: templates/account.php:303, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35
1262
  msgid "Deactivate License"
1263
  msgstr "Deactivate License"
1264
 
1265
- #: templates/account.php:326, templates/forms/subscription-cancellation.php:125
1266
  msgid "Are you sure you want to proceed?"
1267
  msgstr "Are you sure you want to proceed?"
1268
 
1269
- #: templates/account.php:326, templates/account/partials/addon.php:255
1270
  msgid "Cancel Subscription"
1271
  msgstr "Cancel Subscription"
1272
 
1273
- #: templates/account.php:355, templates/account/partials/addon.php:340
1274
  msgctxt "as synchronize"
1275
  msgid "Sync"
1276
  msgstr "Sync"
1277
 
1278
- #: templates/account.php:370, templates/debug.php:505
1279
  msgid "Name"
1280
  msgstr "Name"
1281
 
1282
- #: templates/account.php:376, templates/debug.php:506
1283
  msgid "Email"
1284
  msgstr "Email"
1285
 
1286
- #: templates/account.php:383, templates/debug.php:369, templates/debug.php:555
1287
  msgid "User ID"
1288
  msgstr "User ID"
1289
 
1290
- #: templates/account.php:401, templates/account.php:719, templates/account.php:752, templates/debug.php:236, templates/debug.php:363, templates/debug.php:452, templates/debug.php:504, templates/debug.php:553, templates/debug.php:632, templates/account/payments.php:35, templates/debug/logger.php:21
1291
  msgid "ID"
1292
  msgstr "ID"
1293
 
1294
- #: templates/account.php:408
1295
  msgid "Site ID"
1296
  msgstr "Site ID"
1297
 
1298
- #: templates/account.php:411
1299
  msgid "No ID"
1300
  msgstr "No ID"
1301
 
1302
- #: templates/account.php:416, templates/debug.php:243, templates/debug.php:372, templates/debug.php:456, templates/debug.php:508, templates/account/partials/site.php:227
1303
  msgid "Public Key"
1304
  msgstr "Public Key"
1305
 
1306
- #: templates/account.php:422, templates/debug.php:373, templates/debug.php:457, templates/debug.php:509, templates/account/partials/site.php:239
1307
  msgid "Secret Key"
1308
  msgstr "Secret Key"
1309
 
1310
- #: templates/account.php:425
1311
  msgctxt "as secret encryption key missing"
1312
  msgid "No Secret"
1313
  msgstr "No Secret"
1314
 
1315
- #: templates/account.php:452, templates/account/partials/site.php:120, templates/account/partials/site.php:122
1316
  msgid "Trial"
1317
  msgstr "Trial"
1318
 
1319
- #: templates/account.php:479, templates/debug.php:561, templates/account/partials/site.php:260
1320
  msgid "License Key"
1321
  msgstr "License Key"
1322
 
1323
- #: templates/account.php:510
1324
  msgid "Join the Beta program"
1325
  msgstr "Join the Beta program"
1326
 
1327
- #: templates/account.php:516
1328
  msgid "not verified"
1329
  msgstr "not verified"
1330
 
1331
- #: templates/account.php:525, templates/account/partials/addon.php:190
1332
  msgid "Expired"
1333
  msgstr "Expired"
1334
 
1335
- #: templates/account.php:585
1336
  msgid "Premium version"
1337
  msgstr "Premium version"
1338
 
1339
- #: templates/account.php:587
1340
  msgid "Free version"
1341
  msgstr "Free version"
1342
 
1343
- #: templates/account.php:599
1344
  msgid "Verify Email"
1345
  msgstr "Verify Email"
1346
 
1347
- #: templates/account.php:613
1348
  msgid "Download %s Version"
1349
  msgstr "Download %s Version"
1350
 
1351
- #: templates/account.php:629
1352
  msgid "Download Paid Version"
1353
  msgstr "Download Paid Version"
1354
 
1355
- #: templates/account.php:647, templates/account.php:890, templates/account/partials/site.php:248, templates/account/partials/site.php:270
1356
  msgctxt "verb"
1357
  msgid "Show"
1358
  msgstr "Show"
1359
 
1360
- #: templates/account.php:662
1361
  msgid "What is your %s?"
1362
  msgstr "What is your %s?"
1363
 
1364
- #: templates/account.php:670, templates/account/billing.php:21
1365
  msgctxt "verb"
1366
  msgid "Edit"
1367
  msgstr "Edit"
1368
 
1369
- #: templates/account.php:674, templates/forms/user-change.php:27
1370
  msgid "Change User"
1371
  msgstr "Change User"
1372
 
1373
- #: templates/account.php:698
1374
  msgid "Sites"
1375
  msgstr "Sites"
1376
 
1377
- #: templates/account.php:711
1378
  msgid "Search by address"
1379
  msgstr "Search by address"
1380
 
1381
- #: templates/account.php:720, templates/debug.php:366
1382
  msgid "Address"
1383
  msgstr "Address"
1384
 
1385
- #: templates/account.php:721
1386
  msgid "License"
1387
  msgstr "License"
1388
 
1389
- #: templates/account.php:722
1390
  msgid "Plan"
1391
  msgstr "Plan"
1392
 
1393
- #: templates/account.php:755
1394
  msgctxt "as software license"
1395
  msgid "License"
1396
  msgstr "License"
1397
 
1398
- #: templates/account.php:884
1399
  msgctxt "verb"
1400
  msgid "Hide"
1401
  msgstr "Hide"
1402
 
1403
- #: templates/account.php:906, templates/forms/data-debug-mode.php:31
1404
  msgid "Processing"
1405
  msgstr "Processing"
1406
 
1407
- #: templates/account.php:909
1408
  msgid "Get updates for bleeding edge Beta versions of %s."
1409
  msgstr "Get updates for bleeding edge Beta versions of %s."
1410
 
1411
- #: templates/account.php:967
1412
  msgid "Cancelling %s"
1413
  msgstr "Cancelling %s"
1414
 
1415
- #: templates/account.php:967, templates/account.php:984, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133
1416
  msgid "trial"
1417
  msgstr "trial"
1418
 
1419
- #: templates/account.php:982, templates/forms/deactivation/form.php:150
1420
  msgid "Cancelling %s..."
1421
  msgstr "Cancelling %s..."
1422
 
1423
- #: templates/account.php:985, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134
1424
  msgid "subscription"
1425
  msgstr "subscription"
1426
 
1427
- #: templates/account.php:999
1428
  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?"
1429
  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?"
1430
 
1431
- #: templates/account.php:1073
1432
  msgid "Disabling white-label mode"
1433
  msgstr "Disabling white-label mode"
1434
 
1435
- #: templates/account.php:1074
1436
  msgid "Enabling white-label mode"
1437
  msgstr "Enabling white-label mode"
1438
 
@@ -1458,7 +1458,7 @@ msgctxt "installed add-on"
1458
  msgid "Installed"
1459
  msgstr "Installed"
1460
 
1461
- #: templates/admin-notice.php:13, templates/forms/license-activation.php:220, templates/forms/resend-key.php:77
1462
  msgctxt "as close a window"
1463
  msgid "Dismiss"
1464
  msgstr "Dismiss"
@@ -1513,84 +1513,92 @@ msgstr "Thanks %s!"
1513
  msgid "Agree & Activate License"
1514
  msgstr "Agree & Activate License"
1515
 
1516
- #: templates/connect.php:189
1517
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1518
- msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1519
 
1520
- #: templates/connect.php:196
1521
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1522
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1523
 
1524
- #: templates/connect.php:197
1525
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1526
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1527
 
1528
- #: templates/connect.php:203
1529
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1530
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1531
 
1532
- #: templates/connect.php:204
1533
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1534
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1535
 
1536
- #: templates/connect.php:238
1537
  msgid "We're excited to introduce the Freemius network-level integration."
1538
  msgstr "We're excited to introduce the Freemius network-level integration."
1539
 
1540
- #: templates/connect.php:241
1541
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1542
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1543
 
1544
- #: templates/connect.php:243
1545
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1546
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1547
 
1548
- #: templates/connect.php:245
1549
  msgid "%s's paid features"
1550
  msgstr "%s's paid features"
1551
 
1552
- #: templates/connect.php:250
1553
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1554
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1555
 
1556
- #: templates/connect.php:252
1557
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1558
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1559
 
1560
- #: templates/connect.php:261, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49
1561
  msgid "License key"
1562
  msgstr "License key"
1563
 
1564
- #: templates/connect.php:264, templates/forms/license-activation.php:22
1565
  msgid "Can't find your license key?"
1566
  msgstr "Can't find your license key?"
1567
 
1568
- #: templates/connect.php:323, templates/connect.php:695, templates/forms/deactivation/retry-skip.php:20
1569
  msgctxt "verb"
1570
  msgid "Skip"
1571
  msgstr "Skip"
1572
 
1573
- #: templates/connect.php:326
1574
  msgid "Delegate to Site Admins"
1575
  msgstr "Delegate to Site Admins"
1576
 
1577
- #: templates/connect.php:326
1578
  msgid "If you click it, this decision will be delegated to the sites administrators."
1579
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1580
 
1581
- #: templates/connect.php:364
 
 
 
 
1582
  msgid "Your Profile Overview"
1583
  msgstr "Your Profile Overview"
1584
 
1585
- #: templates/connect.php:365
1586
  msgid "Name and email address"
1587
  msgstr "Name and email address"
1588
 
1589
- #: templates/connect.php:372
 
 
 
 
1590
  msgid "Your Site Overview"
1591
  msgstr "Your Site Overview"
1592
 
1593
- #: templates/connect.php:373
1594
  msgid "Site URL, WP version, PHP info"
1595
  msgstr "Site URL, WP version, PHP info"
1596
 
@@ -1598,64 +1606,84 @@ msgstr "Site URL, WP version, PHP info"
1598
  msgid "Admin Notices"
1599
  msgstr "Admin Notices"
1600
 
1601
- #: templates/connect.php:380, templates/connect.php:396
1602
  msgid "Updates, announcements, marketing, no spam"
1603
  msgstr "Updates, announcements, marketing, no spam"
1604
 
1605
- #: templates/connect.php:386
1606
- msgid "Current %s Events"
1607
- msgstr "Current %s Events"
1608
-
1609
  #: templates/connect.php:387
1610
- msgid "Activation, deactivation and uninstall"
1611
- msgstr "Activation, deactivation and uninstall"
 
 
 
 
1612
 
1613
- #: templates/connect.php:395
 
 
 
 
1614
  msgid "Newsletter"
1615
  msgstr "Newsletter"
1616
 
1617
- #: templates/connect.php:403
1618
  msgid "Plugins & Themes"
1619
  msgstr "Plugins & Themes"
1620
 
1621
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1622
  msgid "Title, slug, version, and is active"
1623
  msgstr "Title, slug, version, and is active"
1624
 
1625
- #: templates/connect.php:421, templates/forms/license-activation.php:41
1626
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1627
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1628
 
1629
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1630
  msgid "What permissions are being granted?"
1631
  msgstr "What permissions are being granted?"
1632
 
1633
- #: templates/connect.php:452
1634
  msgid "Don't have a license key?"
1635
  msgstr "Don't have a license key?"
1636
 
1637
- #: templates/connect.php:455
1638
  msgid "Have a license key?"
1639
  msgstr "Have a license key?"
1640
 
1641
- #: templates/connect.php:463
1642
  msgid "Privacy Policy"
1643
  msgstr "Privacy Policy"
1644
 
1645
- #: templates/connect.php:465
1646
  msgid "License Agreement"
1647
  msgstr "License Agreement"
1648
 
1649
- #: templates/connect.php:465
1650
  msgid "Terms of Service"
1651
  msgstr "Terms of Service"
1652
 
1653
- #: templates/connect.php:854
1654
  msgctxt "as in the process of sending an email"
1655
  msgid "Sending email"
1656
  msgstr "Sending email"
1657
 
1658
- #: templates/connect.php:855
1659
  msgctxt "as activating plugin"
1660
  msgid "Activating"
1661
  msgstr "Activating"
@@ -2244,7 +2272,11 @@ msgstr "Please enter the license key that you received in the email right after
2244
  msgid "Update License"
2245
  msgstr "Update License"
2246
 
2247
- #: templates/forms/license-activation.php:181
 
 
 
 
2248
  msgid "Associate with the license owner's account."
2249
  msgstr "Associate with the license owner's account."
2250
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
+ #: includes/class-freemius.php:1919, templates/account.php:912
23
  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."
24
  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."
25
 
26
+ #: includes/class-freemius.php:1926
27
  msgid "Would you like to proceed with the update?"
28
  msgstr "Would you like to proceed with the update?"
29
 
30
+ #: includes/class-freemius.php:2138
31
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
32
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
33
 
34
+ #: includes/class-freemius.php:2140
35
  msgid "Error"
36
  msgstr "Error"
37
 
38
+ #: includes/class-freemius.php:2540
39
  msgid "I found a better %s"
40
  msgstr "I found a better %s"
41
 
42
+ #: includes/class-freemius.php:2542
43
  msgid "What's the %s's name?"
44
  msgstr "What's the %s's name?"
45
 
46
+ #: includes/class-freemius.php:2548
47
  msgid "It's a temporary %s. I'm just debugging an issue."
48
  msgstr "It's a temporary %s. I'm just debugging an issue."
49
 
50
+ #: includes/class-freemius.php:2550
51
  msgid "Deactivation"
52
  msgstr "Deactivation"
53
 
54
+ #: includes/class-freemius.php:2551
55
  msgid "Theme Switch"
56
  msgstr "Theme Switch"
57
 
58
+ #: includes/class-freemius.php:2560, templates/forms/resend-key.php:24, templates/forms/user-change.php:29
59
  msgid "Other"
60
  msgstr "Other"
61
 
62
+ #: includes/class-freemius.php:2568
63
  msgid "I no longer need the %s"
64
  msgstr "I no longer need the %s"
65
 
66
+ #: includes/class-freemius.php:2575
67
  msgid "I only needed the %s for a short period"
68
  msgstr "I only needed the %s for a short period"
69
 
70
+ #: includes/class-freemius.php:2581
71
  msgid "The %s broke my site"
72
  msgstr "The %s broke my site"
73
 
74
+ #: includes/class-freemius.php:2588
75
  msgid "The %s suddenly stopped working"
76
  msgstr "The %s suddenly stopped working"
77
 
78
+ #: includes/class-freemius.php:2598
79
  msgid "I can't pay for it anymore"
80
  msgstr "I can't pay for it anymore"
81
 
82
+ #: includes/class-freemius.php:2600
83
  msgid "What price would you feel comfortable paying?"
84
  msgstr "What price would you feel comfortable paying?"
85
 
86
+ #: includes/class-freemius.php:2606
87
  msgid "I don't like to share my information with you"
88
  msgstr "I don't like to share my information with you"
89
 
90
+ #: includes/class-freemius.php:2627
91
  msgid "The %s didn't work"
92
  msgstr "The %s didn't work"
93
 
94
+ #: includes/class-freemius.php:2637
95
  msgid "I couldn't understand how to make it work"
96
  msgstr "I couldn't understand how to make it work"
97
 
98
+ #: includes/class-freemius.php:2645
99
  msgid "The %s is great, but I need specific feature that you don't support"
100
  msgstr "The %s is great, but I need specific feature that you don't support"
101
 
102
+ #: includes/class-freemius.php:2647
103
  msgid "What feature?"
104
  msgstr "What feature?"
105
 
106
+ #: includes/class-freemius.php:2651
107
  msgid "The %s is not working"
108
  msgstr "The %s is not working"
109
 
110
+ #: includes/class-freemius.php:2653
111
  msgid "Kindly share what didn't work so we can fix it for future users..."
112
  msgstr "Kindly share what didn't work so we can fix it for future users..."
113
 
114
+ #: includes/class-freemius.php:2657
115
  msgid "It's not what I was looking for"
116
  msgstr "It's not what I was looking for"
117
 
118
+ #: includes/class-freemius.php:2659
119
  msgid "What you've been looking for?"
120
  msgstr "What you've been looking for?"
121
 
122
+ #: includes/class-freemius.php:2663
123
  msgid "The %s didn't work as expected"
124
  msgstr "The %s didn't work as expected"
125
 
126
+ #: includes/class-freemius.php:2665
127
  msgid "What did you expect?"
128
  msgstr "What did you expect?"
129
 
130
+ #: includes/class-freemius.php:3520, templates/debug.php:20
131
  msgid "Freemius Debug"
132
  msgstr "Freemius Debug"
133
 
134
+ #: includes/class-freemius.php:4272
135
  msgid "I don't know what is cURL or how to install it, help me!"
136
  msgstr "I don't know what is cURL or how to install it, help me!"
137
 
138
+ #: includes/class-freemius.php:4274
139
  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."
140
  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."
141
 
142
+ #: includes/class-freemius.php:4281
143
  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."
144
  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."
145
 
146
+ #: includes/class-freemius.php:4386
147
  msgid "Yes - do your thing"
148
  msgstr "Yes - do your thing"
149
 
150
+ #: includes/class-freemius.php:4391
151
  msgid "No - just deactivate"
152
  msgstr "No - just deactivate"
153
 
154
+ #: includes/class-freemius.php:4436, includes/class-freemius.php:4930, includes/class-freemius.php:6191, includes/class-freemius.php:13368, includes/class-freemius.php:14110, includes/class-freemius.php:17542, includes/class-freemius.php:17647, includes/class-freemius.php:17822, includes/class-freemius.php:20056, includes/class-freemius.php:20414, includes/class-freemius.php:20424, includes/class-freemius.php:21109, includes/class-freemius.php:22015, includes/class-freemius.php:22148, includes/class-freemius.php:22304, templates/add-ons.php:57
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
+ #: includes/class-freemius.php:4505
160
  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."
161
  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."
162
 
163
+ #: includes/class-freemius.php:4927
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s cannot run without %s."
167
 
168
+ #: includes/class-freemius.php:4928
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s cannot run without the plugin."
172
 
173
+ #: includes/class-freemius.php:5127, includes/class-freemius.php:5152, includes/class-freemius.php:21180
174
  msgid "Unexpected API error. Please contact the %s's author with the following error."
175
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
176
 
177
+ #: includes/class-freemius.php:5857
178
  msgid "Premium %s version was successfully activated."
179
  msgstr "Premium %s version was successfully activated."
180
 
181
+ #: includes/class-freemius.php:5869, includes/class-freemius.php:7774
182
  msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
183
  msgid "W00t"
184
  msgstr "W00t"
185
 
186
+ #: includes/class-freemius.php:5884
187
  msgid "You have a %s license."
188
  msgstr "You have a %s license."
189
 
190
+ #: includes/class-freemius.php:5888, includes/class-freemius.php:16947, includes/class-freemius.php:16958, includes/class-freemius.php:20325, includes/class-freemius.php:20689, includes/class-freemius.php:20758, includes/class-freemius.php:20930
191
  msgctxt "interjection expressing joy or exuberance"
192
  msgid "Yee-haw"
193
  msgstr "Yee-haw"
194
 
195
+ #: includes/class-freemius.php:6174
196
  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."
197
  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."
198
 
199
+ #: includes/class-freemius.php:6178
200
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
201
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
202
 
203
+ #: includes/class-freemius.php:6187, templates/add-ons.php:186, templates/account/partials/addon.php:381
204
  msgid "More information about %s"
205
  msgstr "More information about %s"
206
 
207
+ #: includes/class-freemius.php:6188
208
  msgid "Purchase License"
209
  msgstr "Purchase License"
210
 
211
+ #: includes/class-freemius.php:7125, templates/connect.php:171
212
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
213
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
214
 
215
+ #: includes/class-freemius.php:7129
216
  msgid "start the trial"
217
  msgstr "start the trial"
218
 
219
+ #: includes/class-freemius.php:7130, templates/connect.php:175
220
  msgid "complete the install"
221
  msgstr "complete the install"
222
 
223
+ #: includes/class-freemius.php:7249
224
  msgid "You are just one step away - %s"
225
  msgstr "You are just one step away - %s"
226
 
227
+ #: includes/class-freemius.php:7252
228
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
229
  msgid "Complete \"%s\" Activation Now"
230
  msgstr "Complete \"%s\" Activation Now"
231
 
232
+ #: includes/class-freemius.php:7334
233
  msgid "We made a few tweaks to the %s, %s"
234
  msgstr "We made a few tweaks to the %s, %s"
235
 
236
+ #: includes/class-freemius.php:7338
237
  msgid "Opt in to make \"%s\" better!"
238
  msgstr "Opt in to make \"%s\" better!"
239
 
240
+ #: includes/class-freemius.php:7773
241
  msgid "The upgrade of %s was successfully completed."
242
  msgstr "The upgrade of %s was successfully completed."
243
 
244
+ #: includes/class-freemius.php:10255, includes/class-fs-plugin-updater.php:1087, includes/class-fs-plugin-updater.php:1282, includes/class-fs-plugin-updater.php:1289, templates/auto-installation.php:32
245
  msgid "Add-On"
246
  msgstr "Add-On"
247
 
248
+ #: includes/class-freemius.php:10257, templates/account.php:394, templates/account.php:402, templates/debug.php:358, templates/debug.php:549
249
  msgid "Plugin"
250
  msgstr "Plugin"
251
 
252
+ #: includes/class-freemius.php:10258, templates/account.php:395, templates/account.php:403, templates/debug.php:358, templates/debug.php:549, templates/forms/deactivation/form.php:71
253
  msgid "Theme"
254
  msgstr "Theme"
255
 
256
+ #: includes/class-freemius.php:13188
257
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
258
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
259
 
260
+ #: includes/class-freemius.php:13202
261
  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."
262
  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."
263
 
264
+ #: includes/class-freemius.php:13207
265
  msgid "User Dashboard"
266
  msgstr "User Dashboard"
267
 
268
+ #: includes/class-freemius.php:13208
269
  msgid "revert it now"
270
  msgstr "revert it now"
271
 
272
+ #: includes/class-freemius.php:13266
273
  msgid "An unknown error has occurred while trying to set the user's beta mode."
274
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
275
 
276
+ #: includes/class-freemius.php:13339
277
  msgid "Invalid new user ID or email address."
278
  msgstr "Invalid new user ID or email address."
279
 
280
+ #: includes/class-freemius.php:13369, includes/class-freemius.php:22259
281
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
282
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
283
 
284
+ #: includes/class-freemius.php:13370, includes/class-freemius.php:22260
285
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
286
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
287
 
288
+ #: includes/class-freemius.php:13377, includes/class-freemius.php:22267
289
  msgid "Change Ownership"
290
  msgstr "Change Ownership"
291
 
292
+ #: includes/class-freemius.php:13977
293
  msgid "Invalid site details collection."
294
  msgstr "Invalid site details collection."
295
 
296
+ #: includes/class-freemius.php:14097
297
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
298
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
299
 
300
+ #: includes/class-freemius.php:14099
301
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
302
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
303
 
304
+ #: includes/class-freemius.php:14373
305
  msgid "Account is pending activation."
306
  msgstr "Account is pending activation."
307
 
308
+ #: includes/class-freemius.php:14485, templates/forms/premium-versions-upgrade-handler.php:47
309
  msgid "Buy a license now"
310
  msgstr "Buy a license now"
311
 
312
+ #: includes/class-freemius.php:14497, templates/forms/premium-versions-upgrade-handler.php:46
313
  msgid "Renew your license now"
314
  msgstr "Renew your license now"
315
 
316
+ #: includes/class-freemius.php:14501
317
  msgid "%s to access version %s security & feature updates, and support."
318
  msgstr "%s to access version %s security & feature updates, and support."
319
 
320
+ #: includes/class-freemius.php:16929
321
  msgid "%s activation was successfully completed."
322
  msgstr "%s activation was successfully completed."
323
 
324
+ #: includes/class-freemius.php:16943
325
  msgid "Your account was successfully activated with the %s plan."
326
  msgstr "Your account was successfully activated with the %s plan."
327
 
328
+ #: includes/class-freemius.php:16954, includes/class-freemius.php:20754
329
  msgid "Your trial has been successfully started."
330
  msgstr "Your trial has been successfully started."
331
 
332
+ #: includes/class-freemius.php:17540, includes/class-freemius.php:17645, includes/class-freemius.php:17820
333
  msgid "Couldn't activate %s."
334
  msgstr "Couldn't activate %s."
335
 
336
+ #: includes/class-freemius.php:17541, includes/class-freemius.php:17646, includes/class-freemius.php:17821
337
  msgid "Please contact us with the following message:"
338
  msgstr "Please contact us with the following message:"
339
 
340
+ #: includes/class-freemius.php:17642, templates/forms/data-debug-mode.php:162
341
  msgid "An unknown error has occurred."
342
  msgstr "An unknown error has occurred."
343
 
344
+ #: includes/class-freemius.php:18178, includes/class-freemius.php:23340
345
  msgid "Upgrade"
346
  msgstr "Upgrade"
347
 
348
+ #: includes/class-freemius.php:18184
349
  msgid "Start Trial"
350
  msgstr "Start Trial"
351
 
352
+ #: includes/class-freemius.php:18186
353
  msgid "Pricing"
354
  msgstr "Pricing"
355
 
356
+ #: includes/class-freemius.php:18266, includes/class-freemius.php:18268
357
  msgid "Affiliation"
358
  msgstr "Affiliation"
359
 
360
+ #: includes/class-freemius.php:18296, includes/class-freemius.php:18298, templates/account.php:242, templates/debug.php:324
361
  msgid "Account"
362
  msgstr "Account"
363
 
364
+ #: includes/class-freemius.php:18312, includes/class-freemius.php:18314, includes/customizer/class-fs-customizer-support-section.php:60
365
  msgid "Contact Us"
366
  msgstr "Contact Us"
367
 
368
+ #: includes/class-freemius.php:18325, includes/class-freemius.php:18327, includes/class-freemius.php:23354, templates/account.php:121, templates/account/partials/addon.php:44
369
  msgid "Add-Ons"
370
  msgstr "Add-Ons"
371
 
372
+ #: includes/class-freemius.php:18361
373
  msgctxt "ASCII arrow left icon"
374
  msgid "&#x2190;"
375
  msgstr "&#x2190;"
376
 
377
+ #: includes/class-freemius.php:18361
378
  msgctxt "ASCII arrow right icon"
379
  msgid "&#x27a4;"
380
  msgstr "&#x27a4;"
381
 
382
+ #: includes/class-freemius.php:18363, templates/pricing.php:109
383
  msgctxt "noun"
384
  msgid "Pricing"
385
  msgstr "Pricing"
386
 
387
+ #: includes/class-freemius.php:18576, includes/customizer/class-fs-customizer-support-section.php:67
388
  msgid "Support Forum"
389
  msgstr "Support Forum"
390
 
391
+ #: includes/class-freemius.php:19550
392
  msgid "Your email has been successfully verified - you are AWESOME!"
393
  msgstr "Your email has been successfully verified - you are AWESOME!"
394
 
395
+ #: includes/class-freemius.php:19551
396
  msgctxt "a positive response"
397
  msgid "Right on"
398
  msgstr "Right on"
399
 
400
+ #: includes/class-freemius.php:20057
401
  msgid "seems like the key you entered doesn't match our records."
402
  msgstr "seems like the key you entered doesn't match our records."
403
 
404
+ #: includes/class-freemius.php:20081
405
  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."
406
  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."
407
 
408
+ #: includes/class-freemius.php:20316
409
  msgid "Your %s Add-on plan was successfully upgraded."
410
  msgstr "Your %s Add-on plan was successfully upgraded."
411
 
412
+ #: includes/class-freemius.php:20318
413
  msgid "%s Add-on was successfully purchased."
414
  msgstr "%s Add-on was successfully purchased."
415
 
416
+ #: includes/class-freemius.php:20321
417
  msgid "Download the latest version"
418
  msgstr "Download the latest version"
419
 
420
+ #: includes/class-freemius.php:20407
421
  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"
422
  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"
423
 
424
+ #: includes/class-freemius.php:20413, includes/class-freemius.php:20423, includes/class-freemius.php:20889, includes/class-freemius.php:20978
425
  msgid "Error received from the server:"
426
  msgstr "Error received from the server:"
427
 
428
+ #: includes/class-freemius.php:20423
429
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
430
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
431
 
432
+ #: includes/class-freemius.php:20651, includes/class-freemius.php:20894, includes/class-freemius.php:20949, includes/class-freemius.php:21056
433
  msgctxt "something somebody says when they are thinking about what you have just said."
434
  msgid "Hmm"
435
  msgstr "Hmm"
436
 
437
+ #: includes/class-freemius.php:20664
438
  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."
439
  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."
440
 
441
+ #: includes/class-freemius.php:20665, templates/account.php:123, templates/add-ons.php:250, templates/account/partials/addon.php:46
442
  msgctxt "trial period"
443
  msgid "Trial"
444
  msgstr "Trial"
445
 
446
+ #: includes/class-freemius.php:20670
447
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
448
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
449
 
450
+ #: includes/class-freemius.php:20674, includes/class-freemius.php:20733
451
  msgid "Please contact us here"
452
  msgstr "Please contact us here"
453
 
454
+ #: includes/class-freemius.php:20685
455
  msgid "Your plan was successfully activated."
456
  msgstr "Your plan was successfully activated."
457
 
458
+ #: includes/class-freemius.php:20686
459
  msgid "Your plan was successfully upgraded."
460
  msgstr "Your plan was successfully upgraded."
461
 
462
+ #: includes/class-freemius.php:20703
463
  msgid "Your plan was successfully changed to %s."
464
  msgstr "Your plan was successfully changed to %s."
465
 
466
+ #: includes/class-freemius.php:20719
467
  msgid "Your license has expired. You can still continue using the free %s forever."
468
  msgstr "Your license has expired. You can still continue using the free %s forever."
469
 
470
+ #: includes/class-freemius.php:20721
471
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
473
 
474
+ #: includes/class-freemius.php:20729
475
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
476
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
477
 
478
+ #: includes/class-freemius.php:20742
479
  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."
480
  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."
481
 
482
+ #: includes/class-freemius.php:20768
483
  msgid "Your free trial has expired. You can still continue using all our free features."
484
  msgstr "Your free trial has expired. You can still continue using all our free features."
485
 
486
+ #: includes/class-freemius.php:20770
487
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
488
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
 
490
+ #: includes/class-freemius.php:20885
491
  msgid "It looks like the license could not be activated."
492
  msgstr "It looks like the license could not be activated."
493
 
494
+ #: includes/class-freemius.php:20927
495
  msgid "Your license was successfully activated."
496
  msgstr "Your license was successfully activated."
497
 
498
+ #: includes/class-freemius.php:20953
499
  msgid "It looks like your site currently doesn't have an active license."
500
  msgstr "It looks like your site currently doesn't have an active license."
501
 
502
+ #: includes/class-freemius.php:20977
503
  msgid "It looks like the license deactivation failed."
504
  msgstr "It looks like the license deactivation failed."
505
 
506
+ #: includes/class-freemius.php:21006
507
  msgid "Your %s license was successfully deactivated."
508
  msgstr "Your %s license was successfully deactivated."
509
 
510
+ #: includes/class-freemius.php:21007
511
  msgid "Your license was successfully deactivated, you are back to the %s plan."
512
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
513
 
514
+ #: includes/class-freemius.php:21010
515
  msgid "O.K"
516
  msgstr "O.K"
517
 
518
+ #: includes/class-freemius.php:21063
519
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
520
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
521
 
522
+ #: includes/class-freemius.php:21072
523
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
524
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
525
 
526
+ #: includes/class-freemius.php:21114
527
  msgid "You are already running the %s in a trial mode."
528
  msgstr "You are already running the %s in a trial mode."
529
 
530
+ #: includes/class-freemius.php:21125
531
  msgid "You already utilized a trial before."
532
  msgstr "You already utilized a trial before."
533
 
534
+ #: includes/class-freemius.php:21139
535
  msgid "Plan %s do not exist, therefore, can't start a trial."
536
  msgstr "Plan %s do not exist, therefore, can't start a trial."
537
 
538
+ #: includes/class-freemius.php:21150
539
  msgid "Plan %s does not support a trial period."
540
  msgstr "Plan %s does not support a trial period."
541
 
542
+ #: includes/class-freemius.php:21161
543
  msgid "None of the %s's plans supports a trial period."
544
  msgstr "None of the %s's plans supports a trial period."
545
 
546
+ #: includes/class-freemius.php:21211
547
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
548
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
549
 
550
+ #: includes/class-freemius.php:21247
551
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
552
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
553
 
554
+ #: includes/class-freemius.php:21266
555
  msgid "Your %s free trial was successfully cancelled."
556
  msgstr "Your %s free trial was successfully cancelled."
557
 
558
+ #: includes/class-freemius.php:21582
559
  msgid "Version %s was released."
560
  msgstr "Version %s was released."
561
 
562
+ #: includes/class-freemius.php:21582
563
  msgid "Please download %s."
564
  msgstr "Please download %s."
565
 
566
+ #: includes/class-freemius.php:21589
567
  msgid "the latest %s version here"
568
  msgstr "the latest %s version here"
569
 
570
+ #: includes/class-freemius.php:21594
571
  msgid "New"
572
  msgstr "New"
573
 
574
+ #: includes/class-freemius.php:21599
575
  msgid "Seems like you got the latest release."
576
  msgstr "Seems like you got the latest release."
577
 
578
+ #: includes/class-freemius.php:21600
579
  msgid "You are all good!"
580
  msgstr "You are all good!"
581
 
582
+ #: includes/class-freemius.php:21903
583
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
584
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
585
 
586
+ #: includes/class-freemius.php:22043
587
  msgid "Site successfully opted in."
588
  msgstr "Site successfully opted in."
589
 
590
+ #: includes/class-freemius.php:22044, includes/class-freemius.php:23050
591
  msgid "Awesome"
592
  msgstr "Awesome"
593
 
594
+ #: includes/class-freemius.php:22060, templates/forms/optout.php:41
595
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
596
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
597
 
598
+ #: includes/class-freemius.php:22061
599
  msgid "Thank you!"
600
  msgstr "Thank you!"
601
 
602
+ #: includes/class-freemius.php:22068
603
  msgid "We will no longer be sending any usage data of %s on %s to %s."
604
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
605
 
606
+ #: includes/class-freemius.php:22226
607
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
608
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
609
 
610
+ #: includes/class-freemius.php:22232
611
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
612
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
613
 
614
+ #: includes/class-freemius.php:22237
615
  msgid "%s is the new owner of the account."
616
  msgstr "%s is the new owner of the account."
617
 
618
+ #: includes/class-freemius.php:22239
619
  msgctxt "as congratulations"
620
  msgid "Congrats"
621
  msgstr "Congrats"
622
 
623
+ #: includes/class-freemius.php:22275
624
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
625
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
626
 
627
+ #: includes/class-freemius.php:22287
628
  msgid "Please provide your full name."
629
  msgstr "Please provide your full name."
630
 
631
+ #: includes/class-freemius.php:22292
632
  msgid "Your name was successfully updated."
633
  msgstr "Your name was successfully updated."
634
 
635
+ #: includes/class-freemius.php:22353
636
  msgid "You have successfully updated your %s."
637
  msgstr "You have successfully updated your %s."
638
 
639
+ #: includes/class-freemius.php:22412
640
  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."
641
  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."
642
 
643
+ #: includes/class-freemius.php:22415
644
  msgid "Click here"
645
  msgstr "Click here"
646
 
647
+ #: includes/class-freemius.php:22513
648
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
649
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
650
 
651
+ #: includes/class-freemius.php:22514
652
  msgctxt "advance notice of something that will need attention."
653
  msgid "Heads up"
654
  msgstr "Heads up"
655
 
656
+ #: includes/class-freemius.php:23090
657
  msgctxt "exclamation"
658
  msgid "Hey"
659
  msgstr "Hey"
660
 
661
+ #: includes/class-freemius.php:23090
662
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
663
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
664
 
665
+ #: includes/class-freemius.php:23098
666
  msgid "No commitment for %s days - cancel anytime!"
667
  msgstr "No commitment for %s days - cancel anytime!"
668
 
669
+ #: includes/class-freemius.php:23099
670
  msgid "No credit card required"
671
  msgstr "No credit card required"
672
 
673
+ #: includes/class-freemius.php:23106, templates/forms/trial-start.php:53
674
  msgctxt "call to action"
675
  msgid "Start free trial"
676
  msgstr "Start free trial"
677
 
678
+ #: includes/class-freemius.php:23183
679
  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!"
680
  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!"
681
 
682
+ #: includes/class-freemius.php:23192
683
  msgid "Learn more"
684
  msgstr "Learn more"
685
 
686
+ #: includes/class-freemius.php:23378, templates/account.php:558, templates/account.php:708, templates/connect.php:179, templates/connect.php:461, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321
687
  msgid "Activate License"
688
  msgstr "Activate License"
689
 
690
+ #: includes/class-freemius.php:23379, templates/account.php:652, templates/account.php:707, templates/account/partials/addon.php:322, templates/account/partials/site.php:271
691
  msgid "Change License"
692
  msgstr "Change License"
693
 
694
+ #: includes/class-freemius.php:23500, templates/account/partials/site.php:169
695
  msgid "Opt Out"
696
  msgstr "Opt Out"
697
 
698
+ #: includes/class-freemius.php:23502, includes/class-freemius.php:23508, templates/account/partials/site.php:49, templates/account/partials/site.php:169
699
  msgid "Opt In"
700
  msgstr "Opt In"
701
 
702
+ #: includes/class-freemius.php:23738
703
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
704
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
705
 
706
+ #: includes/class-freemius.php:23746
707
  msgid "Activate %s features"
708
  msgstr "Activate %s features"
709
 
710
+ #: includes/class-freemius.php:23759
711
  msgid "Please follow these steps to complete the upgrade"
712
  msgstr "Please follow these steps to complete the upgrade"
713
 
714
+ #: includes/class-freemius.php:23763
715
  msgid "Download the latest %s version"
716
  msgstr "Download the latest %s version"
717
 
718
+ #: includes/class-freemius.php:23767
719
  msgid "Upload and activate the downloaded version"
720
  msgstr "Upload and activate the downloaded version"
721
 
722
+ #: includes/class-freemius.php:23769
723
  msgid "How to upload and activate?"
724
  msgstr "How to upload and activate?"
725
 
726
+ #: includes/class-freemius.php:23903
727
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
728
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
729
 
730
+ #: includes/class-freemius.php:24072
731
  msgid "Auto installation only works for opted-in users."
732
  msgstr "Auto installation only works for opted-in users."
733
 
734
+ #: includes/class-freemius.php:24082, includes/class-freemius.php:24115, includes/class-fs-plugin-updater.php:1261, includes/class-fs-plugin-updater.php:1275
735
  msgid "Invalid module ID."
736
  msgstr "Invalid module ID."
737
 
738
+ #: includes/class-freemius.php:24091, includes/class-fs-plugin-updater.php:1297
739
  msgid "Premium version already active."
740
  msgstr "Premium version already active."
741
 
742
+ #: includes/class-freemius.php:24098
743
  msgid "You do not have a valid license to access the premium version."
744
  msgstr "You do not have a valid license to access the premium version."
745
 
746
+ #: includes/class-freemius.php:24105
747
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
748
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
749
 
750
+ #: includes/class-freemius.php:24123, includes/class-fs-plugin-updater.php:1296
751
  msgid "Premium add-on version already installed."
752
  msgstr "Premium add-on version already installed."
753
 
754
+ #: includes/class-freemius.php:24473
755
  msgid "View paid features"
756
  msgstr "View paid features"
757
 
758
+ #: includes/class-freemius.php:24795
759
  msgid "Thank you so much for using %s and its add-ons!"
760
  msgstr "Thank you so much for using %s and its add-ons!"
761
 
762
+ #: includes/class-freemius.php:24796
763
  msgid "Thank you so much for using %s!"
764
  msgstr "Thank you so much for using %s!"
765
 
766
+ #: includes/class-freemius.php:24802
767
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
768
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
769
 
770
+ #: includes/class-freemius.php:24806
771
  msgid "Thank you so much for using our products!"
772
  msgstr "Thank you so much for using our products!"
773
 
774
+ #: includes/class-freemius.php:24807
775
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
776
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
777
 
778
+ #: includes/class-freemius.php:24826
779
  msgid "%s and its add-ons"
780
  msgstr "%s and its add-ons"
781
 
782
+ #: includes/class-freemius.php:24835
783
  msgid "Products"
784
  msgstr "Products"
785
 
786
+ #: includes/class-freemius.php:24842, templates/connect.php:275
787
  msgid "Yes"
788
  msgstr "Yes"
789
 
790
+ #: includes/class-freemius.php:24843, templates/connect.php:276
791
  msgid "send me security & feature updates, educational content and offers."
792
  msgstr "send me security & feature updates, educational content and offers."
793
 
794
+ #: includes/class-freemius.php:24844, templates/connect.php:281
795
  msgid "No"
796
  msgstr "No"
797
 
798
+ #: includes/class-freemius.php:24846, templates/connect.php:283
799
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
800
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
801
 
802
+ #: includes/class-freemius.php:24856
803
  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 :-)"
804
  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 :-)"
805
 
806
+ #: includes/class-freemius.php:24858, templates/connect.php:290
807
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
808
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
809
 
810
+ #: includes/class-freemius.php:25140
811
  msgid "License key is empty."
812
  msgstr "License key is empty."
813
 
835
  msgid "Important Upgrade Notice:"
836
  msgstr "Important Upgrade Notice:"
837
 
838
+ #: includes/class-fs-plugin-updater.php:1326
839
  msgid "Installing plugin: %s"
840
  msgstr "Installing plugin: %s"
841
 
842
+ #: includes/class-fs-plugin-updater.php:1367
843
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
844
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
845
 
846
+ #: includes/class-fs-plugin-updater.php:1549
847
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
848
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
849
 
864
  msgid "Install Free Version Update Now"
865
  msgstr "Install Free Version Update Now"
866
 
867
+ #: includes/fs-plugin-info-dialog.php:745, templates/account.php:641
868
  msgid "Install Update Now"
869
  msgstr "Install Update Now"
870
 
881
  msgid "Download Latest Free Version"
882
  msgstr "Download Latest Free Version"
883
 
884
+ #: includes/fs-plugin-info-dialog.php:772, templates/account.php:101, templates/add-ons.php:37, templates/account/partials/addon.php:25
885
  msgctxt "as download latest version"
886
  msgid "Download Latest"
887
  msgstr "Download Latest"
890
  msgid "Activate this add-on"
891
  msgstr "Activate this add-on"
892
 
893
+ #: includes/fs-plugin-info-dialog.php:789, templates/connect.php:458
894
  msgid "Activate Free Version"
895
  msgstr "Activate Free Version"
896
 
897
+ #: includes/fs-plugin-info-dialog.php:790, templates/account.php:125, templates/add-ons.php:330, templates/account/partials/addon.php:48
898
  msgid "Activate"
899
  msgstr "Activate"
900
 
1023
  msgid "Details"
1024
  msgstr "Details"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php:1318, templates/account.php:112, templates/debug.php:201, templates/debug.php:238, templates/debug.php:455, templates/account/partials/addon.php:36
1027
  msgctxt "product version"
1028
  msgid "Version"
1029
  msgstr "Version"
1037
  msgid "Last Updated"
1038
  msgstr "Last Updated"
1039
 
1040
+ #: includes/fs-plugin-info-dialog.php:1337, templates/account.php:527
1041
  msgctxt "x-ago"
1042
  msgid "%s ago"
1043
  msgstr "%s ago"
1146
  msgid "Latest Free Version Installed"
1147
  msgstr "Latest Free Version Installed"
1148
 
1149
+ #: templates/account.php:102, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:311
1150
  msgid "Downgrading your plan"
1151
  msgstr "Downgrading your plan"
1152
 
1153
+ #: templates/account.php:103, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:312
1154
  msgid "Cancelling the subscription"
1155
  msgstr "Cancelling the subscription"
1156
 
1157
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1158
+ #: templates/account.php:105, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314
1159
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1160
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1161
 
1162
+ #: templates/account.php:106, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:315
1163
  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."
1164
  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."
1165
 
1166
+ #: templates/account.php:107, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31
1167
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1168
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1169
 
1170
+ #: templates/account.php:108, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:316
1171
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1172
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1173
 
1174
+ #: templates/account.php:109, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:317
1175
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1176
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1177
 
1178
  #. translators: %s: Plan title (e.g. "Professional")
1179
+ #: templates/account.php:111, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35
1180
  msgid "Activate %s Plan"
1181
  msgstr "Activate %s Plan"
1182
 
1183
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1184
+ #: templates/account.php:114, templates/account/partials/addon.php:38, templates/account/partials/site.php:291
1185
  msgid "Auto renews in %s"
1186
  msgstr "Auto renews in %s"
1187
 
1188
  #. translators: %s: Time period (e.g. Expires in "2 months")
1189
+ #: templates/account.php:116, templates/account/partials/addon.php:40, templates/account/partials/site.php:293
1190
  msgid "Expires in %s"
1191
  msgstr "Expires in %s"
1192
 
1193
+ #: templates/account.php:117
1194
  msgctxt "as synchronize license"
1195
  msgid "Sync License"
1196
  msgstr "Sync License"
1197
 
1198
+ #: templates/account.php:118, templates/account/partials/addon.php:41
1199
  msgid "Cancel Trial"
1200
  msgstr "Cancel Trial"
1201
 
1202
+ #: templates/account.php:119, templates/account/partials/addon.php:42
1203
  msgid "Change Plan"
1204
  msgstr "Change Plan"
1205
 
1206
+ #: templates/account.php:120, templates/account/partials/addon.php:43
1207
  msgctxt "verb"
1208
  msgid "Upgrade"
1209
  msgstr "Upgrade"
1210
 
1211
+ #: templates/account.php:122, templates/account/partials/addon.php:45, templates/account/partials/site.php:318
1212
  msgctxt "verb"
1213
  msgid "Downgrade"
1214
  msgstr "Downgrade"
1215
 
1216
+ #: templates/account.php:124, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:47, templates/account/partials/site.php:33
1217
  msgid "Free"
1218
  msgstr "Free"
1219
 
1220
+ #: templates/account.php:126, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:49
1221
  msgctxt "as product pricing plan"
1222
  msgid "Plan"
1223
  msgstr "Plan"
1224
 
1225
+ #: templates/account.php:127
1226
  msgid "Bundle Plan"
1227
  msgstr "Bundle Plan"
1228
 
1229
+ #: templates/account.php:250
1230
  msgid "Free Trial"
1231
  msgstr "Free Trial"
1232
 
1233
+ #: templates/account.php:261
1234
  msgid "Account Details"
1235
  msgstr "Account Details"
1236
 
1237
+ #: templates/account.php:268, templates/forms/data-debug-mode.php:33
1238
  msgid "Start Debug"
1239
  msgstr "Start Debug"
1240
 
1241
+ #: templates/account.php:270
1242
  msgid "Stop Debug"
1243
  msgstr "Stop Debug"
1244
 
1245
+ #: templates/account.php:277
1246
  msgid "Billing & Invoices"
1247
  msgstr "Billing & Invoices"
1248
 
1249
+ #: templates/account.php:288
1250
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1251
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1252
 
1253
+ #: templates/account.php:290
1254
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1255
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1256
 
1257
+ #: templates/account.php:293
1258
  msgid "Delete Account"
1259
  msgstr "Delete Account"
1260
 
1261
+ #: templates/account.php:305, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35
1262
  msgid "Deactivate License"
1263
  msgstr "Deactivate License"
1264
 
1265
+ #: templates/account.php:328, templates/forms/subscription-cancellation.php:125
1266
  msgid "Are you sure you want to proceed?"
1267
  msgstr "Are you sure you want to proceed?"
1268
 
1269
+ #: templates/account.php:328, templates/account/partials/addon.php:255
1270
  msgid "Cancel Subscription"
1271
  msgstr "Cancel Subscription"
1272
 
1273
+ #: templates/account.php:357, templates/account/partials/addon.php:340
1274
  msgctxt "as synchronize"
1275
  msgid "Sync"
1276
  msgstr "Sync"
1277
 
1278
+ #: templates/account.php:372, templates/debug.php:505
1279
  msgid "Name"
1280
  msgstr "Name"
1281
 
1282
+ #: templates/account.php:378, templates/debug.php:506
1283
  msgid "Email"
1284
  msgstr "Email"
1285
 
1286
+ #: templates/account.php:385, templates/debug.php:369, templates/debug.php:555
1287
  msgid "User ID"
1288
  msgstr "User ID"
1289
 
1290
+ #: templates/account.php:403, templates/account.php:721, templates/account.php:754, templates/debug.php:236, templates/debug.php:363, templates/debug.php:452, templates/debug.php:504, templates/debug.php:553, templates/debug.php:632, templates/account/payments.php:35, templates/debug/logger.php:21
1291
  msgid "ID"
1292
  msgstr "ID"
1293
 
1294
+ #: templates/account.php:410
1295
  msgid "Site ID"
1296
  msgstr "Site ID"
1297
 
1298
+ #: templates/account.php:413
1299
  msgid "No ID"
1300
  msgstr "No ID"
1301
 
1302
+ #: templates/account.php:418, templates/debug.php:243, templates/debug.php:372, templates/debug.php:456, templates/debug.php:508, templates/account/partials/site.php:227
1303
  msgid "Public Key"
1304
  msgstr "Public Key"
1305
 
1306
+ #: templates/account.php:424, templates/debug.php:373, templates/debug.php:457, templates/debug.php:509, templates/account/partials/site.php:239
1307
  msgid "Secret Key"
1308
  msgstr "Secret Key"
1309
 
1310
+ #: templates/account.php:427
1311
  msgctxt "as secret encryption key missing"
1312
  msgid "No Secret"
1313
  msgstr "No Secret"
1314
 
1315
+ #: templates/account.php:454, templates/account/partials/site.php:120, templates/account/partials/site.php:122
1316
  msgid "Trial"
1317
  msgstr "Trial"
1318
 
1319
+ #: templates/account.php:481, templates/debug.php:561, templates/account/partials/site.php:260
1320
  msgid "License Key"
1321
  msgstr "License Key"
1322
 
1323
+ #: templates/account.php:512
1324
  msgid "Join the Beta program"
1325
  msgstr "Join the Beta program"
1326
 
1327
+ #: templates/account.php:518
1328
  msgid "not verified"
1329
  msgstr "not verified"
1330
 
1331
+ #: templates/account.php:527, templates/account/partials/addon.php:190
1332
  msgid "Expired"
1333
  msgstr "Expired"
1334
 
1335
+ #: templates/account.php:587
1336
  msgid "Premium version"
1337
  msgstr "Premium version"
1338
 
1339
+ #: templates/account.php:589
1340
  msgid "Free version"
1341
  msgstr "Free version"
1342
 
1343
+ #: templates/account.php:601
1344
  msgid "Verify Email"
1345
  msgstr "Verify Email"
1346
 
1347
+ #: templates/account.php:615
1348
  msgid "Download %s Version"
1349
  msgstr "Download %s Version"
1350
 
1351
+ #: templates/account.php:631
1352
  msgid "Download Paid Version"
1353
  msgstr "Download Paid Version"
1354
 
1355
+ #: templates/account.php:649, templates/account.php:892, templates/account/partials/site.php:248, templates/account/partials/site.php:270
1356
  msgctxt "verb"
1357
  msgid "Show"
1358
  msgstr "Show"
1359
 
1360
+ #: templates/account.php:664
1361
  msgid "What is your %s?"
1362
  msgstr "What is your %s?"
1363
 
1364
+ #: templates/account.php:672, templates/account/billing.php:21
1365
  msgctxt "verb"
1366
  msgid "Edit"
1367
  msgstr "Edit"
1368
 
1369
+ #: templates/account.php:676, templates/forms/user-change.php:27
1370
  msgid "Change User"
1371
  msgstr "Change User"
1372
 
1373
+ #: templates/account.php:700
1374
  msgid "Sites"
1375
  msgstr "Sites"
1376
 
1377
+ #: templates/account.php:713
1378
  msgid "Search by address"
1379
  msgstr "Search by address"
1380
 
1381
+ #: templates/account.php:722, templates/debug.php:366
1382
  msgid "Address"
1383
  msgstr "Address"
1384
 
1385
+ #: templates/account.php:723
1386
  msgid "License"
1387
  msgstr "License"
1388
 
1389
+ #: templates/account.php:724
1390
  msgid "Plan"
1391
  msgstr "Plan"
1392
 
1393
+ #: templates/account.php:757
1394
  msgctxt "as software license"
1395
  msgid "License"
1396
  msgstr "License"
1397
 
1398
+ #: templates/account.php:886
1399
  msgctxt "verb"
1400
  msgid "Hide"
1401
  msgstr "Hide"
1402
 
1403
+ #: templates/account.php:908, templates/forms/data-debug-mode.php:31
1404
  msgid "Processing"
1405
  msgstr "Processing"
1406
 
1407
+ #: templates/account.php:911
1408
  msgid "Get updates for bleeding edge Beta versions of %s."
1409
  msgstr "Get updates for bleeding edge Beta versions of %s."
1410
 
1411
+ #: templates/account.php:969
1412
  msgid "Cancelling %s"
1413
  msgstr "Cancelling %s"
1414
 
1415
+ #: templates/account.php:969, templates/account.php:986, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133
1416
  msgid "trial"
1417
  msgstr "trial"
1418
 
1419
+ #: templates/account.php:984, templates/forms/deactivation/form.php:150
1420
  msgid "Cancelling %s..."
1421
  msgstr "Cancelling %s..."
1422
 
1423
+ #: templates/account.php:987, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134
1424
  msgid "subscription"
1425
  msgstr "subscription"
1426
 
1427
+ #: templates/account.php:1001
1428
  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?"
1429
  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?"
1430
 
1431
+ #: templates/account.php:1075
1432
  msgid "Disabling white-label mode"
1433
  msgstr "Disabling white-label mode"
1434
 
1435
+ #: templates/account.php:1076
1436
  msgid "Enabling white-label mode"
1437
  msgstr "Enabling white-label mode"
1438
 
1458
  msgid "Installed"
1459
  msgstr "Installed"
1460
 
1461
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:222, templates/forms/resend-key.php:77
1462
  msgctxt "as close a window"
1463
  msgid "Dismiss"
1464
  msgstr "Dismiss"
1513
  msgid "Agree & Activate License"
1514
  msgstr "Agree & Activate License"
1515
 
1516
+ #: templates/connect.php:184
1517
+ msgid "Welcome to %s! To get started, please enter your license key:"
1518
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1519
 
1520
+ #: templates/connect.php:191
1521
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1522
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1523
 
1524
+ #: templates/connect.php:192
1525
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1526
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1527
 
1528
+ #: templates/connect.php:198
1529
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1530
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1531
 
1532
+ #: templates/connect.php:199
1533
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1534
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1535
 
1536
+ #: templates/connect.php:233
1537
  msgid "We're excited to introduce the Freemius network-level integration."
1538
  msgstr "We're excited to introduce the Freemius network-level integration."
1539
 
1540
+ #: templates/connect.php:236
1541
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1542
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1543
 
1544
+ #: templates/connect.php:238
1545
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1546
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1547
 
1548
+ #: templates/connect.php:240
1549
  msgid "%s's paid features"
1550
  msgstr "%s's paid features"
1551
 
1552
+ #: templates/connect.php:245
1553
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1554
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1555
 
1556
+ #: templates/connect.php:247
1557
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1558
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1559
 
1560
+ #: templates/connect.php:256, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49
1561
  msgid "License key"
1562
  msgstr "License key"
1563
 
1564
+ #: templates/connect.php:259, templates/forms/license-activation.php:22
1565
  msgid "Can't find your license key?"
1566
  msgstr "Can't find your license key?"
1567
 
1568
+ #: templates/connect.php:318, templates/connect.php:700, templates/forms/deactivation/retry-skip.php:20
1569
  msgctxt "verb"
1570
  msgid "Skip"
1571
  msgstr "Skip"
1572
 
1573
+ #: templates/connect.php:321
1574
  msgid "Delegate to Site Admins"
1575
  msgstr "Delegate to Site Admins"
1576
 
1577
+ #: templates/connect.php:321
1578
  msgid "If you click it, this decision will be delegated to the sites administrators."
1579
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1580
 
1581
+ #: templates/connect.php:346
1582
+ msgid "License issues?"
1583
+ msgstr "License issues?"
1584
+
1585
+ #: templates/connect.php:362
1586
  msgid "Your Profile Overview"
1587
  msgstr "Your Profile Overview"
1588
 
1589
+ #: templates/connect.php:363
1590
  msgid "Name and email address"
1591
  msgstr "Name and email address"
1592
 
1593
+ #: templates/connect.php:370
1594
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1595
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1596
+
1597
+ #: templates/connect.php:371
1598
  msgid "Your Site Overview"
1599
  msgstr "Your Site Overview"
1600
 
1601
+ #: templates/connect.php:372
1602
  msgid "Site URL, WP version, PHP info"
1603
  msgstr "Site URL, WP version, PHP info"
1604
 
1606
  msgid "Admin Notices"
1607
  msgstr "Admin Notices"
1608
 
1609
+ #: templates/connect.php:380, templates/connect.php:398
1610
  msgid "Updates, announcements, marketing, no spam"
1611
  msgstr "Updates, announcements, marketing, no spam"
1612
 
 
 
 
 
1613
  #: templates/connect.php:387
1614
+ msgid "So you can reuse the license when the %s is no longer active."
1615
+ msgstr "So you can reuse the license when the %s is no longer active."
1616
+
1617
+ #: templates/connect.php:388
1618
+ msgid "Current %s Status"
1619
+ msgstr "Current %s Status"
1620
 
1621
+ #: templates/connect.php:389
1622
+ msgid "Active, deactivated, or uninstalled"
1623
+ msgstr "Active, deactivated, or uninstalled"
1624
+
1625
+ #: templates/connect.php:397
1626
  msgid "Newsletter"
1627
  msgstr "Newsletter"
1628
 
1629
+ #: templates/connect.php:405
1630
  msgid "Plugins & Themes"
1631
  msgstr "Plugins & Themes"
1632
 
1633
+ #: templates/connect.php:405
1634
+ msgid "optional"
1635
+ msgstr "optional"
1636
+
1637
+ #: templates/connect.php:406
1638
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1639
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1640
+
1641
+ #: templates/connect.php:407
1642
  msgid "Title, slug, version, and is active"
1643
  msgstr "Title, slug, version, and is active"
1644
 
1645
+ #: templates/connect.php:424
1646
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1647
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1648
 
1649
  #: templates/connect.php:426
1650
+ msgid "diagnostic data"
1651
+ msgstr "diagnostic data"
1652
+
1653
+ #: templates/connect.php:427
1654
+ msgid "Freemius is our licensing and software updates engine"
1655
+ msgstr "Freemius is our licensing and software updates engine"
1656
+
1657
+ #: templates/connect.php:430
1658
  msgid "What permissions are being granted?"
1659
  msgstr "What permissions are being granted?"
1660
 
1661
+ #: templates/connect.php:457
1662
  msgid "Don't have a license key?"
1663
  msgstr "Don't have a license key?"
1664
 
1665
+ #: templates/connect.php:460
1666
  msgid "Have a license key?"
1667
  msgstr "Have a license key?"
1668
 
1669
+ #: templates/connect.php:468
1670
  msgid "Privacy Policy"
1671
  msgstr "Privacy Policy"
1672
 
1673
+ #: templates/connect.php:470
1674
  msgid "License Agreement"
1675
  msgstr "License Agreement"
1676
 
1677
+ #: templates/connect.php:470
1678
  msgid "Terms of Service"
1679
  msgstr "Terms of Service"
1680
 
1681
+ #: templates/connect.php:866
1682
  msgctxt "as in the process of sending an email"
1683
  msgid "Sending email"
1684
  msgstr "Sending email"
1685
 
1686
+ #: templates/connect.php:867
1687
  msgctxt "as activating plugin"
1688
  msgid "Activating"
1689
  msgstr "Activating"
2272
  msgid "Update License"
2273
  msgstr "Update License"
2274
 
2275
+ #: templates/forms/license-activation.php:41
2276
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2277
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2278
+
2279
+ #: templates/forms/license-activation.php:183
2280
  msgid "Associate with the license owner's account."
2281
  msgstr "Associate with the license owner's account."
2282
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Carlos Longarela <carlos@longarela.eu>, 2017-2019
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: es_ES\n"
14
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
@@ -22,835 +22,835 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php1912, templates/account.php:910
26
  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."
27
  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."
28
 
29
- #: includes/class-freemius.php:1919
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "¿Deseas continuar con la actualización?"
32
 
33
- #: includes/class-freemius.php:2131
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
36
 
37
- #: includes/class-freemius.php:2133
38
  msgid "Error"
39
  msgstr "Error"
40
 
41
- #: includes/class-freemius.php:2533
42
  msgid "I found a better %s"
43
  msgstr "He encontrado un %s mejor"
44
 
45
- #: includes/class-freemius.php:2535
46
  msgid "What's the %s's name?"
47
  msgstr "¿Cuál es el nombre de %s?"
48
 
49
- #: includes/class-freemius.php:2541
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
52
 
53
- #: includes/class-freemius.php:2543
54
  msgid "Deactivation"
55
  msgstr "Desactivación"
56
 
57
- #: includes/class-freemius.php:2544
58
  msgid "Theme Switch"
59
  msgstr "Cambiar tema"
60
 
61
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "Otra"
65
 
66
- #: includes/class-freemius.php:2561
67
  msgid "I no longer need the %s"
68
  msgstr "Ya no necesito el %s"
69
 
70
- #: includes/class-freemius.php:2568
71
  msgid "I only needed the %s for a short period"
72
  msgstr "Sólo necesitaba la %s por un corto período"
73
 
74
- #: includes/class-freemius.php:2574
75
  msgid "The %s broke my site"
76
  msgstr "%s ha roto mi sitio"
77
 
78
- #: includes/class-freemius.php:2581
79
  msgid "The %s suddenly stopped working"
80
  msgstr "%s de repente ha dejado de funcionar"
81
 
82
- #: includes/class-freemius.php:2591
83
  msgid "I can't pay for it anymore"
84
  msgstr "No puedo pagarlo durante más tiempo"
85
 
86
- #: includes/class-freemius.php:2593
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
89
 
90
- #: includes/class-freemius.php:2599
91
  msgid "I don't like to share my information with you"
92
  msgstr "No me gusta compartir mi información contigo"
93
 
94
- #: includes/class-freemius.php:2620
95
  msgid "The %s didn't work"
96
  msgstr "El %s no funcionaba"
97
 
98
- #: includes/class-freemius.php:2630
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "No entiendo cómo hacerlo funcionar"
101
 
102
- #: includes/class-freemius.php:2638
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "%s es genial, pero necesito una característica que no soportáis"
105
 
106
- #: includes/class-freemius.php:2640
107
  msgid "What feature?"
108
  msgstr "¿Qué característica?"
109
 
110
- #: includes/class-freemius.php:2644
111
  msgid "The %s is not working"
112
  msgstr " El %s no funciona"
113
 
114
- #: includes/class-freemius.php:2646
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
117
 
118
- #: includes/class-freemius.php:2650
119
  msgid "It's not what I was looking for"
120
  msgstr "No es lo que estaba buscando"
121
 
122
- #: includes/class-freemius.php:2652
123
  msgid "What you've been looking for?"
124
  msgstr "¿Que has estado buscando?"
125
 
126
- #: includes/class-freemius.php:2656
127
  msgid "The %s didn't work as expected"
128
  msgstr " El %s no funciona como esperaba"
129
 
130
- #: includes/class-freemius.php:2658
131
  msgid "What did you expect?"
132
  msgstr "¿Qué esperas?"
133
 
134
- #: includes/class-freemius.php3513, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Debug Freemius"
137
 
138
- #: includes/class-freemius.php:4265
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
141
 
142
- #: includes/class-freemius.php:4267
143
  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."
144
  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."
145
 
146
- #: includes/class-freemius.php:4274
147
  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."
148
  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."
149
 
150
- #: includes/class-freemius.php:4379
151
  msgid "Yes - do your thing"
152
  msgstr "Vamos, adelante"
153
 
154
- #: includes/class-freemius.php:4384
155
  msgid "No - just deactivate"
156
  msgstr "No - sólo desactivar"
157
 
158
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
159
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
160
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
161
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
162
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
163
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
164
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
165
- #: includes/class-freemius.php22274, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "Oops"
169
 
170
- #: includes/class-freemius.php:4498
171
  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."
172
  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."
173
 
174
- #: includes/class-freemius.php:4920
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s no se puede ejecutar sin %s."
178
 
179
- #: includes/class-freemius.php:4921
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "%s no se puede ejecutar sin el plugin."
183
 
184
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
185
- #: includes/class-freemius.php:21150
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
188
 
189
- #: includes/class-freemius.php:5848
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "La versión Premium %s ha sido activada con éxito."
192
 
193
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
- #: includes/class-freemius.php:5875
199
  msgid "You have a %s license."
200
  msgstr "Tienes una licencia %s."
201
 
202
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
203
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
204
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
205
- #: includes/class-freemius.php:20900
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "Vaya"
209
 
210
- #: includes/class-freemius.php:6165
211
  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."
212
  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."
213
 
214
- #: includes/class-freemius.php:6169
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
217
 
218
- #: includes/class-freemius.php6178, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "Más información sobre %s"
222
 
223
- #: includes/class-freemius.php:6179
224
  msgid "Purchase License"
225
  msgstr "Comprar licencia"
226
 
227
- #: includes/class-freemius.php7118, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
230
 
231
- #: includes/class-freemius.php:7122
232
  msgid "start the trial"
233
  msgstr "comenzar el período de prueba"
234
 
235
- #: includes/class-freemius.php7123, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "completar la instalación"
238
 
239
- #: includes/class-freemius.php:7241
240
  msgid "You are just one step away - %s"
241
  msgstr "Estás a sólo un paso - %s"
242
 
243
- #: includes/class-freemius.php:7244
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "Completar la activación de \"%s\" ahora"
247
 
248
- #: includes/class-freemius.php:7322
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
251
 
252
- #: includes/class-freemius.php:7326
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
255
 
256
- #: includes/class-freemius.php:7761
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "La actualización de %s se completó con éxito."
259
 
260
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
261
- #: includes/class-fs-plugin-updater.php1294,
262
- #: includes/class-fs-plugin-updater.php1301,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Complemento"
266
 
267
- #: includes/class-freemius.php10245, templates/account.php392,
268
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
- #: includes/class-freemius.php10246, templates/account.php393,
273
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "Tema"
277
 
278
- #: includes/class-freemius.php:13176
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
- #: includes/class-freemius.php:13190
283
  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."
284
  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."
285
 
286
- #: includes/class-freemius.php:13195
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
- #: includes/class-freemius.php:13196
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
- #: includes/class-freemius.php:13255
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario."
297
 
298
- #: includes/class-freemius.php:13328
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Nuevo ID de usuario o dirección de correo electrónico no válido."
301
 
302
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  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."
305
 
306
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
309
 
310
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
311
  msgid "Change Ownership"
312
  msgstr "Cambiar propietario"
313
 
314
- #: includes/class-freemius.php:13942
315
  msgid "Invalid site details collection."
316
  msgstr "Colección de detalles del sitio no válida."
317
 
318
- #: includes/class-freemius.php:14062
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  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?"
321
 
322
- #: includes/class-freemius.php:14064
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  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?"
325
 
326
- #: includes/class-freemius.php:14338
327
  msgid "Account is pending activation."
328
  msgstr "La cuenta está pendiente de activación"
329
 
330
- #: includes/class-freemius.php14450,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Compra una licencia ahora"
334
 
335
- #: includes/class-freemius.php14462,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Renueva tu licencia ahora"
339
 
340
- #: includes/class-freemius.php:14466
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
343
 
344
- #: includes/class-freemius.php:16907
345
  msgid "%s activation was successfully completed."
346
  msgstr "%s activación se completó con éxito."
347
 
348
- #: includes/class-freemius.php:16921
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
351
 
352
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
353
  msgid "Your trial has been successfully started."
354
  msgstr "Tu versión de prueba se ha iniciado con éxito."
355
 
356
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
357
- #: includes/class-freemius.php:17804
358
  msgid "Couldn't activate %s."
359
  msgstr "No se puede activar %s."
360
 
361
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
362
- #: includes/class-freemius.php:17805
363
  msgid "Please contact us with the following message:"
364
  msgstr "Por favor contáctanos con el siguiente mensaje:"
365
 
366
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "Se ha producido un error desconocido."
369
 
370
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
371
  msgid "Upgrade"
372
  msgstr "Actualizar"
373
 
374
- #: includes/class-freemius.php:18168
375
  msgid "Start Trial"
376
  msgstr "Comenzar el período de prueba"
377
 
378
- #: includes/class-freemius.php:18170
379
  msgid "Pricing"
380
  msgstr "Precio"
381
 
382
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
383
  msgid "Affiliation"
384
  msgstr "Afiliación"
385
 
386
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
387
- #: templates/account.php240, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "Cuenta"
390
 
391
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "Contáctanos"
395
 
396
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
397
- #: includes/class-freemius.php23324, templates/account.php119,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Complementos"
401
 
402
- #: includes/class-freemius.php:18345
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
- #: includes/class-freemius.php:18345
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
- #: includes/class-freemius.php18347, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "Precio"
416
 
417
- #: includes/class-freemius.php18560,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "Foro de soporte"
421
 
422
- #: includes/class-freemius.php:19534
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
425
 
426
- #: includes/class-freemius.php:19535
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "Bien hecho"
430
 
431
- #: includes/class-freemius.php:20041
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "parece que la clave que has introducido no coincide con nuestros registros."
434
 
435
- #: includes/class-freemius.php:20065
436
  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."
437
  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\"."
438
 
439
- #: includes/class-freemius.php:20300
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "Tu complemento %s del plan se actualizó con éxito."
442
 
443
- #: includes/class-freemius.php:20302
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "El complemento %s ha sido comprado correctamente."
446
 
447
- #: includes/class-freemius.php:20305
448
  msgid "Download the latest version"
449
  msgstr "Descargar la última versión"
450
 
451
- #: includes/class-freemius.php:20391
452
  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"
453
  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"
454
 
455
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
456
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
457
  msgid "Error received from the server:"
458
  msgstr "Error recibido del servidor:"
459
 
460
- #: includes/class-freemius.php:20407
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  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."
463
 
464
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
465
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "Hmm"
469
 
470
- #: includes/class-freemius.php:20634
471
  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."
472
  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."
473
 
474
- #: includes/class-freemius.php20635, templates/account.php121,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "Período de Prueba Gratuito"
479
 
480
- #: includes/class-freemius.php:20640
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
483
 
484
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
485
  msgid "Please contact us here"
486
  msgstr "Contacta aquí con nosotros"
487
 
488
- #: includes/class-freemius.php:20655
489
  msgid "Your plan was successfully activated."
490
  msgstr "Tu plan se activó con éxito."
491
 
492
- #: includes/class-freemius.php:20656
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "Tu plan se actualizó con éxito."
495
 
496
- #: includes/class-freemius.php:20673
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "Tu plan se cambió correctamente a %s."
499
 
500
- #: includes/class-freemius.php:20689
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
503
 
504
- #: includes/class-freemius.php:20691
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
507
 
508
- #: includes/class-freemius.php:20699
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
511
 
512
- #: includes/class-freemius.php:20712
513
  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."
514
  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."
515
 
516
- #: includes/class-freemius.php:20738
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
519
 
520
- #: includes/class-freemius.php:20740
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
523
 
524
- #: includes/class-freemius.php:20855
525
  msgid "It looks like the license could not be activated."
526
  msgstr "Parece que la licencia no se pudo activar."
527
 
528
- #: includes/class-freemius.php:20897
529
  msgid "Your license was successfully activated."
530
  msgstr "Tu licencia fue activada correctamente."
531
 
532
- #: includes/class-freemius.php:20923
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
535
 
536
- #: includes/class-freemius.php:20947
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "Parece que la desactivación de licencia ha fallado."
539
 
540
- #: includes/class-freemius.php:20976
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Tu licencia %s ha sido desactivada correctamente."
543
 
544
- #: includes/class-freemius.php:20977
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
547
 
548
- #: includes/class-freemius.php:20980
549
  msgid "O.K"
550
  msgstr "O.K"
551
 
552
- #: includes/class-freemius.php:21033
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
555
 
556
- #: includes/class-freemius.php:21042
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
559
 
560
- #: includes/class-freemius.php:21084
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "Estás ejecutando %s en modo de prueba."
563
 
564
- #: includes/class-freemius.php:21095
565
  msgid "You already utilized a trial before."
566
  msgstr "Ya utilizaste un período de prueba antes."
567
 
568
- #: includes/class-freemius.php:21109
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
571
 
572
- #: includes/class-freemius.php:21120
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "El plan %s no admite un período de prueba."
575
 
576
- #: includes/class-freemius.php:21131
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
579
 
580
- #: includes/class-freemius.php:21181
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
583
 
584
- #: includes/class-freemius.php:21217
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
587
 
588
- #: includes/class-freemius.php:21236
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
591
 
592
- #: includes/class-freemius.php:21552
593
  msgid "Version %s was released."
594
  msgstr "La versión %s se ha lanzado."
595
 
596
- #: includes/class-freemius.php:21552
597
  msgid "Please download %s."
598
  msgstr "Por favor descarga %s."
599
 
600
- #: includes/class-freemius.php:21559
601
  msgid "the latest %s version here"
602
  msgstr "la última versión %s aquí"
603
 
604
- #: includes/class-freemius.php:21564
605
  msgid "New"
606
  msgstr "Nuevo"
607
 
608
- #: includes/class-freemius.php:21569
609
  msgid "Seems like you got the latest release."
610
  msgstr "Parece que tienes la última versión."
611
 
612
- #: includes/class-freemius.php:21570
613
  msgid "You are all good!"
614
  msgstr "¡Está todo listo!"
615
 
616
- #: includes/class-freemius.php:21873
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  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."
619
 
620
- #: includes/class-freemius.php:22013
621
  msgid "Site successfully opted in."
622
  msgstr "Sitio dado de alta correctamente."
623
 
624
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
625
  msgid "Awesome"
626
  msgstr "Increíble"
627
 
628
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
631
 
632
- #: includes/class-freemius.php:22031
633
  msgid "Thank you!"
634
  msgstr "¡Gracias!"
635
 
636
- #: includes/class-freemius.php:22038
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
639
 
640
- #: includes/class-freemius.php:22196
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
643
 
644
- #: includes/class-freemius.php:22202
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
647
 
648
- #: includes/class-freemius.php:22207
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s es el nuevo dueño de la cuenta."
651
 
652
- #: includes/class-freemius.php:22209
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "Felicidades"
656
 
657
- #: includes/class-freemius.php:22245
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
660
 
661
- #: includes/class-freemius.php:22257
662
  msgid "Please provide your full name."
663
  msgstr "Por favor, dinos tu nombre completo."
664
 
665
- #: includes/class-freemius.php:22262
666
  msgid "Your name was successfully updated."
667
  msgstr "Tu nombre fue actualizado correctamente."
668
 
669
- #: includes/class-freemius.php:22323
670
  msgid "You have successfully updated your %s."
671
  msgstr "Has actualizado correctamente tu %s."
672
 
673
- #: includes/class-freemius.php:22382
674
  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."
675
  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."
676
 
677
- #: includes/class-freemius.php:22385
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
- #: includes/class-freemius.php:22483
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
684
 
685
- #: includes/class-freemius.php:22484
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "Atención"
689
 
690
- #: includes/class-freemius.php:23060
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "Hey"
694
 
695
- #: includes/class-freemius.php:23060
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
698
 
699
- #: includes/class-freemius.php:23068
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
702
 
703
- #: includes/class-freemius.php:23069
704
  msgid "No credit card required"
705
  msgstr "No se necesita tarjeta de crédito"
706
 
707
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "Comenzar el período de prueba gratuito"
711
 
712
- #: includes/class-freemius.php:23153
713
  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!"
714
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
715
 
716
- #: includes/class-freemius.php:23162
717
  msgid "Learn more"
718
  msgstr "Saber más"
719
 
720
- #: includes/class-freemius.php23348, templates/account.php556,
721
- #: templates/account.php706, templates/connect.php179,
722
- #: templates/connect.php456, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "Activar licencia"
726
 
727
- #: includes/class-freemius.php23349, templates/account.php650,
728
- #: templates/account.php705, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "Cambiar licencia"
732
 
733
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Darse de baja"
736
 
737
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Inscribirse"
742
 
743
- #: includes/class-freemius.php:23700
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  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"
746
 
747
- #: includes/class-freemius.php:23708
748
  msgid "Activate %s features"
749
  msgstr "Activar características %s"
750
 
751
- #: includes/class-freemius.php:23721
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "Por favor, sigue estos pasos para completar la actualización"
754
 
755
- #: includes/class-freemius.php:23725
756
  msgid "Download the latest %s version"
757
  msgstr "Descargar la última versión %s"
758
 
759
- #: includes/class-freemius.php:23729
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "Cargar y activar la versión descargada"
762
 
763
- #: includes/class-freemius.php:23731
764
  msgid "How to upload and activate?"
765
  msgstr "¿Cómo subirlo y activarlo?"
766
 
767
- #: includes/class-freemius.php:23865
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
770
 
771
- #: includes/class-freemius.php:24034
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
774
 
775
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
776
- #: includes/class-fs-plugin-updater.php1273,
777
- #: includes/class-fs-plugin-updater.php:1287
778
  msgid "Invalid module ID."
779
  msgstr "Id de módulo no válido."
780
 
781
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
782
  msgid "Premium version already active."
783
  msgstr "Versión premium ya activa."
784
 
785
- #: includes/class-freemius.php:24060
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "No tienes una licencia válida para acceder a la versión premium."
788
 
789
- #: includes/class-freemius.php:24067
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
792
 
793
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
794
  msgid "Premium add-on version already installed."
795
  msgstr "Versión del complemento premium ya instalada."
796
 
797
- #: includes/class-freemius.php:24435
798
  msgid "View paid features"
799
  msgstr "Ver las funciones de pago"
800
 
801
- #: includes/class-freemius.php:24757
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
804
 
805
- #: includes/class-freemius.php:24758
806
  msgid "Thank you so much for using %s!"
807
  msgstr "¡Muchas gracias por utilizar %s!"
808
 
809
- #: includes/class-freemius.php:24764
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
812
 
813
- #: includes/class-freemius.php:24768
814
  msgid "Thank you so much for using our products!"
815
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
816
 
817
- #: includes/class-freemius.php:24769
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
820
 
821
- #: includes/class-freemius.php:24788
822
  msgid "%s and its add-ons"
823
  msgstr "%s y sus complementos"
824
 
825
- #: includes/class-freemius.php:24797
826
  msgid "Products"
827
  msgstr "Productos"
828
 
829
- #: includes/class-freemius.php24804, templates/connect.php:280
830
  msgid "Yes"
831
  msgstr "Si"
832
 
833
- #: includes/class-freemius.php24805, templates/connect.php:281
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
836
 
837
- #: includes/class-freemius.php24806, templates/connect.php:286
838
  msgid "No"
839
  msgstr "No"
840
 
841
- #: includes/class-freemius.php24808, templates/connect.php:288
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
844
 
845
- #: includes/class-freemius.php:24818
846
  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 :-)"
847
  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 :-)"
848
 
849
- #: includes/class-freemius.php24820, templates/connect.php:295
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
852
 
853
- #: includes/class-freemius.php:25102
854
  msgid "License key is empty."
855
  msgstr "La clave de licencia está vacía."
856
 
@@ -883,15 +883,15 @@ msgstr "nueva versión"
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Aviso importante de actualización:"
885
 
886
- #: includes/class-fs-plugin-updater.php:1338
887
  msgid "Installing plugin: %s"
888
  msgstr "Instalando plugin: %s"
889
 
890
- #: includes/class-fs-plugin-updater.php:1379
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
893
 
894
- #: includes/class-fs-plugin-updater.php:1561
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
897
 
@@ -913,7 +913,7 @@ msgstr "Comenzar mi período gratuito de %s"
913
  msgid "Install Free Version Update Now"
914
  msgstr "Instalar la actualización gratuita ahora"
915
 
916
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
917
  msgid "Install Update Now"
918
  msgstr "Instalar actualización ahora"
919
 
@@ -933,7 +933,7 @@ msgctxt "as download latest version"
933
  msgid "Download Latest Free Version"
934
  msgstr "Descargar la última versión gratuita"
935
 
936
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
@@ -945,11 +945,11 @@ msgstr "Descargar la última"
945
  msgid "Activate this add-on"
946
  msgstr "Activar este complemento"
947
 
948
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
949
  msgid "Activate Free Version"
950
  msgstr "Activar versión gratuita"
951
 
952
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "Activar"
@@ -1085,7 +1085,7 @@ msgstr "Después de su período gratuito %s, pague sólo %s"
1085
  msgid "Details"
1086
  msgstr "Detalles"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
@@ -1101,7 +1101,7 @@ msgstr "Autor"
1101
  msgid "Last Updated"
1102
  msgstr "Última actualización"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "hace %s"
@@ -1212,13 +1212,13 @@ msgstr "Última versión instalada"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Última versión gratuita instalada"
1214
 
1215
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Bajando tu plan"
1220
 
1221
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
@@ -1226,317 +1226,317 @@ msgstr "Cancelando la suscripción"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %2$s caducará en %3$s."
1233
 
1234
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1244
 
1245
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1250
 
1251
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  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."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
- #: templates/account.php109,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "Activar plan %s"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
- #: templates/account.php112, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "Auto renovaciones en %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
- #: templates/account.php114, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "Caduca en %s"
1275
 
1276
- #: templates/account.php:115
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "Sincronizar licencia"
1280
 
1281
- #: templates/account.php116, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "Cancelar período de prueba"
1284
 
1285
- #: templates/account.php117, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "Cambiar Plan"
1288
 
1289
- #: templates/account.php118, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "Actualizar"
1293
 
1294
- #: templates/account.php120, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "Degradar"
1299
 
1300
- #: templates/account.php122, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "Gratis"
1306
 
1307
- #: templates/account.php124, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "Plan"
1313
 
1314
- #: templates/account.php:125
1315
  msgid "Bundle Plan"
1316
  msgstr "Plan combinado"
1317
 
1318
- #: templates/account.php:248
1319
  msgid "Free Trial"
1320
  msgstr "Período de prueba gratuito"
1321
 
1322
- #: templates/account.php:259
1323
  msgid "Account Details"
1324
  msgstr "Detalles de la cuenta"
1325
 
1326
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Iniciar Depuración"
1329
 
1330
- #: templates/account.php:268
1331
  msgid "Stop Debug"
1332
  msgstr "Detener la depuración"
1333
 
1334
- #: templates/account.php:275
1335
  msgid "Billing & Invoices"
1336
  msgstr "Facturación y facturas"
1337
 
1338
- #: templates/account.php:286
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
1341
 
1342
- #: templates/account.php:288
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
1345
 
1346
- #: templates/account.php:291
1347
  msgid "Delete Account"
1348
  msgstr "Borrar cuenta"
1349
 
1350
- #: templates/account.php303, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "Desactivar licencia"
1354
 
1355
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "¿Estás seguro que quieres proceder?"
1358
 
1359
- #: templates/account.php326, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "Cancelar suscripción"
1362
 
1363
- #: templates/account.php355, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "Sincronizar"
1367
 
1368
- #: templates/account.php370, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "Nombre"
1371
 
1372
- #: templates/account.php376, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "Correo electrónico"
1375
 
1376
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "ID de usuario"
1379
 
1380
- #: templates/account.php401, templates/account.php719,
1381
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "ID"
1387
 
1388
- #: templates/account.php:408
1389
  msgid "Site ID"
1390
  msgstr "ID del sitio"
1391
 
1392
- #: templates/account.php:411
1393
  msgid "No ID"
1394
  msgstr "Sin ID"
1395
 
1396
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "Clave pública"
1401
 
1402
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "Clave secreta"
1406
 
1407
- #: templates/account.php:425
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "Sin clave secreta"
1411
 
1412
- #: templates/account.php452, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "Período de prueba gratuito"
1416
 
1417
- #: templates/account.php479, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "Clave de licencia"
1421
 
1422
- #: templates/account.php:510
1423
  msgid "Join the Beta program"
1424
  msgstr "Únete al programa Beta"
1425
 
1426
- #: templates/account.php:516
1427
  msgid "not verified"
1428
  msgstr "no verificado"
1429
 
1430
- #: templates/account.php525, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "Caducado"
1433
 
1434
- #: templates/account.php:585
1435
  msgid "Premium version"
1436
  msgstr "Versión premium"
1437
 
1438
- #: templates/account.php:587
1439
  msgid "Free version"
1440
  msgstr "Versión gratuita"
1441
 
1442
- #: templates/account.php:599
1443
  msgid "Verify Email"
1444
  msgstr "Verificar correo electrónico"
1445
 
1446
- #: templates/account.php:613
1447
  msgid "Download %s Version"
1448
  msgstr "Descargar versión %s"
1449
 
1450
- #: templates/account.php:629
1451
  msgid "Download Paid Version"
1452
  msgstr "Descargar la versión de pago"
1453
 
1454
- #: templates/account.php647, templates/account.php890,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "Mostrar"
1460
 
1461
- #: templates/account.php:662
1462
  msgid "What is your %s?"
1463
  msgstr "¿Cual es tú %s?"
1464
 
1465
- #: templates/account.php670, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "Editar"
1469
 
1470
- #: templates/account.php674, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Cambiar usuario"
1473
 
1474
- #: templates/account.php:698
1475
  msgid "Sites"
1476
  msgstr "Sitios"
1477
 
1478
- #: templates/account.php:711
1479
  msgid "Search by address"
1480
  msgstr "Buscar por dirección"
1481
 
1482
- #: templates/account.php720, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "Dirección"
1485
 
1486
- #: templates/account.php:721
1487
  msgid "License"
1488
  msgstr "Licencia"
1489
 
1490
- #: templates/account.php:722
1491
  msgid "Plan"
1492
  msgstr "Plan"
1493
 
1494
- #: templates/account.php:755
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "Licencia"
1498
 
1499
- #: templates/account.php:884
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "Ocultar"
1503
 
1504
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Procesando"
1507
 
1508
- #: templates/account.php:909
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s."
1511
 
1512
- #: templates/account.php:967
1513
  msgid "Cancelling %s"
1514
  msgstr "Cancelando %s"
1515
 
1516
- #: templates/account.php967, templates/account.php984,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "período de prueba"
1521
 
1522
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "Cancelando %s..."
1525
 
1526
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "suscripción"
1530
 
1531
- #: templates/account.php:999
1532
  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?"
1533
  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?"
1534
 
1535
- #: templates/account.php:1073
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
- #: templates/account.php:1074
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
@@ -1562,7 +1562,7 @@ msgctxt "installed add-on"
1562
  msgid "Installed"
1563
  msgstr "Instalado"
1564
 
1565
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
@@ -1618,86 +1618,94 @@ msgstr "¡Gracias %s!"
1618
  msgid "Agree & Activate License"
1619
  msgstr "De acuerdo y activar licencia"
1620
 
1621
- #: templates/connect.php:189
1622
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1623
- msgstr "¡Gracias por comprar %s! Para empezar, escribe tu clave de licencia:"
1624
 
1625
- #: templates/connect.php:196
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s."
1628
 
1629
- #: templates/connect.php:197
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s."
1632
 
1633
- #: templates/connect.php:203
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones, contenido educacional, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1636
 
1637
- #: templates/connect.php:204
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1640
 
1641
- #: templates/connect.php:238
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
1644
 
1645
- #: templates/connect.php:241
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
1648
 
1649
- #: templates/connect.php:243
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  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."
1652
 
1653
- #: templates/connect.php:245
1654
  msgid "%s's paid features"
1655
  msgstr "%s características de pago"
1656
 
1657
- #: templates/connect.php:250
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
1660
 
1661
- #: templates/connect.php:252
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1664
 
1665
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "Clave de licencia"
1669
 
1670
- #: templates/connect.php264, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "¿No puedes encontrar tu clave de licencia?"
1673
 
1674
- #: templates/connect.php323, templates/connect.php695,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "Saltar"
1679
 
1680
- #: templates/connect.php:326
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "Delegar a administradores del sitio"
1683
 
1684
- #: templates/connect.php:326
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
1687
 
1688
- #: templates/connect.php:364
 
 
 
 
1689
  msgid "Your Profile Overview"
1690
  msgstr "Resumen del perfil"
1691
 
1692
- #: templates/connect.php:365
1693
  msgid "Name and email address"
1694
  msgstr "Nombre y dirección de correo electrónico"
1695
 
1696
- #: templates/connect.php:372
 
 
 
 
1697
  msgid "Your Site Overview"
1698
  msgstr "Resumen del sitio"
1699
 
1700
- #: templates/connect.php:373
1701
  msgid "Site URL, WP version, PHP info"
1702
  msgstr "URL del sitio, versión de WP, información de PHP"
1703
 
@@ -1705,64 +1713,84 @@ msgstr "URL del sitio, versión de WP, información de PHP"
1705
  msgid "Admin Notices"
1706
  msgstr "Avisos de administración"
1707
 
1708
- #: templates/connect.php380, templates/connect.php:396
1709
  msgid "Updates, announcements, marketing, no spam"
1710
  msgstr "Actualizaciones, anuncios, marketing, sin spam"
1711
 
1712
- #: templates/connect.php:386
1713
- msgid "Current %s Events"
1714
- msgstr "Eventos de %s actuales"
1715
-
1716
  #: templates/connect.php:387
1717
- msgid "Activation, deactivation and uninstall"
1718
- msgstr "Activación, desactivación y desinstalación"
 
 
 
 
 
 
 
 
1719
 
1720
- #: templates/connect.php:395
1721
  msgid "Newsletter"
1722
  msgstr "Boletín"
1723
 
1724
- #: templates/connect.php:403
1725
  msgid "Plugins & Themes"
1726
  msgstr "Plugins y Temas"
1727
 
1728
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1729
  msgid "Title, slug, version, and is active"
1730
  msgstr "Título, slug, versión y está activo"
1731
 
1732
- #: templates/connect.php421, templates/forms/license-activation.php:41
1733
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1734
- msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
1735
 
1736
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1737
  msgid "What permissions are being granted?"
1738
  msgstr "¿Qué permisos se otorgan?"
1739
 
1740
- #: templates/connect.php:452
1741
  msgid "Don't have a license key?"
1742
  msgstr "¿No tienes una clave de licencia?"
1743
 
1744
- #: templates/connect.php:455
1745
  msgid "Have a license key?"
1746
  msgstr "¿Tienes una clave de licencia?"
1747
 
1748
- #: templates/connect.php:463
1749
  msgid "Privacy Policy"
1750
  msgstr "Política de privacidad"
1751
 
1752
- #: templates/connect.php:465
1753
  msgid "License Agreement"
1754
  msgstr "Acuerdo de licencia"
1755
 
1756
- #: templates/connect.php:465
1757
  msgid "Terms of Service"
1758
  msgstr "Términos de servicio"
1759
 
1760
- #: templates/connect.php:854
1761
  msgctxt "as in the process of sending an email"
1762
  msgid "Sending email"
1763
  msgstr "Enviando correo electrónico"
1764
 
1765
- #: templates/connect.php:855
1766
  msgctxt "as activating plugin"
1767
  msgid "Activating"
1768
  msgstr "Activando"
@@ -2365,7 +2393,11 @@ msgstr "Por favor, introduce la clave de licencia que recibiste en el correo ele
2365
  msgid "Update License"
2366
  msgstr "Activar licencia"
2367
 
2368
- #: templates/forms/license-activation.php:181
 
 
 
 
2369
  msgid "Associate with the license owner's account."
2370
  msgstr "Asocia con la cuenta del propietario de la licencia."
2371
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Carlos Longarela <carlos@longarela.eu>, 2017-2019
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: es_ES\n"
14
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
  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."
27
  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."
28
 
29
+ #: includes/class-freemius.php:1926
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "¿Deseas continuar con la actualización?"
32
 
33
+ #: includes/class-freemius.php:2138
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
36
 
37
+ #: includes/class-freemius.php:2140
38
  msgid "Error"
39
  msgstr "Error"
40
 
41
+ #: includes/class-freemius.php:2540
42
  msgid "I found a better %s"
43
  msgstr "He encontrado un %s mejor"
44
 
45
+ #: includes/class-freemius.php:2542
46
  msgid "What's the %s's name?"
47
  msgstr "¿Cuál es el nombre de %s?"
48
 
49
+ #: includes/class-freemius.php:2548
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
52
 
53
+ #: includes/class-freemius.php:2550
54
  msgid "Deactivation"
55
  msgstr "Desactivación"
56
 
57
+ #: includes/class-freemius.php:2551
58
  msgid "Theme Switch"
59
  msgstr "Cambiar tema"
60
 
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "Otra"
65
 
66
+ #: includes/class-freemius.php:2568
67
  msgid "I no longer need the %s"
68
  msgstr "Ya no necesito el %s"
69
 
70
+ #: includes/class-freemius.php:2575
71
  msgid "I only needed the %s for a short period"
72
  msgstr "Sólo necesitaba la %s por un corto período"
73
 
74
+ #: includes/class-freemius.php:2581
75
  msgid "The %s broke my site"
76
  msgstr "%s ha roto mi sitio"
77
 
78
+ #: includes/class-freemius.php:2588
79
  msgid "The %s suddenly stopped working"
80
  msgstr "%s de repente ha dejado de funcionar"
81
 
82
+ #: includes/class-freemius.php:2598
83
  msgid "I can't pay for it anymore"
84
  msgstr "No puedo pagarlo durante más tiempo"
85
 
86
+ #: includes/class-freemius.php:2600
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
89
 
90
+ #: includes/class-freemius.php:2606
91
  msgid "I don't like to share my information with you"
92
  msgstr "No me gusta compartir mi información contigo"
93
 
94
+ #: includes/class-freemius.php:2627
95
  msgid "The %s didn't work"
96
  msgstr "El %s no funcionaba"
97
 
98
+ #: includes/class-freemius.php:2637
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "No entiendo cómo hacerlo funcionar"
101
 
102
+ #: includes/class-freemius.php:2645
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "%s es genial, pero necesito una característica que no soportáis"
105
 
106
+ #: includes/class-freemius.php:2647
107
  msgid "What feature?"
108
  msgstr "¿Qué característica?"
109
 
110
+ #: includes/class-freemius.php:2651
111
  msgid "The %s is not working"
112
  msgstr " El %s no funciona"
113
 
114
+ #: includes/class-freemius.php:2653
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
117
 
118
+ #: includes/class-freemius.php:2657
119
  msgid "It's not what I was looking for"
120
  msgstr "No es lo que estaba buscando"
121
 
122
+ #: includes/class-freemius.php:2659
123
  msgid "What you've been looking for?"
124
  msgstr "¿Que has estado buscando?"
125
 
126
+ #: includes/class-freemius.php:2663
127
  msgid "The %s didn't work as expected"
128
  msgstr " El %s no funciona como esperaba"
129
 
130
+ #: includes/class-freemius.php:2665
131
  msgid "What did you expect?"
132
  msgstr "¿Qué esperas?"
133
 
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Debug Freemius"
137
 
138
+ #: includes/class-freemius.php:4272
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
141
 
142
+ #: includes/class-freemius.php:4274
143
  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."
144
  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."
145
 
146
+ #: includes/class-freemius.php:4281
147
  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."
148
  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."
149
 
150
+ #: includes/class-freemius.php:4386
151
  msgid "Yes - do your thing"
152
  msgstr "Vamos, adelante"
153
 
154
+ #: includes/class-freemius.php:4391
155
  msgid "No - just deactivate"
156
  msgstr "No - sólo desactivar"
157
 
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "Oops"
169
 
170
+ #: includes/class-freemius.php:4505
171
  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."
172
  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."
173
 
174
+ #: includes/class-freemius.php:4927
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s no se puede ejecutar sin %s."
178
 
179
+ #: includes/class-freemius.php:4928
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "%s no se puede ejecutar sin el plugin."
183
 
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
188
 
189
+ #: includes/class-freemius.php:5857
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "La versión Premium %s ha sido activada con éxito."
192
 
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
+ #: includes/class-freemius.php:5884
199
  msgid "You have a %s license."
200
  msgstr "Tienes una licencia %s."
201
 
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "Vaya"
209
 
210
+ #: includes/class-freemius.php:6174
211
  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."
212
  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."
213
 
214
+ #: includes/class-freemius.php:6178
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
217
 
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "Más información sobre %s"
222
 
223
+ #: includes/class-freemius.php:6188
224
  msgid "Purchase License"
225
  msgstr "Comprar licencia"
226
 
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
230
 
231
+ #: includes/class-freemius.php:7129
232
  msgid "start the trial"
233
  msgstr "comenzar el período de prueba"
234
 
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "completar la instalación"
238
 
239
+ #: includes/class-freemius.php:7249
240
  msgid "You are just one step away - %s"
241
  msgstr "Estás a sólo un paso - %s"
242
 
243
+ #: includes/class-freemius.php:7252
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "Completar la activación de \"%s\" ahora"
247
 
248
+ #: includes/class-freemius.php:7334
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
251
 
252
+ #: includes/class-freemius.php:7338
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
255
 
256
+ #: includes/class-freemius.php:7773
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "La actualización de %s se completó con éxito."
259
 
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Complemento"
266
 
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "Tema"
277
 
278
+ #: includes/class-freemius.php:13188
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
+ #: includes/class-freemius.php:13202
283
  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."
284
  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."
285
 
286
+ #: includes/class-freemius.php:13207
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
+ #: includes/class-freemius.php:13208
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
+ #: includes/class-freemius.php:13266
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario."
297
 
298
+ #: includes/class-freemius.php:13339
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Nuevo ID de usuario o dirección de correo electrónico no válido."
301
 
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  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."
305
 
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
309
 
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
  msgid "Change Ownership"
312
  msgstr "Cambiar propietario"
313
 
314
+ #: includes/class-freemius.php:13977
315
  msgid "Invalid site details collection."
316
  msgstr "Colección de detalles del sitio no válida."
317
 
318
+ #: includes/class-freemius.php:14097
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  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?"
321
 
322
+ #: includes/class-freemius.php:14099
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  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?"
325
 
326
+ #: includes/class-freemius.php:14373
327
  msgid "Account is pending activation."
328
  msgstr "La cuenta está pendiente de activación"
329
 
330
+ #: includes/class-freemius.php14485,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Compra una licencia ahora"
334
 
335
+ #: includes/class-freemius.php14497,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Renueva tu licencia ahora"
339
 
340
+ #: includes/class-freemius.php:14501
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
343
 
344
+ #: includes/class-freemius.php:16929
345
  msgid "%s activation was successfully completed."
346
  msgstr "%s activación se completó con éxito."
347
 
348
+ #: includes/class-freemius.php:16943
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
351
 
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
  msgid "Your trial has been successfully started."
354
  msgstr "Tu versión de prueba se ha iniciado con éxito."
355
 
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
  msgid "Couldn't activate %s."
359
  msgstr "No se puede activar %s."
360
 
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
  msgid "Please contact us with the following message:"
364
  msgstr "Por favor contáctanos con el siguiente mensaje:"
365
 
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "Se ha producido un error desconocido."
369
 
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
  msgid "Upgrade"
372
  msgstr "Actualizar"
373
 
374
+ #: includes/class-freemius.php:18184
375
  msgid "Start Trial"
376
  msgstr "Comenzar el período de prueba"
377
 
378
+ #: includes/class-freemius.php:18186
379
  msgid "Pricing"
380
  msgstr "Precio"
381
 
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
  msgid "Affiliation"
384
  msgstr "Afiliación"
385
 
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "Cuenta"
390
 
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "Contáctanos"
395
 
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Complementos"
401
 
402
+ #: includes/class-freemius.php:18361
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
+ #: includes/class-freemius.php:18361
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "Precio"
416
 
417
+ #: includes/class-freemius.php18576,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "Foro de soporte"
421
 
422
+ #: includes/class-freemius.php:19550
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
425
 
426
+ #: includes/class-freemius.php:19551
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "Bien hecho"
430
 
431
+ #: includes/class-freemius.php:20057
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "parece que la clave que has introducido no coincide con nuestros registros."
434
 
435
+ #: includes/class-freemius.php:20081
436
  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."
437
  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\"."
438
 
439
+ #: includes/class-freemius.php:20316
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "Tu complemento %s del plan se actualizó con éxito."
442
 
443
+ #: includes/class-freemius.php:20318
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "El complemento %s ha sido comprado correctamente."
446
 
447
+ #: includes/class-freemius.php:20321
448
  msgid "Download the latest version"
449
  msgstr "Descargar la última versión"
450
 
451
+ #: includes/class-freemius.php:20407
452
  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"
453
  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"
454
 
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
  msgid "Error received from the server:"
458
  msgstr "Error recibido del servidor:"
459
 
460
+ #: includes/class-freemius.php:20423
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  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."
463
 
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "Hmm"
469
 
470
+ #: includes/class-freemius.php:20664
471
  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."
472
  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."
473
 
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "Período de Prueba Gratuito"
479
 
480
+ #: includes/class-freemius.php:20670
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
483
 
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
  msgid "Please contact us here"
486
  msgstr "Contacta aquí con nosotros"
487
 
488
+ #: includes/class-freemius.php:20685
489
  msgid "Your plan was successfully activated."
490
  msgstr "Tu plan se activó con éxito."
491
 
492
+ #: includes/class-freemius.php:20686
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "Tu plan se actualizó con éxito."
495
 
496
+ #: includes/class-freemius.php:20703
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "Tu plan se cambió correctamente a %s."
499
 
500
+ #: includes/class-freemius.php:20719
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
503
 
504
+ #: includes/class-freemius.php:20721
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
507
 
508
+ #: includes/class-freemius.php:20729
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
511
 
512
+ #: includes/class-freemius.php:20742
513
  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."
514
  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."
515
 
516
+ #: includes/class-freemius.php:20768
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
519
 
520
+ #: includes/class-freemius.php:20770
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
523
 
524
+ #: includes/class-freemius.php:20885
525
  msgid "It looks like the license could not be activated."
526
  msgstr "Parece que la licencia no se pudo activar."
527
 
528
+ #: includes/class-freemius.php:20927
529
  msgid "Your license was successfully activated."
530
  msgstr "Tu licencia fue activada correctamente."
531
 
532
+ #: includes/class-freemius.php:20953
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
535
 
536
+ #: includes/class-freemius.php:20977
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "Parece que la desactivación de licencia ha fallado."
539
 
540
+ #: includes/class-freemius.php:21006
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Tu licencia %s ha sido desactivada correctamente."
543
 
544
+ #: includes/class-freemius.php:21007
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
547
 
548
+ #: includes/class-freemius.php:21010
549
  msgid "O.K"
550
  msgstr "O.K"
551
 
552
+ #: includes/class-freemius.php:21063
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
555
 
556
+ #: includes/class-freemius.php:21072
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
559
 
560
+ #: includes/class-freemius.php:21114
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "Estás ejecutando %s en modo de prueba."
563
 
564
+ #: includes/class-freemius.php:21125
565
  msgid "You already utilized a trial before."
566
  msgstr "Ya utilizaste un período de prueba antes."
567
 
568
+ #: includes/class-freemius.php:21139
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
571
 
572
+ #: includes/class-freemius.php:21150
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "El plan %s no admite un período de prueba."
575
 
576
+ #: includes/class-freemius.php:21161
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
579
 
580
+ #: includes/class-freemius.php:21211
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
583
 
584
+ #: includes/class-freemius.php:21247
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
587
 
588
+ #: includes/class-freemius.php:21266
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
591
 
592
+ #: includes/class-freemius.php:21582
593
  msgid "Version %s was released."
594
  msgstr "La versión %s se ha lanzado."
595
 
596
+ #: includes/class-freemius.php:21582
597
  msgid "Please download %s."
598
  msgstr "Por favor descarga %s."
599
 
600
+ #: includes/class-freemius.php:21589
601
  msgid "the latest %s version here"
602
  msgstr "la última versión %s aquí"
603
 
604
+ #: includes/class-freemius.php:21594
605
  msgid "New"
606
  msgstr "Nuevo"
607
 
608
+ #: includes/class-freemius.php:21599
609
  msgid "Seems like you got the latest release."
610
  msgstr "Parece que tienes la última versión."
611
 
612
+ #: includes/class-freemius.php:21600
613
  msgid "You are all good!"
614
  msgstr "¡Está todo listo!"
615
 
616
+ #: includes/class-freemius.php:21903
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  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."
619
 
620
+ #: includes/class-freemius.php:22043
621
  msgid "Site successfully opted in."
622
  msgstr "Sitio dado de alta correctamente."
623
 
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
  msgid "Awesome"
626
  msgstr "Increíble"
627
 
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
631
 
632
+ #: includes/class-freemius.php:22061
633
  msgid "Thank you!"
634
  msgstr "¡Gracias!"
635
 
636
+ #: includes/class-freemius.php:22068
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
639
 
640
+ #: includes/class-freemius.php:22226
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
643
 
644
+ #: includes/class-freemius.php:22232
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
647
 
648
+ #: includes/class-freemius.php:22237
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s es el nuevo dueño de la cuenta."
651
 
652
+ #: includes/class-freemius.php:22239
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "Felicidades"
656
 
657
+ #: includes/class-freemius.php:22275
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
660
 
661
+ #: includes/class-freemius.php:22287
662
  msgid "Please provide your full name."
663
  msgstr "Por favor, dinos tu nombre completo."
664
 
665
+ #: includes/class-freemius.php:22292
666
  msgid "Your name was successfully updated."
667
  msgstr "Tu nombre fue actualizado correctamente."
668
 
669
+ #: includes/class-freemius.php:22353
670
  msgid "You have successfully updated your %s."
671
  msgstr "Has actualizado correctamente tu %s."
672
 
673
+ #: includes/class-freemius.php:22412
674
  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."
675
  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."
676
 
677
+ #: includes/class-freemius.php:22415
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
+ #: includes/class-freemius.php:22513
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
684
 
685
+ #: includes/class-freemius.php:22514
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "Atención"
689
 
690
+ #: includes/class-freemius.php:23090
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "Hey"
694
 
695
+ #: includes/class-freemius.php:23090
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
698
 
699
+ #: includes/class-freemius.php:23098
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
702
 
703
+ #: includes/class-freemius.php:23099
704
  msgid "No credit card required"
705
  msgstr "No se necesita tarjeta de crédito"
706
 
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "Comenzar el período de prueba gratuito"
711
 
712
+ #: includes/class-freemius.php:23183
713
  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!"
714
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
715
 
716
+ #: includes/class-freemius.php:23192
717
  msgid "Learn more"
718
  msgstr "Saber más"
719
 
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "Activar licencia"
726
 
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "Cambiar licencia"
732
 
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Darse de baja"
736
 
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Inscribirse"
742
 
743
+ #: includes/class-freemius.php:23738
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  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"
746
 
747
+ #: includes/class-freemius.php:23746
748
  msgid "Activate %s features"
749
  msgstr "Activar características %s"
750
 
751
+ #: includes/class-freemius.php:23759
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "Por favor, sigue estos pasos para completar la actualización"
754
 
755
+ #: includes/class-freemius.php:23763
756
  msgid "Download the latest %s version"
757
  msgstr "Descargar la última versión %s"
758
 
759
+ #: includes/class-freemius.php:23767
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "Cargar y activar la versión descargada"
762
 
763
+ #: includes/class-freemius.php:23769
764
  msgid "How to upload and activate?"
765
  msgstr "¿Cómo subirlo y activarlo?"
766
 
767
+ #: includes/class-freemius.php:23903
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
770
 
771
+ #: includes/class-freemius.php:24072
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
774
 
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
  msgid "Invalid module ID."
779
  msgstr "Id de módulo no válido."
780
 
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
  msgid "Premium version already active."
783
  msgstr "Versión premium ya activa."
784
 
785
+ #: includes/class-freemius.php:24098
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "No tienes una licencia válida para acceder a la versión premium."
788
 
789
+ #: includes/class-freemius.php:24105
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
792
 
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
  msgid "Premium add-on version already installed."
795
  msgstr "Versión del complemento premium ya instalada."
796
 
797
+ #: includes/class-freemius.php:24473
798
  msgid "View paid features"
799
  msgstr "Ver las funciones de pago"
800
 
801
+ #: includes/class-freemius.php:24795
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
804
 
805
+ #: includes/class-freemius.php:24796
806
  msgid "Thank you so much for using %s!"
807
  msgstr "¡Muchas gracias por utilizar %s!"
808
 
809
+ #: includes/class-freemius.php:24802
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
812
 
813
+ #: includes/class-freemius.php:24806
814
  msgid "Thank you so much for using our products!"
815
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
816
 
817
+ #: includes/class-freemius.php:24807
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
820
 
821
+ #: includes/class-freemius.php:24826
822
  msgid "%s and its add-ons"
823
  msgstr "%s y sus complementos"
824
 
825
+ #: includes/class-freemius.php:24835
826
  msgid "Products"
827
  msgstr "Productos"
828
 
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
  msgid "Yes"
831
  msgstr "Si"
832
 
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
836
 
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
  msgid "No"
839
  msgstr "No"
840
 
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
844
 
845
+ #: includes/class-freemius.php:24856
846
  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 :-)"
847
  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 :-)"
848
 
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
852
 
853
+ #: includes/class-freemius.php:25140
854
  msgid "License key is empty."
855
  msgstr "La clave de licencia está vacía."
856
 
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Aviso importante de actualización:"
885
 
886
+ #: includes/class-fs-plugin-updater.php:1326
887
  msgid "Installing plugin: %s"
888
  msgstr "Instalando plugin: %s"
889
 
890
+ #: includes/class-fs-plugin-updater.php:1367
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
893
 
894
+ #: includes/class-fs-plugin-updater.php:1549
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
897
 
913
  msgid "Install Free Version Update Now"
914
  msgstr "Instalar la actualización gratuita ahora"
915
 
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
  msgid "Install Update Now"
918
  msgstr "Instalar actualización ahora"
919
 
933
  msgid "Download Latest Free Version"
934
  msgstr "Descargar la última versión gratuita"
935
 
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
945
  msgid "Activate this add-on"
946
  msgstr "Activar este complemento"
947
 
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
  msgid "Activate Free Version"
950
  msgstr "Activar versión gratuita"
951
 
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "Activar"
1085
  msgid "Details"
1086
  msgstr "Detalles"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
1101
  msgid "Last Updated"
1102
  msgstr "Última actualización"
1103
 
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "hace %s"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Última versión gratuita instalada"
1214
 
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Bajando tu plan"
1220
 
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %2$s caducará en %3$s."
1233
 
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1244
 
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1250
 
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  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."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "Activar plan %s"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "Auto renovaciones en %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "Caduca en %s"
1275
 
1276
+ #: templates/account.php:117
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "Sincronizar licencia"
1280
 
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "Cancelar período de prueba"
1284
 
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "Cambiar Plan"
1288
 
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "Actualizar"
1293
 
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "Degradar"
1299
 
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "Gratis"
1306
 
1307
+ #: templates/account.php126, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "Plan"
1313
 
1314
+ #: templates/account.php:127
1315
  msgid "Bundle Plan"
1316
  msgstr "Plan combinado"
1317
 
1318
+ #: templates/account.php:250
1319
  msgid "Free Trial"
1320
  msgstr "Período de prueba gratuito"
1321
 
1322
+ #: templates/account.php:261
1323
  msgid "Account Details"
1324
  msgstr "Detalles de la cuenta"
1325
 
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Iniciar Depuración"
1329
 
1330
+ #: templates/account.php:270
1331
  msgid "Stop Debug"
1332
  msgstr "Detener la depuración"
1333
 
1334
+ #: templates/account.php:277
1335
  msgid "Billing & Invoices"
1336
  msgstr "Facturación y facturas"
1337
 
1338
+ #: templates/account.php:288
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
1341
 
1342
+ #: templates/account.php:290
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
1345
 
1346
+ #: templates/account.php:293
1347
  msgid "Delete Account"
1348
  msgstr "Borrar cuenta"
1349
 
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "Desactivar licencia"
1354
 
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "¿Estás seguro que quieres proceder?"
1358
 
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "Cancelar suscripción"
1362
 
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "Sincronizar"
1367
 
1368
+ #: templates/account.php372, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "Nombre"
1371
 
1372
+ #: templates/account.php378, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "Correo electrónico"
1375
 
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "ID de usuario"
1379
 
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "ID"
1387
 
1388
+ #: templates/account.php:410
1389
  msgid "Site ID"
1390
  msgstr "ID del sitio"
1391
 
1392
+ #: templates/account.php:413
1393
  msgid "No ID"
1394
  msgstr "Sin ID"
1395
 
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "Clave pública"
1401
 
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "Clave secreta"
1406
 
1407
+ #: templates/account.php:427
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "Sin clave secreta"
1411
 
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "Período de prueba gratuito"
1416
 
1417
+ #: templates/account.php481, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "Clave de licencia"
1421
 
1422
+ #: templates/account.php:512
1423
  msgid "Join the Beta program"
1424
  msgstr "Únete al programa Beta"
1425
 
1426
+ #: templates/account.php:518
1427
  msgid "not verified"
1428
  msgstr "no verificado"
1429
 
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "Caducado"
1433
 
1434
+ #: templates/account.php:587
1435
  msgid "Premium version"
1436
  msgstr "Versión premium"
1437
 
1438
+ #: templates/account.php:589
1439
  msgid "Free version"
1440
  msgstr "Versión gratuita"
1441
 
1442
+ #: templates/account.php:601
1443
  msgid "Verify Email"
1444
  msgstr "Verificar correo electrónico"
1445
 
1446
+ #: templates/account.php:615
1447
  msgid "Download %s Version"
1448
  msgstr "Descargar versión %s"
1449
 
1450
+ #: templates/account.php:631
1451
  msgid "Download Paid Version"
1452
  msgstr "Descargar la versión de pago"
1453
 
1454
+ #: templates/account.php649, templates/account.php892,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "Mostrar"
1460
 
1461
+ #: templates/account.php:664
1462
  msgid "What is your %s?"
1463
  msgstr "¿Cual es tú %s?"
1464
 
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "Editar"
1469
 
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Cambiar usuario"
1473
 
1474
+ #: templates/account.php:700
1475
  msgid "Sites"
1476
  msgstr "Sitios"
1477
 
1478
+ #: templates/account.php:713
1479
  msgid "Search by address"
1480
  msgstr "Buscar por dirección"
1481
 
1482
+ #: templates/account.php722, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "Dirección"
1485
 
1486
+ #: templates/account.php:723
1487
  msgid "License"
1488
  msgstr "Licencia"
1489
 
1490
+ #: templates/account.php:724
1491
  msgid "Plan"
1492
  msgstr "Plan"
1493
 
1494
+ #: templates/account.php:757
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "Licencia"
1498
 
1499
+ #: templates/account.php:886
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "Ocultar"
1503
 
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Procesando"
1507
 
1508
+ #: templates/account.php:911
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s."
1511
 
1512
+ #: templates/account.php:969
1513
  msgid "Cancelling %s"
1514
  msgstr "Cancelando %s"
1515
 
1516
+ #: templates/account.php969, templates/account.php986,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "período de prueba"
1521
 
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "Cancelando %s..."
1525
 
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "suscripción"
1530
 
1531
+ #: templates/account.php:1001
1532
  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?"
1533
  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?"
1534
 
1535
+ #: templates/account.php:1075
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
+ #: templates/account.php:1076
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
1562
  msgid "Installed"
1563
  msgstr "Instalado"
1564
 
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
1618
  msgid "Agree & Activate License"
1619
  msgstr "De acuerdo y activar licencia"
1620
 
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
 
1625
+ #: templates/connect.php:191
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s."
1628
 
1629
+ #: templates/connect.php:192
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s."
1632
 
1633
+ #: templates/connect.php:198
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones, contenido educacional, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1636
 
1637
+ #: templates/connect.php:199
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1640
 
1641
+ #: templates/connect.php:233
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
1644
 
1645
+ #: templates/connect.php:236
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
1648
 
1649
+ #: templates/connect.php:238
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  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."
1652
 
1653
+ #: templates/connect.php:240
1654
  msgid "%s's paid features"
1655
  msgstr "%s características de pago"
1656
 
1657
+ #: templates/connect.php:245
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
1660
 
1661
+ #: templates/connect.php:247
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1664
 
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "Clave de licencia"
1669
 
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "¿No puedes encontrar tu clave de licencia?"
1673
 
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "Saltar"
1679
 
1680
+ #: templates/connect.php:321
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "Delegar a administradores del sitio"
1683
 
1684
+ #: templates/connect.php:321
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
1687
 
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
  msgid "Your Profile Overview"
1694
  msgstr "Resumen del perfil"
1695
 
1696
+ #: templates/connect.php:363
1697
  msgid "Name and email address"
1698
  msgstr "Nombre y dirección de correo electrónico"
1699
 
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
  msgid "Your Site Overview"
1706
  msgstr "Resumen del sitio"
1707
 
1708
+ #: templates/connect.php:372
1709
  msgid "Site URL, WP version, PHP info"
1710
  msgstr "URL del sitio, versión de WP, información de PHP"
1711
 
1713
  msgid "Admin Notices"
1714
  msgstr "Avisos de administración"
1715
 
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
  msgid "Updates, announcements, marketing, no spam"
1718
  msgstr "Actualizaciones, anuncios, marketing, sin spam"
1719
 
 
 
 
 
1720
  #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
 
1732
+ #: templates/connect.php:397
1733
  msgid "Newsletter"
1734
  msgstr "Boletín"
1735
 
1736
+ #: templates/connect.php:405
1737
  msgid "Plugins & Themes"
1738
  msgstr "Plugins y Temas"
1739
 
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
  msgid "Title, slug, version, and is active"
1750
  msgstr "Título, slug, versión y está activo"
1751
 
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
 
1756
  #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
  msgid "What permissions are being granted?"
1766
  msgstr "¿Qué permisos se otorgan?"
1767
 
1768
+ #: templates/connect.php:457
1769
  msgid "Don't have a license key?"
1770
  msgstr "¿No tienes una clave de licencia?"
1771
 
1772
+ #: templates/connect.php:460
1773
  msgid "Have a license key?"
1774
  msgstr "¿Tienes una clave de licencia?"
1775
 
1776
+ #: templates/connect.php:468
1777
  msgid "Privacy Policy"
1778
  msgstr "Política de privacidad"
1779
 
1780
+ #: templates/connect.php:470
1781
  msgid "License Agreement"
1782
  msgstr "Acuerdo de licencia"
1783
 
1784
+ #: templates/connect.php:470
1785
  msgid "Terms of Service"
1786
  msgstr "Términos de servicio"
1787
 
1788
+ #: templates/connect.php:866
1789
  msgctxt "as in the process of sending an email"
1790
  msgid "Sending email"
1791
  msgstr "Enviando correo electrónico"
1792
 
1793
+ #: templates/connect.php:867
1794
  msgctxt "as activating plugin"
1795
  msgid "Activating"
1796
  msgstr "Activando"
2393
  msgid "Update License"
2394
  msgstr "Activar licencia"
2395
 
2396
+ #: templates/forms/license-activation.php:41
2397
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2398
+ msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
  msgid "Associate with the license owner's account."
2402
  msgstr "Asocia con la cuenta del propietario de la licencia."
2403
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Boris Colombier <transifex.com@wba.fr>, 2018
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: fr_FR\n"
13
  "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
@@ -21,835 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  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."
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "Erreur"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "J'ai trouvé un meilleur %s"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "Quel est le nom du %s ?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "C'est une %s temporaire. Je corrige un problème."
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
  msgstr "Désactivation"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "Changement de Thème"
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Autre"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "Je n'ai plus besoin du %s"
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "Je n'ai besoin de %s que pour une courte période"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "Le %s a cassé mon site"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "Le %s a soudainement arrêté de fonctionner"
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "Je ne peux plus payer pour ça"
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Quel prix seriez-vous prêt à payer ?"
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "Je ne veux pas partager mes informations avec vous"
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "Le %s n'a pas fonctionné"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Je ne comprends pas comment le faire fonctionner"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "Quelle fonctionnalité ?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "Le %s ne fonctionne pas"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "Ce n'est pas ce que je recherche"
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "Que recherchez-vous ?"
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "Le %s n'a pas fonctionné comme prévu"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "À quoi vous attendiez-vous ?"
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Débuggage Freemius"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
  msgstr "Oui - allez-y"
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
  msgstr "Non - désactivation seulement"
156
 
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Oups"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s ne peut pas fonctionner sans %s."
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s ne peut pas fonctionner sans le plugin."
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "La version premium de %s a été activée avec succès."
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Génial"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "Vous avez une license pour %s."
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Youpi"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  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."
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Plus d'informations à propos de %s"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "Acheter une licence"
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "commencer la période d'essai"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "compléter l'installation"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "Il ne reste qu'une étape - %s"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Compléter \"%s\" Activer Maintenant"
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Nous avons fait quelques modifications au %s, %s"
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "La mise à jour du %s s'est terminée avec succès "
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Add-On"
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Thème"
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
  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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "Changement De Propriétaire"
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "Récupération des détails du site non valide."
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "Compte en cours d'activation."
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Acheter une licence maintenant"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Renouvelez votre licence maintenant"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "L'activation de %s s'est terminée avec succès."
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "Votre compte a été activé avec succès avec la formule %s."
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "Votre période d'essai a bien démarré."
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "Impossible d'activer %s."
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "Merci de nous contacter avec le message suivant :"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "Mise à jour"
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "Essai gratuit"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "Tarifs"
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Compte"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Contactez Nous"
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Add-Ons"
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Tarifs"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Forum de Support"
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Directement"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  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."
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Votre Add-on %s a bien été mis à jour."
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "L'Add-on %s a bien été acheté."
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "Télécharger la dernière version"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  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"
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "Une erreur a été reçu depuis le serveur :"
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  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."
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  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é."
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Période d'essai"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "Merci de nous contacter ici"
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Votre formule a bien été mise à jour."
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Votre formule a bien été modifié vers %s. "
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  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."
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  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."
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Il semble que la licence ne puisse être activée."
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "Votre licence a bien été activée."
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "Il semble que votre site n'ait pas de licence active."
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Il semble que la désactivation de la licence a échoué."
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "O.K"
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "Vous utilisez déjà le %s en période d'essai. "
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "Vous avez déjà utilisé la période d'essai."
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "La formule %s ne propose pas de période d'essai."
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "Aucune formule du %s ne propose de période d'essai."
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
586
 
587
- #: includes/class-freemius.php:21236
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Votre période d'essai %s a bien été annulé."
590
 
591
- #: includes/class-freemius.php:21552
592
  msgid "Version %s was released."
593
  msgstr "La version %s vient d'être publiée."
594
 
595
- #: includes/class-freemius.php:21552
596
  msgid "Please download %s."
597
  msgstr "Merci de télécharger %s."
598
 
599
- #: includes/class-freemius.php:21559
600
  msgid "the latest %s version here"
601
  msgstr "la dernière version de %s ici"
602
 
603
- #: includes/class-freemius.php:21564
604
  msgid "New"
605
  msgstr "Nouveau"
606
 
607
- #: includes/class-freemius.php:21569
608
  msgid "Seems like you got the latest release."
609
  msgstr "Il semble que vous ayez la dernière version."
610
 
611
- #: includes/class-freemius.php:21570
612
  msgid "You are all good!"
613
  msgstr "Vous êtes tout bon !"
614
 
615
- #: includes/class-freemius.php:21873
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  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."
618
 
619
- #: includes/class-freemius.php:22013
620
  msgid "Site successfully opted in."
621
  msgstr "Site ajouté avec succès."
622
 
623
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
624
  msgid "Awesome"
625
  msgstr "Formidable"
626
 
627
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
630
 
631
- #: includes/class-freemius.php:22031
632
  msgid "Thank you!"
633
  msgstr "Merci !"
634
 
635
- #: includes/class-freemius.php:22038
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
638
 
639
- #: includes/class-freemius.php:22196
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
642
 
643
- #: includes/class-freemius.php:22202
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
646
 
647
- #: includes/class-freemius.php:22207
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s est le nouveau propriétaire du compte."
650
 
651
- #: includes/class-freemius.php:22209
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Félicitations"
655
 
656
- #: includes/class-freemius.php:22245
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
659
 
660
- #: includes/class-freemius.php:22257
661
  msgid "Please provide your full name."
662
  msgstr "Merci d'indiquer vos prénom et nom."
663
 
664
- #: includes/class-freemius.php:22262
665
  msgid "Your name was successfully updated."
666
  msgstr "Votre nom a été mis à jour."
667
 
668
- #: includes/class-freemius.php:22323
669
  msgid "You have successfully updated your %s."
670
  msgstr "Votre %s a bien été mis à jour."
671
 
672
- #: includes/class-freemius.php:22382
673
  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."
674
  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."
675
 
676
- #: includes/class-freemius.php:22385
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
- #: includes/class-freemius.php:22483
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
683
 
684
- #: includes/class-freemius.php:22484
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Avertissement"
688
 
689
- #: includes/class-freemius.php:23060
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Hey"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
697
 
698
- #: includes/class-freemius.php:23068
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
701
 
702
- #: includes/class-freemius.php:23069
703
  msgid "No credit card required"
704
  msgstr "Pas besoin de carte bancaire"
705
 
706
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Commencer l'essai gratuit"
710
 
711
- #: includes/class-freemius.php:23153
712
  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!"
713
  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 !"
714
 
715
- #: includes/class-freemius.php:23162
716
  msgid "Learn more"
717
  msgstr "En savoir plus"
718
 
719
- #: includes/class-freemius.php23348, templates/account.php556,
720
- #: templates/account.php706, templates/connect.php179,
721
- #: templates/connect.php456, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Activer la licence"
725
 
726
- #: includes/class-freemius.php23349, templates/account.php650,
727
- #: templates/account.php705, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Changer la licence"
731
 
732
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Désinscription"
735
 
736
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Inscription"
741
 
742
- #: includes/class-freemius.php:23700
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
- #: includes/class-freemius.php:23708
747
  msgid "Activate %s features"
748
  msgstr "Activer les fonctionnalités %s"
749
 
750
- #: includes/class-freemius.php:23721
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
753
 
754
- #: includes/class-freemius.php:23725
755
  msgid "Download the latest %s version"
756
  msgstr "Télécharger la dernière version %s"
757
 
758
- #: includes/class-freemius.php:23729
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Téléverser et activer la version téléchargée"
761
 
762
- #: includes/class-freemius.php:23731
763
  msgid "How to upload and activate?"
764
  msgstr "Comment téléverser et activer ?"
765
 
766
- #: includes/class-freemius.php:23865
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
769
 
770
- #: includes/class-freemius.php:24034
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
773
 
774
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
775
- #: includes/class-fs-plugin-updater.php1273,
776
- #: includes/class-fs-plugin-updater.php:1287
777
  msgid "Invalid module ID."
778
  msgstr "ID du module non valide."
779
 
780
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
781
  msgid "Premium version already active."
782
  msgstr "Version premium déjà active."
783
 
784
- #: includes/class-freemius.php:24060
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
787
 
788
- #: includes/class-freemius.php:24067
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
791
 
792
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
793
  msgid "Premium add-on version already installed."
794
  msgstr "La version premium de l'add-on est déjà installée."
795
 
796
- #: includes/class-freemius.php:24435
797
  msgid "View paid features"
798
  msgstr "Voir les fonctionnalités payantes"
799
 
800
- #: includes/class-freemius.php:24757
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
803
 
804
- #: includes/class-freemius.php:24758
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Merci beaucoup d'utiliser %s !"
807
 
808
- #: includes/class-freemius.php:24764
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
811
 
812
- #: includes/class-freemius.php:24768
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Merci beaucoup d'utiliser nos produits !"
815
 
816
- #: includes/class-freemius.php:24769
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
819
 
820
- #: includes/class-freemius.php:24788
821
  msgid "%s and its add-ons"
822
  msgstr "%s et ses add-ons"
823
 
824
- #: includes/class-freemius.php:24797
825
  msgid "Products"
826
  msgstr "Produits"
827
 
828
- #: includes/class-freemius.php24804, templates/connect.php:280
829
  msgid "Yes"
830
  msgstr "Oui"
831
 
832
- #: includes/class-freemius.php24805, templates/connect.php:281
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
835
 
836
- #: includes/class-freemius.php24806, templates/connect.php:286
837
  msgid "No"
838
  msgstr "Non"
839
 
840
- #: includes/class-freemius.php24808, templates/connect.php:288
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
843
 
844
- #: includes/class-freemius.php:24818
845
  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 :-)"
846
  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 :-)"
847
 
848
- #: includes/class-freemius.php24820, templates/connect.php:295
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  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 :"
851
 
852
- #: includes/class-freemius.php:25102
853
  msgid "License key is empty."
854
  msgstr "La clé de licence est vide."
855
 
@@ -882,15 +882,15 @@ msgstr "Nouvelle version"
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Information importante de mise à jour :"
884
 
885
- #: includes/class-fs-plugin-updater.php:1338
886
  msgid "Installing plugin: %s"
887
  msgstr "Installation du plugin : %s"
888
 
889
- #: includes/class-fs-plugin-updater.php:1379
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
892
 
893
- #: includes/class-fs-plugin-updater.php:1561
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  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."
896
 
@@ -912,7 +912,7 @@ msgstr "Commencer ma %s gratuite"
912
  msgid "Install Free Version Update Now"
913
  msgstr "Installer la dernière mise à jour gratuite maintenant"
914
 
915
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
916
  msgid "Install Update Now"
917
  msgstr "Installer la mise à jour maintenant"
918
 
@@ -932,7 +932,7 @@ msgctxt "as download latest version"
932
  msgid "Download Latest Free Version"
933
  msgstr "Télécharger la dernière version gratuite"
934
 
935
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
@@ -944,11 +944,11 @@ msgstr "Télécharger la dernière version"
944
  msgid "Activate this add-on"
945
  msgstr "Activer cet add-on"
946
 
947
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
948
  msgid "Activate Free Version"
949
  msgstr "Activez la version gratuite"
950
 
951
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Activer"
@@ -1084,7 +1084,7 @@ msgstr "Après vos %s gratuits, payez seulement %s"
1084
  msgid "Details"
1085
  msgstr "Détails"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
@@ -1100,7 +1100,7 @@ msgstr "Auteur"
1100
  msgid "Last Updated"
1101
  msgstr "Dernière mise à jour"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "Il y a %s"
@@ -1211,13 +1211,13 @@ msgstr "Dernière Version Installée"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "La dernière version gratuite a été installé"
1213
 
1214
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Rétrograder votre formule"
1219
 
1220
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
@@ -1225,317 +1225,317 @@ msgstr "Annuler votre abonnement"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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é."
1238
 
1239
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1243
 
1244
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  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."
1249
 
1250
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  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."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
- #: templates/account.php109,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Activer la formule %s"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
- #: templates/account.php112, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Renouvellements automatique dans %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
- #: templates/account.php114, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Expire dans %s"
1274
 
1275
- #: templates/account.php:115
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Synchroniser la licence"
1279
 
1280
- #: templates/account.php116, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Annuler la période d'essai"
1283
 
1284
- #: templates/account.php117, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Changer de formule"
1287
 
1288
- #: templates/account.php118, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Mise à jour"
1292
 
1293
- #: templates/account.php120, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Rétrograder"
1298
 
1299
- #: templates/account.php122, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Gratuit"
1305
 
1306
- #: templates/account.php124, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Formule"
1312
 
1313
- #: templates/account.php:125
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
- #: templates/account.php:248
1318
  msgid "Free Trial"
1319
  msgstr "Essai gratuit"
1320
 
1321
- #: templates/account.php:259
1322
  msgid "Account Details"
1323
  msgstr "Détails du compte"
1324
 
1325
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
- #: templates/account.php:268
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
- #: templates/account.php:275
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
- #: templates/account.php:286
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
1340
 
1341
- #: templates/account.php:288
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
1344
 
1345
- #: templates/account.php:291
1346
  msgid "Delete Account"
1347
  msgstr "Supprimer le compte"
1348
 
1349
- #: templates/account.php303, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Désactiver la licence"
1353
 
1354
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Êtes-vous de vouloir continuer ?"
1357
 
1358
- #: templates/account.php326, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Annuler l'abonnement"
1361
 
1362
- #: templates/account.php355, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Synchroniser"
1366
 
1367
- #: templates/account.php370, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Nom"
1370
 
1371
- #: templates/account.php376, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "User ID"
1378
 
1379
- #: templates/account.php401, templates/account.php719,
1380
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
- #: templates/account.php:408
1388
  msgid "Site ID"
1389
  msgstr "Site ID"
1390
 
1391
- #: templates/account.php:411
1392
  msgid "No ID"
1393
  msgstr "ID manquant"
1394
 
1395
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Clef publique"
1400
 
1401
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Clef secrête"
1405
 
1406
- #: templates/account.php:425
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Clef secrète manquante"
1410
 
1411
- #: templates/account.php452, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Période d'essai"
1415
 
1416
- #: templates/account.php479, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Clef de licence"
1420
 
1421
- #: templates/account.php:510
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
- #: templates/account.php:516
1426
  msgid "not verified"
1427
  msgstr "Non vérifié"
1428
 
1429
- #: templates/account.php525, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Expiré"
1432
 
1433
- #: templates/account.php:585
1434
  msgid "Premium version"
1435
  msgstr "Version premium"
1436
 
1437
- #: templates/account.php:587
1438
  msgid "Free version"
1439
  msgstr "Version gratuite"
1440
 
1441
- #: templates/account.php:599
1442
  msgid "Verify Email"
1443
  msgstr "Vérifier l'email"
1444
 
1445
- #: templates/account.php:613
1446
  msgid "Download %s Version"
1447
  msgstr "Télécharger la version %s"
1448
 
1449
- #: templates/account.php:629
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
- #: templates/account.php647, templates/account.php890,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Afficher"
1459
 
1460
- #: templates/account.php:662
1461
  msgid "What is your %s?"
1462
  msgstr "Quel est votre %s ?"
1463
 
1464
- #: templates/account.php670, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Éditer"
1468
 
1469
- #: templates/account.php674, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
- #: templates/account.php:698
1474
  msgid "Sites"
1475
  msgstr "Sites"
1476
 
1477
- #: templates/account.php:711
1478
  msgid "Search by address"
1479
  msgstr "Recherche par adresse"
1480
 
1481
- #: templates/account.php720, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Adresse"
1484
 
1485
- #: templates/account.php:721
1486
  msgid "License"
1487
  msgstr "Licence"
1488
 
1489
- #: templates/account.php:722
1490
  msgid "Plan"
1491
  msgstr "Formule"
1492
 
1493
- #: templates/account.php:755
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licence"
1497
 
1498
- #: templates/account.php:884
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Cacher"
1502
 
1503
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Traitement en cours"
1506
 
1507
- #: templates/account.php:909
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
- #: templates/account.php:967
1512
  msgid "Cancelling %s"
1513
  msgstr "Annulation de %s"
1514
 
1515
- #: templates/account.php967, templates/account.php984,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "essai"
1520
 
1521
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Annulation de %s..."
1524
 
1525
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "abonnement"
1529
 
1530
- #: templates/account.php:999
1531
  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?"
1532
  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 ?"
1533
 
1534
- #: templates/account.php:1073
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
- #: templates/account.php:1074
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
@@ -1561,7 +1561,7 @@ msgctxt "installed add-on"
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
@@ -1617,86 +1617,94 @@ msgstr "Merci %s !"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Valider & Activer la licence"
1619
 
1620
- #: templates/connect.php:189
1621
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1622
- msgstr "Merci d'avoir acheté %s ! Pour commencer, veuillez indiquer votre clef de licence :"
1623
 
1624
- #: templates/connect.php:196
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s."
1627
 
1628
- #: templates/connect.php:197
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Ne manquez jamais une mise à jour importante - optez pour nos notifications de mises à jour de sécurité et de fonctionnalités, et un suivi diagnostique non sensible avec %4$s."
1631
 
1632
- #: templates/connect.php:203
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1635
 
1636
- #: templates/connect.php:204
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1639
 
1640
- #: templates/connect.php:238
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
1643
 
1644
- #: templates/connect.php:241
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
1647
 
1648
- #: templates/connect.php:243
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  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."
1651
 
1652
- #: templates/connect.php:245
1653
  msgid "%s's paid features"
1654
  msgstr "Fonctionnalités payantes de %s"
1655
 
1656
- #: templates/connect.php:250
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
1659
 
1660
- #: templates/connect.php:252
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1663
 
1664
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Clef de licence"
1668
 
1669
- #: templates/connect.php264, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Vous ne trouvez pas votre clef de licence ?"
1672
 
1673
- #: templates/connect.php323, templates/connect.php695,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Passer"
1678
 
1679
- #: templates/connect.php:326
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Déléguer aux administrateurs du site"
1682
 
1683
- #: templates/connect.php:326
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
1686
 
1687
- #: templates/connect.php:364
 
 
 
 
1688
  msgid "Your Profile Overview"
1689
  msgstr "Résumé de votre profil"
1690
 
1691
- #: templates/connect.php:365
1692
  msgid "Name and email address"
1693
  msgstr "Nom et adresse email"
1694
 
1695
- #: templates/connect.php:372
 
 
 
 
1696
  msgid "Your Site Overview"
1697
  msgstr "Résumé de votre site"
1698
 
1699
- #: templates/connect.php:373
1700
  msgid "Site URL, WP version, PHP info"
1701
  msgstr "Site URL, WP version, PHP info"
1702
 
@@ -1704,64 +1712,84 @@ msgstr "Site URL, WP version, PHP info"
1704
  msgid "Admin Notices"
1705
  msgstr "Notifications Administrateur"
1706
 
1707
- #: templates/connect.php380, templates/connect.php:396
1708
  msgid "Updates, announcements, marketing, no spam"
1709
  msgstr "Mises à jour, annonces, marketing, pas de spam"
1710
 
1711
- #: templates/connect.php:386
1712
- msgid "Current %s Events"
1713
- msgstr "Évènements du %s actuel"
1714
-
1715
  #: templates/connect.php:387
1716
- msgid "Activation, deactivation and uninstall"
1717
- msgstr "Activation, désactivation et désintallation"
 
 
 
 
 
 
 
 
1718
 
1719
- #: templates/connect.php:395
1720
  msgid "Newsletter"
1721
  msgstr "Newsletter"
1722
 
1723
- #: templates/connect.php:403
1724
  msgid "Plugins & Themes"
1725
  msgstr "Plugins & Themes"
1726
 
1727
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1728
  msgid "Title, slug, version, and is active"
1729
  msgstr "Title, slug, version, and is active"
1730
 
1731
- #: templates/connect.php421, templates/forms/license-activation.php:41
1732
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1733
- msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
1734
 
1735
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1736
  msgid "What permissions are being granted?"
1737
  msgstr "Quelles autorisations sont accordées ?"
1738
 
1739
- #: templates/connect.php:452
1740
  msgid "Don't have a license key?"
1741
  msgstr "Vous n'avez pas de clef de licence ?"
1742
 
1743
- #: templates/connect.php:455
1744
  msgid "Have a license key?"
1745
  msgstr "Vous avez une clef de licence ?"
1746
 
1747
- #: templates/connect.php:463
1748
  msgid "Privacy Policy"
1749
  msgstr "Politique de confidentialité"
1750
 
1751
- #: templates/connect.php:465
1752
  msgid "License Agreement"
1753
  msgstr "Contrat de licence"
1754
 
1755
- #: templates/connect.php:465
1756
  msgid "Terms of Service"
1757
  msgstr "Conditions générales de service"
1758
 
1759
- #: templates/connect.php:854
1760
  msgctxt "as in the process of sending an email"
1761
  msgid "Sending email"
1762
  msgstr "Email en cours d'envoi"
1763
 
1764
- #: templates/connect.php:855
1765
  msgctxt "as activating plugin"
1766
  msgid "Activating"
1767
  msgstr "Activation en cours"
@@ -2364,7 +2392,11 @@ msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste
2364
  msgid "Update License"
2365
  msgstr "Mettre à jour la licence"
2366
 
2367
- #: templates/forms/license-activation.php:181
 
 
 
 
2368
  msgid "Associate with the license owner's account."
2369
  msgstr "Associate with the license owner's account."
2370
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Boris Colombier <transifex.com@wba.fr>, 2018
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: fr_FR\n"
13
  "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1919, templates/account.php:912
25
  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."
26
  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."
27
 
28
+ #: includes/class-freemius.php:1926
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
+ #: includes/class-freemius.php:2138
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
35
 
36
+ #: includes/class-freemius.php:2140
37
  msgid "Error"
38
  msgstr "Erreur"
39
 
40
+ #: includes/class-freemius.php:2540
41
  msgid "I found a better %s"
42
  msgstr "J'ai trouvé un meilleur %s"
43
 
44
+ #: includes/class-freemius.php:2542
45
  msgid "What's the %s's name?"
46
  msgstr "Quel est le nom du %s ?"
47
 
48
+ #: includes/class-freemius.php:2548
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "C'est une %s temporaire. Je corrige un problème."
51
 
52
+ #: includes/class-freemius.php:2550
53
  msgid "Deactivation"
54
  msgstr "Désactivation"
55
 
56
+ #: includes/class-freemius.php:2551
57
  msgid "Theme Switch"
58
  msgstr "Changement de Thème"
59
 
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Autre"
64
 
65
+ #: includes/class-freemius.php:2568
66
  msgid "I no longer need the %s"
67
  msgstr "Je n'ai plus besoin du %s"
68
 
69
+ #: includes/class-freemius.php:2575
70
  msgid "I only needed the %s for a short period"
71
  msgstr "Je n'ai besoin de %s que pour une courte période"
72
 
73
+ #: includes/class-freemius.php:2581
74
  msgid "The %s broke my site"
75
  msgstr "Le %s a cassé mon site"
76
 
77
+ #: includes/class-freemius.php:2588
78
  msgid "The %s suddenly stopped working"
79
  msgstr "Le %s a soudainement arrêté de fonctionner"
80
 
81
+ #: includes/class-freemius.php:2598
82
  msgid "I can't pay for it anymore"
83
  msgstr "Je ne peux plus payer pour ça"
84
 
85
+ #: includes/class-freemius.php:2600
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Quel prix seriez-vous prêt à payer ?"
88
 
89
+ #: includes/class-freemius.php:2606
90
  msgid "I don't like to share my information with you"
91
  msgstr "Je ne veux pas partager mes informations avec vous"
92
 
93
+ #: includes/class-freemius.php:2627
94
  msgid "The %s didn't work"
95
  msgstr "Le %s n'a pas fonctionné"
96
 
97
+ #: includes/class-freemius.php:2637
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Je ne comprends pas comment le faire fonctionner"
100
 
101
+ #: includes/class-freemius.php:2645
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
104
 
105
+ #: includes/class-freemius.php:2647
106
  msgid "What feature?"
107
  msgstr "Quelle fonctionnalité ?"
108
 
109
+ #: includes/class-freemius.php:2651
110
  msgid "The %s is not working"
111
  msgstr "Le %s ne fonctionne pas"
112
 
113
+ #: includes/class-freemius.php:2653
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
116
 
117
+ #: includes/class-freemius.php:2657
118
  msgid "It's not what I was looking for"
119
  msgstr "Ce n'est pas ce que je recherche"
120
 
121
+ #: includes/class-freemius.php:2659
122
  msgid "What you've been looking for?"
123
  msgstr "Que recherchez-vous ?"
124
 
125
+ #: includes/class-freemius.php:2663
126
  msgid "The %s didn't work as expected"
127
  msgstr "Le %s n'a pas fonctionné comme prévu"
128
 
129
+ #: includes/class-freemius.php:2665
130
  msgid "What did you expect?"
131
  msgstr "À quoi vous attendiez-vous ?"
132
 
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Débuggage Freemius"
136
 
137
+ #: includes/class-freemius.php:4272
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
140
 
141
+ #: includes/class-freemius.php:4274
142
  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."
143
  msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
144
 
145
+ #: includes/class-freemius.php:4281
146
  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."
147
  msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
148
 
149
+ #: includes/class-freemius.php:4386
150
  msgid "Yes - do your thing"
151
  msgstr "Oui - allez-y"
152
 
153
+ #: includes/class-freemius.php:4391
154
  msgid "No - just deactivate"
155
  msgstr "Non - désactivation seulement"
156
 
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Oups"
168
 
169
+ #: includes/class-freemius.php:4505
170
  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."
171
  msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
172
 
173
+ #: includes/class-freemius.php:4927
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s ne peut pas fonctionner sans %s."
177
 
178
+ #: includes/class-freemius.php:4928
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s ne peut pas fonctionner sans le plugin."
182
 
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
187
 
188
+ #: includes/class-freemius.php:5857
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "La version premium de %s a été activée avec succès."
191
 
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Génial"
196
 
197
+ #: includes/class-freemius.php:5884
198
  msgid "You have a %s license."
199
  msgstr "Vous avez une license pour %s."
200
 
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Youpi"
208
 
209
+ #: includes/class-freemius.php:6174
210
  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."
211
  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."
212
 
213
+ #: includes/class-freemius.php:6178
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
216
 
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Plus d'informations à propos de %s"
221
 
222
+ #: includes/class-freemius.php:6188
223
  msgid "Purchase License"
224
  msgstr "Acheter une licence"
225
 
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
229
 
230
+ #: includes/class-freemius.php:7129
231
  msgid "start the trial"
232
  msgstr "commencer la période d'essai"
233
 
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "compléter l'installation"
237
 
238
+ #: includes/class-freemius.php:7249
239
  msgid "You are just one step away - %s"
240
  msgstr "Il ne reste qu'une étape - %s"
241
 
242
+ #: includes/class-freemius.php:7252
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Compléter \"%s\" Activer Maintenant"
246
 
247
+ #: includes/class-freemius.php:7334
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Nous avons fait quelques modifications au %s, %s"
250
 
251
+ #: includes/class-freemius.php:7338
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
254
 
255
+ #: includes/class-freemius.php:7773
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "La mise à jour du %s s'est terminée avec succès "
258
 
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Add-On"
265
 
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Thème"
276
 
277
+ #: includes/class-freemius.php:13188
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
+ #: includes/class-freemius.php:13202
282
  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."
283
  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."
284
 
285
+ #: includes/class-freemius.php:13207
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
+ #: includes/class-freemius.php:13208
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
+ #: includes/class-freemius.php:13266
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
+ #: includes/class-freemius.php:13339
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
304
 
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
308
 
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
  msgid "Change Ownership"
311
  msgstr "Changement De Propriétaire"
312
 
313
+ #: includes/class-freemius.php:13977
314
  msgid "Invalid site details collection."
315
  msgstr "Récupération des détails du site non valide."
316
 
317
+ #: includes/class-freemius.php:14097
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
320
 
321
+ #: includes/class-freemius.php:14099
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
324
 
325
+ #: includes/class-freemius.php:14373
326
  msgid "Account is pending activation."
327
  msgstr "Compte en cours d'activation."
328
 
329
+ #: includes/class-freemius.php14485,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Acheter une licence maintenant"
333
 
334
+ #: includes/class-freemius.php14497,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Renouvelez votre licence maintenant"
338
 
339
+ #: includes/class-freemius.php:14501
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
342
 
343
+ #: includes/class-freemius.php:16929
344
  msgid "%s activation was successfully completed."
345
  msgstr "L'activation de %s s'est terminée avec succès."
346
 
347
+ #: includes/class-freemius.php:16943
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "Votre compte a été activé avec succès avec la formule %s."
350
 
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
  msgid "Your trial has been successfully started."
353
  msgstr "Votre période d'essai a bien démarré."
354
 
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
  msgid "Couldn't activate %s."
358
  msgstr "Impossible d'activer %s."
359
 
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
  msgid "Please contact us with the following message:"
363
  msgstr "Merci de nous contacter avec le message suivant :"
364
 
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
  msgid "Upgrade"
371
  msgstr "Mise à jour"
372
 
373
+ #: includes/class-freemius.php:18184
374
  msgid "Start Trial"
375
  msgstr "Essai gratuit"
376
 
377
+ #: includes/class-freemius.php:18186
378
  msgid "Pricing"
379
  msgstr "Tarifs"
380
 
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Compte"
389
 
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Contactez Nous"
394
 
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Add-Ons"
400
 
401
+ #: includes/class-freemius.php:18361
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Tarifs"
415
 
416
+ #: includes/class-freemius.php18576,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Forum de Support"
420
 
421
+ #: includes/class-freemius.php:19550
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
424
 
425
+ #: includes/class-freemius.php:19551
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Directement"
429
 
430
+ #: includes/class-freemius.php:20057
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
+ #: includes/class-freemius.php:20081
435
  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."
436
  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."
437
 
438
+ #: includes/class-freemius.php:20316
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Votre Add-on %s a bien été mis à jour."
441
 
442
+ #: includes/class-freemius.php:20318
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "L'Add-on %s a bien été acheté."
445
 
446
+ #: includes/class-freemius.php:20321
447
  msgid "Download the latest version"
448
  msgstr "Télécharger la dernière version"
449
 
450
+ #: includes/class-freemius.php:20407
451
  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"
452
  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"
453
 
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
  msgid "Error received from the server:"
457
  msgstr "Une erreur a été reçu depuis le serveur :"
458
 
459
+ #: includes/class-freemius.php:20423
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  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."
462
 
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
+ #: includes/class-freemius.php:20664
470
  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."
471
  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é."
472
 
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Période d'essai"
478
 
479
+ #: includes/class-freemius.php:20670
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
482
 
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
  msgid "Please contact us here"
485
  msgstr "Merci de nous contacter ici"
486
 
487
+ #: includes/class-freemius.php:20685
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
+ #: includes/class-freemius.php:20686
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Votre formule a bien été mise à jour."
494
 
495
+ #: includes/class-freemius.php:20703
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Votre formule a bien été modifié vers %s. "
498
 
499
+ #: includes/class-freemius.php:20719
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
502
 
503
+ #: includes/class-freemius.php:20721
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
506
 
507
+ #: includes/class-freemius.php:20729
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
510
 
511
+ #: includes/class-freemius.php:20742
512
  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."
513
  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."
514
 
515
+ #: includes/class-freemius.php:20768
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
518
 
519
+ #: includes/class-freemius.php:20770
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  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."
522
 
523
+ #: includes/class-freemius.php:20885
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Il semble que la licence ne puisse être activée."
526
 
527
+ #: includes/class-freemius.php:20927
528
  msgid "Your license was successfully activated."
529
  msgstr "Votre licence a bien été activée."
530
 
531
+ #: includes/class-freemius.php:20953
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "Il semble que votre site n'ait pas de licence active."
534
 
535
+ #: includes/class-freemius.php:20977
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Il semble que la désactivation de la licence a échoué."
538
 
539
+ #: includes/class-freemius.php:21006
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
+ #: includes/class-freemius.php:21007
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
546
 
547
+ #: includes/class-freemius.php:21010
548
  msgid "O.K"
549
  msgstr "O.K"
550
 
551
+ #: includes/class-freemius.php:21063
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
554
 
555
+ #: includes/class-freemius.php:21072
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
558
 
559
+ #: includes/class-freemius.php:21114
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "Vous utilisez déjà le %s en période d'essai. "
562
 
563
+ #: includes/class-freemius.php:21125
564
  msgid "You already utilized a trial before."
565
  msgstr "Vous avez déjà utilisé la période d'essai."
566
 
567
+ #: includes/class-freemius.php:21139
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
570
 
571
+ #: includes/class-freemius.php:21150
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "La formule %s ne propose pas de période d'essai."
574
 
575
+ #: includes/class-freemius.php:21161
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "Aucune formule du %s ne propose de période d'essai."
578
 
579
+ #: includes/class-freemius.php:21211
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
582
 
583
+ #: includes/class-freemius.php:21247
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
586
 
587
+ #: includes/class-freemius.php:21266
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Votre période d'essai %s a bien été annulé."
590
 
591
+ #: includes/class-freemius.php:21582
592
  msgid "Version %s was released."
593
  msgstr "La version %s vient d'être publiée."
594
 
595
+ #: includes/class-freemius.php:21582
596
  msgid "Please download %s."
597
  msgstr "Merci de télécharger %s."
598
 
599
+ #: includes/class-freemius.php:21589
600
  msgid "the latest %s version here"
601
  msgstr "la dernière version de %s ici"
602
 
603
+ #: includes/class-freemius.php:21594
604
  msgid "New"
605
  msgstr "Nouveau"
606
 
607
+ #: includes/class-freemius.php:21599
608
  msgid "Seems like you got the latest release."
609
  msgstr "Il semble que vous ayez la dernière version."
610
 
611
+ #: includes/class-freemius.php:21600
612
  msgid "You are all good!"
613
  msgstr "Vous êtes tout bon !"
614
 
615
+ #: includes/class-freemius.php:21903
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  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."
618
 
619
+ #: includes/class-freemius.php:22043
620
  msgid "Site successfully opted in."
621
  msgstr "Site ajouté avec succès."
622
 
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
  msgid "Awesome"
625
  msgstr "Formidable"
626
 
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
630
 
631
+ #: includes/class-freemius.php:22061
632
  msgid "Thank you!"
633
  msgstr "Merci !"
634
 
635
+ #: includes/class-freemius.php:22068
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
638
 
639
+ #: includes/class-freemius.php:22226
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
642
 
643
+ #: includes/class-freemius.php:22232
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
646
 
647
+ #: includes/class-freemius.php:22237
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s est le nouveau propriétaire du compte."
650
 
651
+ #: includes/class-freemius.php:22239
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Félicitations"
655
 
656
+ #: includes/class-freemius.php:22275
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
659
 
660
+ #: includes/class-freemius.php:22287
661
  msgid "Please provide your full name."
662
  msgstr "Merci d'indiquer vos prénom et nom."
663
 
664
+ #: includes/class-freemius.php:22292
665
  msgid "Your name was successfully updated."
666
  msgstr "Votre nom a été mis à jour."
667
 
668
+ #: includes/class-freemius.php:22353
669
  msgid "You have successfully updated your %s."
670
  msgstr "Votre %s a bien été mis à jour."
671
 
672
+ #: includes/class-freemius.php:22412
673
  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."
674
  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."
675
 
676
+ #: includes/class-freemius.php:22415
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
+ #: includes/class-freemius.php:22513
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
683
 
684
+ #: includes/class-freemius.php:22514
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Avertissement"
688
 
689
+ #: includes/class-freemius.php:23090
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Hey"
693
 
694
+ #: includes/class-freemius.php:23090
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
697
 
698
+ #: includes/class-freemius.php:23098
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
701
 
702
+ #: includes/class-freemius.php:23099
703
  msgid "No credit card required"
704
  msgstr "Pas besoin de carte bancaire"
705
 
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Commencer l'essai gratuit"
710
 
711
+ #: includes/class-freemius.php:23183
712
  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!"
713
  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 !"
714
 
715
+ #: includes/class-freemius.php:23192
716
  msgid "Learn more"
717
  msgstr "En savoir plus"
718
 
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Activer la licence"
725
 
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Changer la licence"
731
 
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Désinscription"
735
 
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Inscription"
741
 
742
+ #: includes/class-freemius.php:23738
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
+ #: includes/class-freemius.php:23746
747
  msgid "Activate %s features"
748
  msgstr "Activer les fonctionnalités %s"
749
 
750
+ #: includes/class-freemius.php:23759
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
753
 
754
+ #: includes/class-freemius.php:23763
755
  msgid "Download the latest %s version"
756
  msgstr "Télécharger la dernière version %s"
757
 
758
+ #: includes/class-freemius.php:23767
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Téléverser et activer la version téléchargée"
761
 
762
+ #: includes/class-freemius.php:23769
763
  msgid "How to upload and activate?"
764
  msgstr "Comment téléverser et activer ?"
765
 
766
+ #: includes/class-freemius.php:23903
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
769
 
770
+ #: includes/class-freemius.php:24072
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
773
 
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
  msgid "Invalid module ID."
778
  msgstr "ID du module non valide."
779
 
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
  msgid "Premium version already active."
782
  msgstr "Version premium déjà active."
783
 
784
+ #: includes/class-freemius.php:24098
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
787
 
788
+ #: includes/class-freemius.php:24105
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
791
 
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
  msgid "Premium add-on version already installed."
794
  msgstr "La version premium de l'add-on est déjà installée."
795
 
796
+ #: includes/class-freemius.php:24473
797
  msgid "View paid features"
798
  msgstr "Voir les fonctionnalités payantes"
799
 
800
+ #: includes/class-freemius.php:24795
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
803
 
804
+ #: includes/class-freemius.php:24796
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Merci beaucoup d'utiliser %s !"
807
 
808
+ #: includes/class-freemius.php:24802
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
811
 
812
+ #: includes/class-freemius.php:24806
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Merci beaucoup d'utiliser nos produits !"
815
 
816
+ #: includes/class-freemius.php:24807
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
819
 
820
+ #: includes/class-freemius.php:24826
821
  msgid "%s and its add-ons"
822
  msgstr "%s et ses add-ons"
823
 
824
+ #: includes/class-freemius.php:24835
825
  msgid "Products"
826
  msgstr "Produits"
827
 
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
  msgid "Yes"
830
  msgstr "Oui"
831
 
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
835
 
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
  msgid "No"
838
  msgstr "Non"
839
 
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
843
 
844
+ #: includes/class-freemius.php:24856
845
  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 :-)"
846
  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 :-)"
847
 
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  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 :"
851
 
852
+ #: includes/class-freemius.php:25140
853
  msgid "License key is empty."
854
  msgstr "La clé de licence est vide."
855
 
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Information importante de mise à jour :"
884
 
885
+ #: includes/class-fs-plugin-updater.php:1326
886
  msgid "Installing plugin: %s"
887
  msgstr "Installation du plugin : %s"
888
 
889
+ #: includes/class-fs-plugin-updater.php:1367
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
892
 
893
+ #: includes/class-fs-plugin-updater.php:1549
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  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."
896
 
912
  msgid "Install Free Version Update Now"
913
  msgstr "Installer la dernière mise à jour gratuite maintenant"
914
 
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
  msgid "Install Update Now"
917
  msgstr "Installer la mise à jour maintenant"
918
 
932
  msgid "Download Latest Free Version"
933
  msgstr "Télécharger la dernière version gratuite"
934
 
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
944
  msgid "Activate this add-on"
945
  msgstr "Activer cet add-on"
946
 
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
  msgid "Activate Free Version"
949
  msgstr "Activez la version gratuite"
950
 
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Activer"
1084
  msgid "Details"
1085
  msgstr "Détails"
1086
 
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
1100
  msgid "Last Updated"
1101
  msgstr "Dernière mise à jour"
1102
 
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "Il y a %s"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "La dernière version gratuite a été installé"
1213
 
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Rétrograder votre formule"
1219
 
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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é."
1238
 
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1243
 
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  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."
1249
 
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  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."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Activer la formule %s"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Renouvellements automatique dans %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Expire dans %s"
1274
 
1275
+ #: templates/account.php:117
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Synchroniser la licence"
1279
 
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Annuler la période d'essai"
1283
 
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Changer de formule"
1287
 
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Mise à jour"
1292
 
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Rétrograder"
1298
 
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Gratuit"
1305
 
1306
+ #: templates/account.php126, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Formule"
1312
 
1313
+ #: templates/account.php:127
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
+ #: templates/account.php:250
1318
  msgid "Free Trial"
1319
  msgstr "Essai gratuit"
1320
 
1321
+ #: templates/account.php:261
1322
  msgid "Account Details"
1323
  msgstr "Détails du compte"
1324
 
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
+ #: templates/account.php:270
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
+ #: templates/account.php:277
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
+ #: templates/account.php:288
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
1340
 
1341
+ #: templates/account.php:290
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
1344
 
1345
+ #: templates/account.php:293
1346
  msgid "Delete Account"
1347
  msgstr "Supprimer le compte"
1348
 
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Désactiver la licence"
1353
 
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Êtes-vous de vouloir continuer ?"
1357
 
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Annuler l'abonnement"
1361
 
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Synchroniser"
1366
 
1367
+ #: templates/account.php372, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Nom"
1370
 
1371
+ #: templates/account.php378, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "User ID"
1378
 
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
+ #: templates/account.php:410
1388
  msgid "Site ID"
1389
  msgstr "Site ID"
1390
 
1391
+ #: templates/account.php:413
1392
  msgid "No ID"
1393
  msgstr "ID manquant"
1394
 
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Clef publique"
1400
 
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Clef secrête"
1405
 
1406
+ #: templates/account.php:427
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Clef secrète manquante"
1410
 
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Période d'essai"
1415
 
1416
+ #: templates/account.php481, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Clef de licence"
1420
 
1421
+ #: templates/account.php:512
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
+ #: templates/account.php:518
1426
  msgid "not verified"
1427
  msgstr "Non vérifié"
1428
 
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Expiré"
1432
 
1433
+ #: templates/account.php:587
1434
  msgid "Premium version"
1435
  msgstr "Version premium"
1436
 
1437
+ #: templates/account.php:589
1438
  msgid "Free version"
1439
  msgstr "Version gratuite"
1440
 
1441
+ #: templates/account.php:601
1442
  msgid "Verify Email"
1443
  msgstr "Vérifier l'email"
1444
 
1445
+ #: templates/account.php:615
1446
  msgid "Download %s Version"
1447
  msgstr "Télécharger la version %s"
1448
 
1449
+ #: templates/account.php:631
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
+ #: templates/account.php649, templates/account.php892,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Afficher"
1459
 
1460
+ #: templates/account.php:664
1461
  msgid "What is your %s?"
1462
  msgstr "Quel est votre %s ?"
1463
 
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Éditer"
1468
 
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
+ #: templates/account.php:700
1474
  msgid "Sites"
1475
  msgstr "Sites"
1476
 
1477
+ #: templates/account.php:713
1478
  msgid "Search by address"
1479
  msgstr "Recherche par adresse"
1480
 
1481
+ #: templates/account.php722, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Adresse"
1484
 
1485
+ #: templates/account.php:723
1486
  msgid "License"
1487
  msgstr "Licence"
1488
 
1489
+ #: templates/account.php:724
1490
  msgid "Plan"
1491
  msgstr "Formule"
1492
 
1493
+ #: templates/account.php:757
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licence"
1497
 
1498
+ #: templates/account.php:886
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Cacher"
1502
 
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Traitement en cours"
1506
 
1507
+ #: templates/account.php:911
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
+ #: templates/account.php:969
1512
  msgid "Cancelling %s"
1513
  msgstr "Annulation de %s"
1514
 
1515
+ #: templates/account.php969, templates/account.php986,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "essai"
1520
 
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Annulation de %s..."
1524
 
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "abonnement"
1529
 
1530
+ #: templates/account.php:1001
1531
  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?"
1532
  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 ?"
1533
 
1534
+ #: templates/account.php:1075
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
+ #: templates/account.php:1076
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Valider & Activer la licence"
1619
 
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
 
1624
+ #: templates/connect.php:191
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s."
1627
 
1628
+ #: templates/connect.php:192
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Ne manquez jamais une mise à jour importante - optez pour nos notifications de mises à jour de sécurité et de fonctionnalités, et un suivi diagnostique non sensible avec %4$s."
1631
 
1632
+ #: templates/connect.php:198
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1635
 
1636
+ #: templates/connect.php:199
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1639
 
1640
+ #: templates/connect.php:233
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
1643
 
1644
+ #: templates/connect.php:236
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
1647
 
1648
+ #: templates/connect.php:238
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  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."
1651
 
1652
+ #: templates/connect.php:240
1653
  msgid "%s's paid features"
1654
  msgstr "Fonctionnalités payantes de %s"
1655
 
1656
+ #: templates/connect.php:245
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
1659
 
1660
+ #: templates/connect.php:247
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1663
 
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Clef de licence"
1668
 
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Vous ne trouvez pas votre clef de licence ?"
1672
 
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Passer"
1678
 
1679
+ #: templates/connect.php:321
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Déléguer aux administrateurs du site"
1682
 
1683
+ #: templates/connect.php:321
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
1686
 
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
  msgid "Your Profile Overview"
1693
  msgstr "Résumé de votre profil"
1694
 
1695
+ #: templates/connect.php:363
1696
  msgid "Name and email address"
1697
  msgstr "Nom et adresse email"
1698
 
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
  msgid "Your Site Overview"
1705
  msgstr "Résumé de votre site"
1706
 
1707
+ #: templates/connect.php:372
1708
  msgid "Site URL, WP version, PHP info"
1709
  msgstr "Site URL, WP version, PHP info"
1710
 
1712
  msgid "Admin Notices"
1713
  msgstr "Notifications Administrateur"
1714
 
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
  msgid "Updates, announcements, marketing, no spam"
1717
  msgstr "Mises à jour, annonces, marketing, pas de spam"
1718
 
 
 
 
 
1719
  #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
 
1731
+ #: templates/connect.php:397
1732
  msgid "Newsletter"
1733
  msgstr "Newsletter"
1734
 
1735
+ #: templates/connect.php:405
1736
  msgid "Plugins & Themes"
1737
  msgstr "Plugins & Themes"
1738
 
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
  msgid "Title, slug, version, and is active"
1749
  msgstr "Title, slug, version, and is active"
1750
 
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
 
1755
  #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
  msgid "What permissions are being granted?"
1765
  msgstr "Quelles autorisations sont accordées ?"
1766
 
1767
+ #: templates/connect.php:457
1768
  msgid "Don't have a license key?"
1769
  msgstr "Vous n'avez pas de clef de licence ?"
1770
 
1771
+ #: templates/connect.php:460
1772
  msgid "Have a license key?"
1773
  msgstr "Vous avez une clef de licence ?"
1774
 
1775
+ #: templates/connect.php:468
1776
  msgid "Privacy Policy"
1777
  msgstr "Politique de confidentialité"
1778
 
1779
+ #: templates/connect.php:470
1780
  msgid "License Agreement"
1781
  msgstr "Contrat de licence"
1782
 
1783
+ #: templates/connect.php:470
1784
  msgid "Terms of Service"
1785
  msgstr "Conditions générales de service"
1786
 
1787
+ #: templates/connect.php:866
1788
  msgctxt "as in the process of sending an email"
1789
  msgid "Sending email"
1790
  msgstr "Email en cours d'envoi"
1791
 
1792
+ #: templates/connect.php:867
1793
  msgctxt "as activating plugin"
1794
  msgid "Activating"
1795
  msgstr "Activation en cours"
2392
  msgid "Update License"
2393
  msgstr "Mettre à jour la licence"
2394
 
2395
+ #: templates/forms/license-activation.php:41
2396
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2397
+ msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
  msgid "Associate with the license owner's account."
2401
  msgstr "Associate with the license owner's account."
2402
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: he_IL\n"
14
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
@@ -22,835 +22,835 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php1912, templates/account.php:910
26
  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."
27
  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."
28
 
29
- #: includes/class-freemius.php:1919
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "Would you like to proceed with the update?"
32
 
33
- #: includes/class-freemius.php:2131
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
 
37
- #: includes/class-freemius.php:2133
38
  msgid "Error"
39
  msgstr "שגיאה"
40
 
41
- #: includes/class-freemius.php:2533
42
  msgid "I found a better %s"
43
  msgstr "מצאתי %s יותר טוב"
44
 
45
- #: includes/class-freemius.php:2535
46
  msgid "What's the %s's name?"
47
  msgstr "What's the %s's name?"
48
 
49
- #: includes/class-freemius.php:2541
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "It's a temporary %s. I'm just debugging an issue."
52
 
53
- #: includes/class-freemius.php:2543
54
  msgid "Deactivation"
55
  msgstr "דיאקטיבציה"
56
 
57
- #: includes/class-freemius.php:2544
58
  msgid "Theme Switch"
59
  msgstr "החלפת תֵמָה"
60
 
61
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "אחר"
65
 
66
- #: includes/class-freemius.php:2561
67
  msgid "I no longer need the %s"
68
  msgstr "I no longer need the %s"
69
 
70
- #: includes/class-freemius.php:2568
71
  msgid "I only needed the %s for a short period"
72
  msgstr "I only needed the %s for a short period"
73
 
74
- #: includes/class-freemius.php:2574
75
  msgid "The %s broke my site"
76
  msgstr "ה%s הרס לי את האתר"
77
 
78
- #: includes/class-freemius.php:2581
79
  msgid "The %s suddenly stopped working"
80
  msgstr "ה%s הפסיק פתאום לעבוד"
81
 
82
- #: includes/class-freemius.php:2591
83
  msgid "I can't pay for it anymore"
84
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
85
 
86
- #: includes/class-freemius.php:2593
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
89
 
90
- #: includes/class-freemius.php:2599
91
  msgid "I don't like to share my information with you"
92
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
93
 
94
- #: includes/class-freemius.php:2620
95
  msgid "The %s didn't work"
96
  msgstr "ה%s לא עבד"
97
 
98
- #: includes/class-freemius.php:2630
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
101
 
102
- #: includes/class-freemius.php:2638
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "The %s is great, but I need specific feature that you don't support"
105
 
106
- #: includes/class-freemius.php:2640
107
  msgid "What feature?"
108
  msgstr "איזה פיטצ'ר?"
109
 
110
- #: includes/class-freemius.php:2644
111
  msgid "The %s is not working"
112
  msgstr "ה%s לא עובד"
113
 
114
- #: includes/class-freemius.php:2646
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
117
 
118
- #: includes/class-freemius.php:2650
119
  msgid "It's not what I was looking for"
120
  msgstr "חיפשתי משהו אחר"
121
 
122
- #: includes/class-freemius.php:2652
123
  msgid "What you've been looking for?"
124
  msgstr "מה חיפשת?"
125
 
126
- #: includes/class-freemius.php:2656
127
  msgid "The %s didn't work as expected"
128
  msgstr "ה%s לא עבד כמצופה"
129
 
130
- #: includes/class-freemius.php:2658
131
  msgid "What did you expect?"
132
  msgstr "למה ציפית?"
133
 
134
- #: includes/class-freemius.php3513, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "ניפוי תקלות פרימיוס"
137
 
138
- #: includes/class-freemius.php:4265
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
141
 
142
- #: includes/class-freemius.php:4267
143
  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."
144
  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."
145
 
146
- #: includes/class-freemius.php:4274
147
  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."
148
  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."
149
 
150
- #: includes/class-freemius.php:4379
151
  msgid "Yes - do your thing"
152
  msgstr "כן - בצעו את מה שצריך"
153
 
154
- #: includes/class-freemius.php:4384
155
  msgid "No - just deactivate"
156
  msgstr "לא - פשוט כבה"
157
 
158
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
159
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
160
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
161
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
162
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
163
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
164
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
165
- #: includes/class-freemius.php22274, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "אופס"
169
 
170
- #: includes/class-freemius.php:4498
171
  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."
172
  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."
173
 
174
- #: includes/class-freemius.php:4920
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s לא יכול לעבוד ללא %s."
178
 
179
- #: includes/class-freemius.php:4921
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
183
 
184
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
185
- #: includes/class-freemius.php:21150
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
188
 
189
- #: includes/class-freemius.php:5848
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s version was successfully activated."
192
 
193
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "יש"
197
 
198
- #: includes/class-freemius.php:5875
199
  msgid "You have a %s license."
200
  msgstr "יש לך רישיון %s."
201
 
202
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
203
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
204
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
205
- #: includes/class-freemius.php:20900
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "יששש"
209
 
210
- #: includes/class-freemius.php:6165
211
  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."
212
  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."
213
 
214
- #: includes/class-freemius.php:6169
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
 
218
- #: includes/class-freemius.php6178, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "מידע נוסף אודות %s"
222
 
223
- #: includes/class-freemius.php:6179
224
  msgid "Purchase License"
225
  msgstr "קניית רישיון"
226
 
227
- #: includes/class-freemius.php7118, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
 
231
- #: includes/class-freemius.php:7122
232
  msgid "start the trial"
233
  msgstr "התחל תקופת ניסיון"
234
 
235
- #: includes/class-freemius.php7123, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "השלם התקנה"
238
 
239
- #: includes/class-freemius.php:7241
240
  msgid "You are just one step away - %s"
241
  msgstr "You are just one step away - %s"
242
 
243
- #: includes/class-freemius.php:7244
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "השלם הפעלת \"%s\" עכשיו"
247
 
248
- #: includes/class-freemius.php:7322
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "We made a few tweaks to the %s, %s"
251
 
252
- #: includes/class-freemius.php:7326
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt in to make \"%s\" better!"
255
 
256
- #: includes/class-freemius.php:7761
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "The upgrade of %s was successfully completed."
259
 
260
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
261
- #: includes/class-fs-plugin-updater.php1294,
262
- #: includes/class-fs-plugin-updater.php1301,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Add-On"
266
 
267
- #: includes/class-freemius.php10245, templates/account.php392,
268
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "תוסף"
271
 
272
- #: includes/class-freemius.php10246, templates/account.php393,
273
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "תבנית"
277
 
278
- #: includes/class-freemius.php:13176
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
- #: includes/class-freemius.php:13190
283
  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."
284
  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."
285
 
286
- #: includes/class-freemius.php:13195
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
- #: includes/class-freemius.php:13196
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
- #: includes/class-freemius.php:13255
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
 
298
- #: includes/class-freemius.php:13328
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Invalid new user ID or email address."
301
 
302
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
 
306
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
 
310
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
311
  msgid "Change Ownership"
312
  msgstr "עדכון בעלות"
313
 
314
- #: includes/class-freemius.php:13942
315
  msgid "Invalid site details collection."
316
  msgstr "Invalid site details collection."
317
 
318
- #: includes/class-freemius.php:14062
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
321
 
322
- #: includes/class-freemius.php:14064
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
 
326
- #: includes/class-freemius.php:14338
327
  msgid "Account is pending activation."
328
  msgstr "Account is pending activation."
329
 
330
- #: includes/class-freemius.php14450,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Buy a license now"
334
 
335
- #: includes/class-freemius.php14462,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Renew your license now"
339
 
340
- #: includes/class-freemius.php:14466
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%s to access version %s security & feature updates, and support."
343
 
344
- #: includes/class-freemius.php:16907
345
  msgid "%s activation was successfully completed."
346
  msgstr "הפעלת %s הושלמה בהצלחה."
347
 
348
- #: includes/class-freemius.php:16921
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
351
 
352
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
353
  msgid "Your trial has been successfully started."
354
  msgstr "הניסיון שלך הופעל בהצלחה."
355
 
356
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
357
- #: includes/class-freemius.php:17804
358
  msgid "Couldn't activate %s."
359
  msgstr "לא ניתן להפעיל את %s."
360
 
361
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
362
- #: includes/class-freemius.php:17805
363
  msgid "Please contact us with the following message:"
364
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
365
 
366
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "An unknown error has occurred."
369
 
370
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
371
  msgid "Upgrade"
372
  msgstr "שדרג"
373
 
374
- #: includes/class-freemius.php:18168
375
  msgid "Start Trial"
376
  msgstr "התחל תקופת ניסיון"
377
 
378
- #: includes/class-freemius.php:18170
379
  msgid "Pricing"
380
  msgstr "מחירון"
381
 
382
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
383
  msgid "Affiliation"
384
  msgstr "אפיליאציה"
385
 
386
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
387
- #: templates/account.php240, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "חשבון"
390
 
391
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "יצירת קשר"
395
 
396
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
397
- #: includes/class-freemius.php23324, templates/account.php119,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Add-Ons"
401
 
402
- #: includes/class-freemius.php:18345
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
- #: includes/class-freemius.php:18345
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
- #: includes/class-freemius.php18347, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "מחירון"
416
 
417
- #: includes/class-freemius.php18560,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "פורום תמיכה"
421
 
422
- #: includes/class-freemius.php:19534
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Your email has been successfully verified - you are AWESOME!"
425
 
426
- #: includes/class-freemius.php:19535
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "מעולה"
430
 
431
- #: includes/class-freemius.php:20041
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "seems like the key you entered doesn't match our records."
434
 
435
- #: includes/class-freemius.php:20065
436
  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."
437
  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."
438
 
439
- #: includes/class-freemius.php:20300
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
442
 
443
- #: includes/class-freemius.php:20302
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "ההרחבה %s נרכשה בהצלחה."
446
 
447
- #: includes/class-freemius.php:20305
448
  msgid "Download the latest version"
449
  msgstr "הורד את הגרסה האחרונה"
450
 
451
- #: includes/class-freemius.php:20391
452
  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"
453
  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"
454
 
455
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
456
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
457
  msgid "Error received from the server:"
458
  msgstr "הוחזרה שגיאה מהשרת:"
459
 
460
- #: includes/class-freemius.php:20407
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
 
464
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
465
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "אממ"
469
 
470
- #: includes/class-freemius.php:20634
471
  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."
472
  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."
473
 
474
- #: includes/class-freemius.php20635, templates/account.php121,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "ניסיון"
479
 
480
- #: includes/class-freemius.php:20640
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
483
 
484
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
485
  msgid "Please contact us here"
486
  msgstr "אנא צור איתנו קשר כאן"
487
 
488
- #: includes/class-freemius.php:20655
489
  msgid "Your plan was successfully activated."
490
  msgstr "Your plan was successfully activated."
491
 
492
- #: includes/class-freemius.php:20656
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "החבילה שודרגה בהצלחה."
495
 
496
- #: includes/class-freemius.php:20673
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "החבילה עודכנה בהצלחה אל %s."
499
 
500
- #: includes/class-freemius.php:20689
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Your license has expired. You can still continue using the free %s forever."
503
 
504
- #: includes/class-freemius.php:20691
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
 
508
- #: includes/class-freemius.php:20699
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
511
 
512
- #: includes/class-freemius.php:20712
513
  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."
514
  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."
515
 
516
- #: includes/class-freemius.php:20738
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
519
 
520
- #: includes/class-freemius.php:20740
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
 
524
- #: includes/class-freemius.php:20855
525
  msgid "It looks like the license could not be activated."
526
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
527
 
528
- #: includes/class-freemius.php:20897
529
  msgid "Your license was successfully activated."
530
  msgstr "הרישיון הופעל בהצלחה."
531
 
532
- #: includes/class-freemius.php:20923
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
535
 
536
- #: includes/class-freemius.php:20947
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "נראה שניתוק הרישיון נכשל."
539
 
540
- #: includes/class-freemius.php:20976
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Your %s license was successfully deactivated."
543
 
544
- #: includes/class-freemius.php:20977
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
547
 
548
- #: includes/class-freemius.php:20980
549
  msgid "O.K"
550
  msgstr "אוקיי"
551
 
552
- #: includes/class-freemius.php:21033
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
 
556
- #: includes/class-freemius.php:21042
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
 
560
- #: includes/class-freemius.php:21084
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "You are already running the %s in a trial mode."
563
 
564
- #: includes/class-freemius.php:21095
565
  msgid "You already utilized a trial before."
566
  msgstr "הניסיון כבר נוצל בעבר."
567
 
568
- #: includes/class-freemius.php:21109
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
571
 
572
- #: includes/class-freemius.php:21120
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
575
 
576
- #: includes/class-freemius.php:21131
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "None of the %s's plans supports a trial period."
579
 
580
- #: includes/class-freemius.php:21181
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
 
584
- #: includes/class-freemius.php:21217
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
587
 
588
- #: includes/class-freemius.php:21236
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
591
 
592
- #: includes/class-freemius.php:21552
593
  msgid "Version %s was released."
594
  msgstr "גרסה %s הושקה."
595
 
596
- #: includes/class-freemius.php:21552
597
  msgid "Please download %s."
598
  msgstr "נא להוריד את %s."
599
 
600
- #: includes/class-freemius.php:21559
601
  msgid "the latest %s version here"
602
  msgstr "גרסת ה-%s האחרונה כאן"
603
 
604
- #: includes/class-freemius.php:21564
605
  msgid "New"
606
  msgstr "חדש"
607
 
608
- #: includes/class-freemius.php:21569
609
  msgid "Seems like you got the latest release."
610
  msgstr "נראה שיש לך את הגרסה האחרונה."
611
 
612
- #: includes/class-freemius.php:21570
613
  msgid "You are all good!"
614
  msgstr "את\\ה מסודר!"
615
 
616
- #: includes/class-freemius.php:21873
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
 
620
- #: includes/class-freemius.php:22013
621
  msgid "Site successfully opted in."
622
  msgstr "Site successfully opted in."
623
 
624
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
625
  msgid "Awesome"
626
  msgstr "אדיר"
627
 
628
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
631
 
632
- #: includes/class-freemius.php:22031
633
  msgid "Thank you!"
634
  msgstr "תודה רבה!"
635
 
636
- #: includes/class-freemius.php:22038
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
639
 
640
- #: includes/class-freemius.php:22196
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
 
644
- #: includes/class-freemius.php:22202
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
647
 
648
- #: includes/class-freemius.php:22207
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s הינו הבעלים החד של חשבון זה."
651
 
652
- #: includes/class-freemius.php:22209
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "מזל טוב"
656
 
657
- #: includes/class-freemius.php:22245
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
660
 
661
- #: includes/class-freemius.php:22257
662
  msgid "Please provide your full name."
663
  msgstr "נא למלא את שמך המלא."
664
 
665
- #: includes/class-freemius.php:22262
666
  msgid "Your name was successfully updated."
667
  msgstr "שמך עודכן בהצלחה."
668
 
669
- #: includes/class-freemius.php:22323
670
  msgid "You have successfully updated your %s."
671
  msgstr "עידכנת בהצלחה את ה%s."
672
 
673
- #: includes/class-freemius.php:22382
674
  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."
675
  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."
676
 
677
- #: includes/class-freemius.php:22385
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
- #: includes/class-freemius.php:22483
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
 
685
- #: includes/class-freemius.php:22484
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "לתשמות לבך"
689
 
690
- #: includes/class-freemius.php:23060
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "היי"
694
 
695
- #: includes/class-freemius.php:23060
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
 
699
- #: includes/class-freemius.php:23068
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
702
 
703
- #: includes/class-freemius.php:23069
704
  msgid "No credit card required"
705
  msgstr "לא נדרש כרטיס אשראי"
706
 
707
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "התחלת ניסיון חינם"
711
 
712
- #: includes/class-freemius.php:23153
713
  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!"
714
  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!"
715
 
716
- #: includes/class-freemius.php:23162
717
  msgid "Learn more"
718
  msgstr "Learn more"
719
 
720
- #: includes/class-freemius.php23348, templates/account.php556,
721
- #: templates/account.php706, templates/connect.php179,
722
- #: templates/connect.php456, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "הפעלת רישיון"
726
 
727
- #: includes/class-freemius.php23349, templates/account.php650,
728
- #: templates/account.php705, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "שינוי רישיון"
732
 
733
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Opt Out"
736
 
737
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Opt In"
742
 
743
- #: includes/class-freemius.php:23700
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
 
747
- #: includes/class-freemius.php:23708
748
  msgid "Activate %s features"
749
  msgstr "Activate %s features"
750
 
751
- #: includes/class-freemius.php:23721
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
754
 
755
- #: includes/class-freemius.php:23725
756
  msgid "Download the latest %s version"
757
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
758
 
759
- #: includes/class-freemius.php:23729
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
762
 
763
- #: includes/class-freemius.php:23731
764
  msgid "How to upload and activate?"
765
  msgstr "איך להעלות ולהפעיל?"
766
 
767
- #: includes/class-freemius.php:23865
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
770
 
771
- #: includes/class-freemius.php:24034
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "Auto installation only works for opted-in users."
774
 
775
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
776
- #: includes/class-fs-plugin-updater.php1273,
777
- #: includes/class-fs-plugin-updater.php:1287
778
  msgid "Invalid module ID."
779
  msgstr "מזהה המודול לא תקני."
780
 
781
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
782
  msgid "Premium version already active."
783
  msgstr "הגרסה בתשלום כבר פעילה."
784
 
785
- #: includes/class-freemius.php:24060
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
788
 
789
- #: includes/class-freemius.php:24067
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
 
793
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
794
  msgid "Premium add-on version already installed."
795
  msgstr "Premium add-on version already installed."
796
 
797
- #: includes/class-freemius.php:24435
798
  msgid "View paid features"
799
  msgstr "צפה בפיטצ'רים שבתשלום"
800
 
801
- #: includes/class-freemius.php:24757
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "Thank you so much for using %s and its add-ons!"
804
 
805
- #: includes/class-freemius.php:24758
806
  msgid "Thank you so much for using %s!"
807
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
808
 
809
- #: includes/class-freemius.php:24764
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
 
813
- #: includes/class-freemius.php:24768
814
  msgid "Thank you so much for using our products!"
815
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
816
 
817
- #: includes/class-freemius.php:24769
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
 
821
- #: includes/class-freemius.php:24788
822
  msgid "%s and its add-ons"
823
  msgstr "%s and its add-ons"
824
 
825
- #: includes/class-freemius.php:24797
826
  msgid "Products"
827
  msgstr "מוצרים"
828
 
829
- #: includes/class-freemius.php24804, templates/connect.php:280
830
  msgid "Yes"
831
  msgstr "כן"
832
 
833
- #: includes/class-freemius.php24805, templates/connect.php:281
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
836
 
837
- #: includes/class-freemius.php24806, templates/connect.php:286
838
  msgid "No"
839
  msgstr "לא"
840
 
841
- #: includes/class-freemius.php24808, templates/connect.php:288
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
844
 
845
- #: includes/class-freemius.php:24818
846
  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 :-)"
847
  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 :-)"
848
 
849
- #: includes/class-freemius.php24820, templates/connect.php:295
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
 
853
- #: includes/class-freemius.php:25102
854
  msgid "License key is empty."
855
  msgstr "מפתח הרישיון ריק."
856
 
@@ -883,15 +883,15 @@ msgstr "new version"
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Important Upgrade Notice:"
885
 
886
- #: includes/class-fs-plugin-updater.php:1338
887
  msgid "Installing plugin: %s"
888
  msgstr "Installing plugin: %s"
889
 
890
- #: includes/class-fs-plugin-updater.php:1379
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
893
 
894
- #: includes/class-fs-plugin-updater.php:1561
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
 
@@ -913,7 +913,7 @@ msgstr "התחל את %s הניסיון שלי"
913
  msgid "Install Free Version Update Now"
914
  msgstr "התקן עדכון גרסה חינאמית עכשיו"
915
 
916
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
917
  msgid "Install Update Now"
918
  msgstr "התקן עדכון במיידי"
919
 
@@ -933,7 +933,7 @@ msgctxt "as download latest version"
933
  msgid "Download Latest Free Version"
934
  msgstr "Download Latest Free Version"
935
 
936
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
@@ -945,11 +945,11 @@ msgstr "הורד גרסה אחרונה"
945
  msgid "Activate this add-on"
946
  msgstr "הפעל את ההרחבה"
947
 
948
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
949
  msgid "Activate Free Version"
950
  msgstr "הפעלת גירסה חינאמית"
951
 
952
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "הפעלה"
@@ -1085,7 +1085,7 @@ msgstr "After your free %s, pay as little as %s"
1085
  msgid "Details"
1086
  msgstr "פרטים"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
@@ -1101,7 +1101,7 @@ msgstr "Author"
1101
  msgid "Last Updated"
1102
  msgstr "עודכן לאחרונה"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "לפני %s"
@@ -1212,13 +1212,13 @@ msgstr "הגרסה האחרונה הותקנה"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "גרסה חינאמית עדכנית הותקנה"
1214
 
1215
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Downgrading your plan"
1220
 
1221
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
@@ -1226,317 +1226,317 @@ msgstr "Cancelling the subscription"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
 
1234
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1244
 
1245
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
 
1251
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
- #: templates/account.php109,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "הפעל חבילה %s"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
- #: templates/account.php112, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "עדכן אוטומטית בעוד %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
- #: templates/account.php114, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "פג תוקף בעוד %s"
1275
 
1276
- #: templates/account.php:115
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "סינכרן רישיון"
1280
 
1281
- #: templates/account.php116, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "ביט"
1284
 
1285
- #: templates/account.php117, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "שינוי חבילה"
1288
 
1289
- #: templates/account.php118, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "שדרג"
1293
 
1294
- #: templates/account.php120, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "שנמך"
1299
 
1300
- #: templates/account.php122, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "חינם"
1306
 
1307
- #: templates/account.php124, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "חבילה"
1313
 
1314
- #: templates/account.php:125
1315
  msgid "Bundle Plan"
1316
  msgstr "Bundle Plan"
1317
 
1318
- #: templates/account.php:248
1319
  msgid "Free Trial"
1320
  msgstr "ניסיון חינם"
1321
 
1322
- #: templates/account.php:259
1323
  msgid "Account Details"
1324
  msgstr "פרטי חשבון"
1325
 
1326
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Start Debug"
1329
 
1330
- #: templates/account.php:268
1331
  msgid "Stop Debug"
1332
  msgstr "Stop Debug"
1333
 
1334
- #: templates/account.php:275
1335
  msgid "Billing & Invoices"
1336
  msgstr "Billing & Invoices"
1337
 
1338
- #: templates/account.php:286
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
 
1342
- #: templates/account.php:288
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
 
1346
- #: templates/account.php:291
1347
  msgid "Delete Account"
1348
  msgstr "מחיקת חשבון"
1349
 
1350
- #: templates/account.php303, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "שיחרור רישיון"
1354
 
1355
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "האם את/ה בטוח רוצה להמשיך?"
1358
 
1359
- #: templates/account.php326, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "בטל מנוי"
1362
 
1363
- #: templates/account.php355, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "סינכרון"
1367
 
1368
- #: templates/account.php370, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "שם"
1371
 
1372
- #: templates/account.php376, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "דוא\"ל"
1375
 
1376
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "מזהה משתמש"
1379
 
1380
- #: templates/account.php401, templates/account.php719,
1381
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "מזהה"
1387
 
1388
- #: templates/account.php:408
1389
  msgid "Site ID"
1390
  msgstr "מזהה אתר"
1391
 
1392
- #: templates/account.php:411
1393
  msgid "No ID"
1394
  msgstr "אין מזהה"
1395
 
1396
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "מפתח פומבי"
1401
 
1402
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "מפתח סודי"
1406
 
1407
- #: templates/account.php:425
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "אין מפתח סודי"
1411
 
1412
- #: templates/account.php452, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "ניסיון"
1416
 
1417
- #: templates/account.php479, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "License Key"
1421
 
1422
- #: templates/account.php:510
1423
  msgid "Join the Beta program"
1424
  msgstr "Join the Beta program"
1425
 
1426
- #: templates/account.php:516
1427
  msgid "not verified"
1428
  msgstr "לא מאומת"
1429
 
1430
- #: templates/account.php525, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "פג תוקף"
1433
 
1434
- #: templates/account.php:585
1435
  msgid "Premium version"
1436
  msgstr "גירסת פרימיום"
1437
 
1438
- #: templates/account.php:587
1439
  msgid "Free version"
1440
  msgstr "גירסה חינאמית"
1441
 
1442
- #: templates/account.php:599
1443
  msgid "Verify Email"
1444
  msgstr "אמת כתובת דוא\"ל"
1445
 
1446
- #: templates/account.php:613
1447
  msgid "Download %s Version"
1448
  msgstr "הורד גרסת %s"
1449
 
1450
- #: templates/account.php:629
1451
  msgid "Download Paid Version"
1452
  msgstr "Download Paid Version"
1453
 
1454
- #: templates/account.php647, templates/account.php890,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "הצג"
1460
 
1461
- #: templates/account.php:662
1462
  msgid "What is your %s?"
1463
  msgstr "מה ה%s שלך?"
1464
 
1465
- #: templates/account.php670, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "ערוך"
1469
 
1470
- #: templates/account.php674, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Change User"
1473
 
1474
- #: templates/account.php:698
1475
  msgid "Sites"
1476
  msgstr "אתרים"
1477
 
1478
- #: templates/account.php:711
1479
  msgid "Search by address"
1480
  msgstr "חפש לפי כתובת"
1481
 
1482
- #: templates/account.php720, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "כתובת"
1485
 
1486
- #: templates/account.php:721
1487
  msgid "License"
1488
  msgstr "רישיון"
1489
 
1490
- #: templates/account.php:722
1491
  msgid "Plan"
1492
  msgstr "חבילה"
1493
 
1494
- #: templates/account.php:755
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "רישיון"
1498
 
1499
- #: templates/account.php:884
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "הסתר"
1503
 
1504
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Processing"
1507
 
1508
- #: templates/account.php:909
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Get updates for bleeding edge Beta versions of %s."
1511
 
1512
- #: templates/account.php:967
1513
  msgid "Cancelling %s"
1514
  msgstr "Cancelling %s"
1515
 
1516
- #: templates/account.php967, templates/account.php984,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "trial"
1521
 
1522
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "Cancelling %s..."
1525
 
1526
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "subscription"
1530
 
1531
- #: templates/account.php:999
1532
  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?"
1533
  msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1534
 
1535
- #: templates/account.php:1073
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
- #: templates/account.php:1074
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
@@ -1562,7 +1562,7 @@ msgctxt "installed add-on"
1562
  msgid "Installed"
1563
  msgstr "Installed"
1564
 
1565
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
@@ -1618,86 +1618,94 @@ msgstr "תודה %s!"
1618
  msgid "Agree & Activate License"
1619
  msgstr "הסכמה והפעלת רישיון"
1620
 
1621
- #: templates/connect.php:189
1622
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1623
- msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1624
 
1625
- #: templates/connect.php:196
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
 
1629
- #: templates/connect.php:197
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
 
1633
- #: templates/connect.php:203
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
 
1637
- #: templates/connect.php:204
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
 
1641
- #: templates/connect.php:238
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "We're excited to introduce the Freemius network-level integration."
1644
 
1645
- #: templates/connect.php:241
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1648
 
1649
- #: templates/connect.php:243
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
 
1653
- #: templates/connect.php:245
1654
  msgid "%s's paid features"
1655
  msgstr "%s's paid features"
1656
 
1657
- #: templates/connect.php:250
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
 
1661
- #: templates/connect.php:252
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
 
1665
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "מפתח רישיון"
1669
 
1670
- #: templates/connect.php264, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "האם אינך מוצא את מפתח הרישיון?"
1673
 
1674
- #: templates/connect.php323, templates/connect.php695,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "דלג"
1679
 
1680
- #: templates/connect.php:326
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "האצלה למנהלי האתרים"
1683
 
1684
- #: templates/connect.php:326
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1687
 
1688
- #: templates/connect.php:364
 
 
 
 
1689
  msgid "Your Profile Overview"
1690
  msgstr "פרטים כלליים על הפרופיל"
1691
 
1692
- #: templates/connect.php:365
1693
  msgid "Name and email address"
1694
  msgstr "שם וכתובת דו\"אל"
1695
 
1696
- #: templates/connect.php:372
 
 
 
 
1697
  msgid "Your Site Overview"
1698
  msgstr "פרטים כלליים על האתר"
1699
 
1700
- #: templates/connect.php:373
1701
  msgid "Site URL, WP version, PHP info"
1702
  msgstr "Site URL, WP version, PHP info"
1703
 
@@ -1705,64 +1713,84 @@ msgstr "Site URL, WP version, PHP info"
1705
  msgid "Admin Notices"
1706
  msgstr "התראות מנהל"
1707
 
1708
- #: templates/connect.php380, templates/connect.php:396
1709
  msgid "Updates, announcements, marketing, no spam"
1710
  msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
1711
 
1712
- #: templates/connect.php:386
1713
- msgid "Current %s Events"
1714
- msgstr "Current %s Events"
1715
-
1716
  #: templates/connect.php:387
1717
- msgid "Activation, deactivation and uninstall"
1718
- msgstr "הפעלה, כיבוי והסרה"
 
 
 
 
 
 
 
 
1719
 
1720
- #: templates/connect.php:395
1721
  msgid "Newsletter"
1722
  msgstr "ניוסלטר"
1723
 
1724
- #: templates/connect.php:403
1725
  msgid "Plugins & Themes"
1726
  msgstr "Plugins & Themes"
1727
 
1728
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1729
  msgid "Title, slug, version, and is active"
1730
  msgstr "Title, slug, version, and is active"
1731
 
1732
- #: templates/connect.php421, templates/forms/license-activation.php:41
1733
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1734
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1735
 
1736
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1737
  msgid "What permissions are being granted?"
1738
  msgstr "מהן ההרשאות המוענקות?"
1739
 
1740
- #: templates/connect.php:452
1741
  msgid "Don't have a license key?"
1742
  msgstr "האם אין ברשותך מפתח רישיון?"
1743
 
1744
- #: templates/connect.php:455
1745
  msgid "Have a license key?"
1746
  msgstr "האם ברשותך רישיון?"
1747
 
1748
- #: templates/connect.php:463
1749
  msgid "Privacy Policy"
1750
  msgstr "מדיניות פרטיות"
1751
 
1752
- #: templates/connect.php:465
1753
  msgid "License Agreement"
1754
  msgstr "License Agreement"
1755
 
1756
- #: templates/connect.php:465
1757
  msgid "Terms of Service"
1758
  msgstr "תנאי השירות"
1759
 
1760
- #: templates/connect.php:854
1761
  msgctxt "as in the process of sending an email"
1762
  msgid "Sending email"
1763
  msgstr "שולח דוא\"ל"
1764
 
1765
- #: templates/connect.php:855
1766
  msgctxt "as activating plugin"
1767
  msgid "Activating"
1768
  msgstr "מפעיל"
@@ -2365,7 +2393,11 @@ msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל ש
2365
  msgid "Update License"
2366
  msgstr "עדכון רישיון"
2367
 
2368
- #: templates/forms/license-activation.php:181
 
 
 
 
2369
  msgid "Associate with the license owner's account."
2370
  msgstr "Associate with the license owner's account."
2371
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: he_IL\n"
14
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
  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."
27
  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."
28
 
29
+ #: includes/class-freemius.php:1926
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "Would you like to proceed with the update?"
32
 
33
+ #: includes/class-freemius.php:2138
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
 
37
+ #: includes/class-freemius.php:2140
38
  msgid "Error"
39
  msgstr "שגיאה"
40
 
41
+ #: includes/class-freemius.php:2540
42
  msgid "I found a better %s"
43
  msgstr "מצאתי %s יותר טוב"
44
 
45
+ #: includes/class-freemius.php:2542
46
  msgid "What's the %s's name?"
47
  msgstr "What's the %s's name?"
48
 
49
+ #: includes/class-freemius.php:2548
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "It's a temporary %s. I'm just debugging an issue."
52
 
53
+ #: includes/class-freemius.php:2550
54
  msgid "Deactivation"
55
  msgstr "דיאקטיבציה"
56
 
57
+ #: includes/class-freemius.php:2551
58
  msgid "Theme Switch"
59
  msgstr "החלפת תֵמָה"
60
 
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "אחר"
65
 
66
+ #: includes/class-freemius.php:2568
67
  msgid "I no longer need the %s"
68
  msgstr "I no longer need the %s"
69
 
70
+ #: includes/class-freemius.php:2575
71
  msgid "I only needed the %s for a short period"
72
  msgstr "I only needed the %s for a short period"
73
 
74
+ #: includes/class-freemius.php:2581
75
  msgid "The %s broke my site"
76
  msgstr "ה%s הרס לי את האתר"
77
 
78
+ #: includes/class-freemius.php:2588
79
  msgid "The %s suddenly stopped working"
80
  msgstr "ה%s הפסיק פתאום לעבוד"
81
 
82
+ #: includes/class-freemius.php:2598
83
  msgid "I can't pay for it anymore"
84
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
85
 
86
+ #: includes/class-freemius.php:2600
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
89
 
90
+ #: includes/class-freemius.php:2606
91
  msgid "I don't like to share my information with you"
92
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
93
 
94
+ #: includes/class-freemius.php:2627
95
  msgid "The %s didn't work"
96
  msgstr "ה%s לא עבד"
97
 
98
+ #: includes/class-freemius.php:2637
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
101
 
102
+ #: includes/class-freemius.php:2645
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "The %s is great, but I need specific feature that you don't support"
105
 
106
+ #: includes/class-freemius.php:2647
107
  msgid "What feature?"
108
  msgstr "איזה פיטצ'ר?"
109
 
110
+ #: includes/class-freemius.php:2651
111
  msgid "The %s is not working"
112
  msgstr "ה%s לא עובד"
113
 
114
+ #: includes/class-freemius.php:2653
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
117
 
118
+ #: includes/class-freemius.php:2657
119
  msgid "It's not what I was looking for"
120
  msgstr "חיפשתי משהו אחר"
121
 
122
+ #: includes/class-freemius.php:2659
123
  msgid "What you've been looking for?"
124
  msgstr "מה חיפשת?"
125
 
126
+ #: includes/class-freemius.php:2663
127
  msgid "The %s didn't work as expected"
128
  msgstr "ה%s לא עבד כמצופה"
129
 
130
+ #: includes/class-freemius.php:2665
131
  msgid "What did you expect?"
132
  msgstr "למה ציפית?"
133
 
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "ניפוי תקלות פרימיוס"
137
 
138
+ #: includes/class-freemius.php:4272
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
141
 
142
+ #: includes/class-freemius.php:4274
143
  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."
144
  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."
145
 
146
+ #: includes/class-freemius.php:4281
147
  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."
148
  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."
149
 
150
+ #: includes/class-freemius.php:4386
151
  msgid "Yes - do your thing"
152
  msgstr "כן - בצעו את מה שצריך"
153
 
154
+ #: includes/class-freemius.php:4391
155
  msgid "No - just deactivate"
156
  msgstr "לא - פשוט כבה"
157
 
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "אופס"
169
 
170
+ #: includes/class-freemius.php:4505
171
  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."
172
  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."
173
 
174
+ #: includes/class-freemius.php:4927
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s לא יכול לעבוד ללא %s."
178
 
179
+ #: includes/class-freemius.php:4928
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
183
 
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
188
 
189
+ #: includes/class-freemius.php:5857
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s version was successfully activated."
192
 
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "יש"
197
 
198
+ #: includes/class-freemius.php:5884
199
  msgid "You have a %s license."
200
  msgstr "יש לך רישיון %s."
201
 
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "יששש"
209
 
210
+ #: includes/class-freemius.php:6174
211
  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."
212
  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."
213
 
214
+ #: includes/class-freemius.php:6178
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
 
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "מידע נוסף אודות %s"
222
 
223
+ #: includes/class-freemius.php:6188
224
  msgid "Purchase License"
225
  msgstr "קניית רישיון"
226
 
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
 
231
+ #: includes/class-freemius.php:7129
232
  msgid "start the trial"
233
  msgstr "התחל תקופת ניסיון"
234
 
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "השלם התקנה"
238
 
239
+ #: includes/class-freemius.php:7249
240
  msgid "You are just one step away - %s"
241
  msgstr "You are just one step away - %s"
242
 
243
+ #: includes/class-freemius.php:7252
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "השלם הפעלת \"%s\" עכשיו"
247
 
248
+ #: includes/class-freemius.php:7334
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "We made a few tweaks to the %s, %s"
251
 
252
+ #: includes/class-freemius.php:7338
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt in to make \"%s\" better!"
255
 
256
+ #: includes/class-freemius.php:7773
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "The upgrade of %s was successfully completed."
259
 
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Add-On"
266
 
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "תוסף"
271
 
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "תבנית"
277
 
278
+ #: includes/class-freemius.php:13188
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
+ #: includes/class-freemius.php:13202
283
  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."
284
  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."
285
 
286
+ #: includes/class-freemius.php:13207
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
+ #: includes/class-freemius.php:13208
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
+ #: includes/class-freemius.php:13266
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
 
298
+ #: includes/class-freemius.php:13339
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Invalid new user ID or email address."
301
 
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
 
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
 
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
  msgid "Change Ownership"
312
  msgstr "עדכון בעלות"
313
 
314
+ #: includes/class-freemius.php:13977
315
  msgid "Invalid site details collection."
316
  msgstr "Invalid site details collection."
317
 
318
+ #: includes/class-freemius.php:14097
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
321
 
322
+ #: includes/class-freemius.php:14099
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
 
326
+ #: includes/class-freemius.php:14373
327
  msgid "Account is pending activation."
328
  msgstr "Account is pending activation."
329
 
330
+ #: includes/class-freemius.php14485,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Buy a license now"
334
 
335
+ #: includes/class-freemius.php14497,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Renew your license now"
339
 
340
+ #: includes/class-freemius.php:14501
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%s to access version %s security & feature updates, and support."
343
 
344
+ #: includes/class-freemius.php:16929
345
  msgid "%s activation was successfully completed."
346
  msgstr "הפעלת %s הושלמה בהצלחה."
347
 
348
+ #: includes/class-freemius.php:16943
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
351
 
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
  msgid "Your trial has been successfully started."
354
  msgstr "הניסיון שלך הופעל בהצלחה."
355
 
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
  msgid "Couldn't activate %s."
359
  msgstr "לא ניתן להפעיל את %s."
360
 
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
  msgid "Please contact us with the following message:"
364
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
365
 
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "An unknown error has occurred."
369
 
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
  msgid "Upgrade"
372
  msgstr "שדרג"
373
 
374
+ #: includes/class-freemius.php:18184
375
  msgid "Start Trial"
376
  msgstr "התחל תקופת ניסיון"
377
 
378
+ #: includes/class-freemius.php:18186
379
  msgid "Pricing"
380
  msgstr "מחירון"
381
 
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
  msgid "Affiliation"
384
  msgstr "אפיליאציה"
385
 
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "חשבון"
390
 
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "יצירת קשר"
395
 
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Add-Ons"
401
 
402
+ #: includes/class-freemius.php:18361
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
+ #: includes/class-freemius.php:18361
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "מחירון"
416
 
417
+ #: includes/class-freemius.php18576,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "פורום תמיכה"
421
 
422
+ #: includes/class-freemius.php:19550
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Your email has been successfully verified - you are AWESOME!"
425
 
426
+ #: includes/class-freemius.php:19551
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "מעולה"
430
 
431
+ #: includes/class-freemius.php:20057
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "seems like the key you entered doesn't match our records."
434
 
435
+ #: includes/class-freemius.php:20081
436
  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."
437
  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."
438
 
439
+ #: includes/class-freemius.php:20316
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
442
 
443
+ #: includes/class-freemius.php:20318
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "ההרחבה %s נרכשה בהצלחה."
446
 
447
+ #: includes/class-freemius.php:20321
448
  msgid "Download the latest version"
449
  msgstr "הורד את הגרסה האחרונה"
450
 
451
+ #: includes/class-freemius.php:20407
452
  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"
453
  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"
454
 
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
  msgid "Error received from the server:"
458
  msgstr "הוחזרה שגיאה מהשרת:"
459
 
460
+ #: includes/class-freemius.php:20423
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
 
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "אממ"
469
 
470
+ #: includes/class-freemius.php:20664
471
  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."
472
  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."
473
 
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "ניסיון"
479
 
480
+ #: includes/class-freemius.php:20670
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
483
 
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
  msgid "Please contact us here"
486
  msgstr "אנא צור איתנו קשר כאן"
487
 
488
+ #: includes/class-freemius.php:20685
489
  msgid "Your plan was successfully activated."
490
  msgstr "Your plan was successfully activated."
491
 
492
+ #: includes/class-freemius.php:20686
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "החבילה שודרגה בהצלחה."
495
 
496
+ #: includes/class-freemius.php:20703
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "החבילה עודכנה בהצלחה אל %s."
499
 
500
+ #: includes/class-freemius.php:20719
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Your license has expired. You can still continue using the free %s forever."
503
 
504
+ #: includes/class-freemius.php:20721
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
 
508
+ #: includes/class-freemius.php:20729
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
511
 
512
+ #: includes/class-freemius.php:20742
513
  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."
514
  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."
515
 
516
+ #: includes/class-freemius.php:20768
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
519
 
520
+ #: includes/class-freemius.php:20770
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
 
524
+ #: includes/class-freemius.php:20885
525
  msgid "It looks like the license could not be activated."
526
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
527
 
528
+ #: includes/class-freemius.php:20927
529
  msgid "Your license was successfully activated."
530
  msgstr "הרישיון הופעל בהצלחה."
531
 
532
+ #: includes/class-freemius.php:20953
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
535
 
536
+ #: includes/class-freemius.php:20977
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "נראה שניתוק הרישיון נכשל."
539
 
540
+ #: includes/class-freemius.php:21006
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Your %s license was successfully deactivated."
543
 
544
+ #: includes/class-freemius.php:21007
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
547
 
548
+ #: includes/class-freemius.php:21010
549
  msgid "O.K"
550
  msgstr "אוקיי"
551
 
552
+ #: includes/class-freemius.php:21063
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
 
556
+ #: includes/class-freemius.php:21072
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
 
560
+ #: includes/class-freemius.php:21114
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "You are already running the %s in a trial mode."
563
 
564
+ #: includes/class-freemius.php:21125
565
  msgid "You already utilized a trial before."
566
  msgstr "הניסיון כבר נוצל בעבר."
567
 
568
+ #: includes/class-freemius.php:21139
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
571
 
572
+ #: includes/class-freemius.php:21150
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
575
 
576
+ #: includes/class-freemius.php:21161
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "None of the %s's plans supports a trial period."
579
 
580
+ #: includes/class-freemius.php:21211
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
 
584
+ #: includes/class-freemius.php:21247
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
587
 
588
+ #: includes/class-freemius.php:21266
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
591
 
592
+ #: includes/class-freemius.php:21582
593
  msgid "Version %s was released."
594
  msgstr "גרסה %s הושקה."
595
 
596
+ #: includes/class-freemius.php:21582
597
  msgid "Please download %s."
598
  msgstr "נא להוריד את %s."
599
 
600
+ #: includes/class-freemius.php:21589
601
  msgid "the latest %s version here"
602
  msgstr "גרסת ה-%s האחרונה כאן"
603
 
604
+ #: includes/class-freemius.php:21594
605
  msgid "New"
606
  msgstr "חדש"
607
 
608
+ #: includes/class-freemius.php:21599
609
  msgid "Seems like you got the latest release."
610
  msgstr "נראה שיש לך את הגרסה האחרונה."
611
 
612
+ #: includes/class-freemius.php:21600
613
  msgid "You are all good!"
614
  msgstr "את\\ה מסודר!"
615
 
616
+ #: includes/class-freemius.php:21903
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
 
620
+ #: includes/class-freemius.php:22043
621
  msgid "Site successfully opted in."
622
  msgstr "Site successfully opted in."
623
 
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
  msgid "Awesome"
626
  msgstr "אדיר"
627
 
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
631
 
632
+ #: includes/class-freemius.php:22061
633
  msgid "Thank you!"
634
  msgstr "תודה רבה!"
635
 
636
+ #: includes/class-freemius.php:22068
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
639
 
640
+ #: includes/class-freemius.php:22226
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
 
644
+ #: includes/class-freemius.php:22232
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
647
 
648
+ #: includes/class-freemius.php:22237
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s הינו הבעלים החד של חשבון זה."
651
 
652
+ #: includes/class-freemius.php:22239
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "מזל טוב"
656
 
657
+ #: includes/class-freemius.php:22275
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
660
 
661
+ #: includes/class-freemius.php:22287
662
  msgid "Please provide your full name."
663
  msgstr "נא למלא את שמך המלא."
664
 
665
+ #: includes/class-freemius.php:22292
666
  msgid "Your name was successfully updated."
667
  msgstr "שמך עודכן בהצלחה."
668
 
669
+ #: includes/class-freemius.php:22353
670
  msgid "You have successfully updated your %s."
671
  msgstr "עידכנת בהצלחה את ה%s."
672
 
673
+ #: includes/class-freemius.php:22412
674
  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."
675
  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."
676
 
677
+ #: includes/class-freemius.php:22415
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
+ #: includes/class-freemius.php:22513
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
 
685
+ #: includes/class-freemius.php:22514
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "לתשמות לבך"
689
 
690
+ #: includes/class-freemius.php:23090
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "היי"
694
 
695
+ #: includes/class-freemius.php:23090
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
 
699
+ #: includes/class-freemius.php:23098
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
702
 
703
+ #: includes/class-freemius.php:23099
704
  msgid "No credit card required"
705
  msgstr "לא נדרש כרטיס אשראי"
706
 
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "התחלת ניסיון חינם"
711
 
712
+ #: includes/class-freemius.php:23183
713
  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!"
714
  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!"
715
 
716
+ #: includes/class-freemius.php:23192
717
  msgid "Learn more"
718
  msgstr "Learn more"
719
 
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "הפעלת רישיון"
726
 
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "שינוי רישיון"
732
 
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Opt Out"
736
 
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Opt In"
742
 
743
+ #: includes/class-freemius.php:23738
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
 
747
+ #: includes/class-freemius.php:23746
748
  msgid "Activate %s features"
749
  msgstr "Activate %s features"
750
 
751
+ #: includes/class-freemius.php:23759
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
754
 
755
+ #: includes/class-freemius.php:23763
756
  msgid "Download the latest %s version"
757
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
758
 
759
+ #: includes/class-freemius.php:23767
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
762
 
763
+ #: includes/class-freemius.php:23769
764
  msgid "How to upload and activate?"
765
  msgstr "איך להעלות ולהפעיל?"
766
 
767
+ #: includes/class-freemius.php:23903
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
770
 
771
+ #: includes/class-freemius.php:24072
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "Auto installation only works for opted-in users."
774
 
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
  msgid "Invalid module ID."
779
  msgstr "מזהה המודול לא תקני."
780
 
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
  msgid "Premium version already active."
783
  msgstr "הגרסה בתשלום כבר פעילה."
784
 
785
+ #: includes/class-freemius.php:24098
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
788
 
789
+ #: includes/class-freemius.php:24105
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
 
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
  msgid "Premium add-on version already installed."
795
  msgstr "Premium add-on version already installed."
796
 
797
+ #: includes/class-freemius.php:24473
798
  msgid "View paid features"
799
  msgstr "צפה בפיטצ'רים שבתשלום"
800
 
801
+ #: includes/class-freemius.php:24795
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "Thank you so much for using %s and its add-ons!"
804
 
805
+ #: includes/class-freemius.php:24796
806
  msgid "Thank you so much for using %s!"
807
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
808
 
809
+ #: includes/class-freemius.php:24802
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
 
813
+ #: includes/class-freemius.php:24806
814
  msgid "Thank you so much for using our products!"
815
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
816
 
817
+ #: includes/class-freemius.php:24807
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
 
821
+ #: includes/class-freemius.php:24826
822
  msgid "%s and its add-ons"
823
  msgstr "%s and its add-ons"
824
 
825
+ #: includes/class-freemius.php:24835
826
  msgid "Products"
827
  msgstr "מוצרים"
828
 
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
  msgid "Yes"
831
  msgstr "כן"
832
 
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
836
 
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
  msgid "No"
839
  msgstr "לא"
840
 
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
844
 
845
+ #: includes/class-freemius.php:24856
846
  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 :-)"
847
  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 :-)"
848
 
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
 
853
+ #: includes/class-freemius.php:25140
854
  msgid "License key is empty."
855
  msgstr "מפתח הרישיון ריק."
856
 
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Important Upgrade Notice:"
885
 
886
+ #: includes/class-fs-plugin-updater.php:1326
887
  msgid "Installing plugin: %s"
888
  msgstr "Installing plugin: %s"
889
 
890
+ #: includes/class-fs-plugin-updater.php:1367
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
893
 
894
+ #: includes/class-fs-plugin-updater.php:1549
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
 
913
  msgid "Install Free Version Update Now"
914
  msgstr "התקן עדכון גרסה חינאמית עכשיו"
915
 
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
  msgid "Install Update Now"
918
  msgstr "התקן עדכון במיידי"
919
 
933
  msgid "Download Latest Free Version"
934
  msgstr "Download Latest Free Version"
935
 
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
945
  msgid "Activate this add-on"
946
  msgstr "הפעל את ההרחבה"
947
 
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
  msgid "Activate Free Version"
950
  msgstr "הפעלת גירסה חינאמית"
951
 
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "הפעלה"
1085
  msgid "Details"
1086
  msgstr "פרטים"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
1101
  msgid "Last Updated"
1102
  msgstr "עודכן לאחרונה"
1103
 
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "לפני %s"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "גרסה חינאמית עדכנית הותקנה"
1214
 
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Downgrading your plan"
1220
 
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
 
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1244
 
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
 
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "הפעל חבילה %s"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "עדכן אוטומטית בעוד %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "פג תוקף בעוד %s"
1275
 
1276
+ #: templates/account.php:117
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "סינכרן רישיון"
1280
 
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "ביט"
1284
 
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "שינוי חבילה"
1288
 
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "שדרג"
1293
 
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "שנמך"
1299
 
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "חינם"
1306
 
1307
+ #: templates/account.php126, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "חבילה"
1313
 
1314
+ #: templates/account.php:127
1315
  msgid "Bundle Plan"
1316
  msgstr "Bundle Plan"
1317
 
1318
+ #: templates/account.php:250
1319
  msgid "Free Trial"
1320
  msgstr "ניסיון חינם"
1321
 
1322
+ #: templates/account.php:261
1323
  msgid "Account Details"
1324
  msgstr "פרטי חשבון"
1325
 
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Start Debug"
1329
 
1330
+ #: templates/account.php:270
1331
  msgid "Stop Debug"
1332
  msgstr "Stop Debug"
1333
 
1334
+ #: templates/account.php:277
1335
  msgid "Billing & Invoices"
1336
  msgstr "Billing & Invoices"
1337
 
1338
+ #: templates/account.php:288
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
 
1342
+ #: templates/account.php:290
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
 
1346
+ #: templates/account.php:293
1347
  msgid "Delete Account"
1348
  msgstr "מחיקת חשבון"
1349
 
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "שיחרור רישיון"
1354
 
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "האם את/ה בטוח רוצה להמשיך?"
1358
 
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "בטל מנוי"
1362
 
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "סינכרון"
1367
 
1368
+ #: templates/account.php372, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "שם"
1371
 
1372
+ #: templates/account.php378, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "דוא\"ל"
1375
 
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "מזהה משתמש"
1379
 
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "מזהה"
1387
 
1388
+ #: templates/account.php:410
1389
  msgid "Site ID"
1390
  msgstr "מזהה אתר"
1391
 
1392
+ #: templates/account.php:413
1393
  msgid "No ID"
1394
  msgstr "אין מזהה"
1395
 
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "מפתח פומבי"
1401
 
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "מפתח סודי"
1406
 
1407
+ #: templates/account.php:427
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "אין מפתח סודי"
1411
 
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "ניסיון"
1416
 
1417
+ #: templates/account.php481, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "License Key"
1421
 
1422
+ #: templates/account.php:512
1423
  msgid "Join the Beta program"
1424
  msgstr "Join the Beta program"
1425
 
1426
+ #: templates/account.php:518
1427
  msgid "not verified"
1428
  msgstr "לא מאומת"
1429
 
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "פג תוקף"
1433
 
1434
+ #: templates/account.php:587
1435
  msgid "Premium version"
1436
  msgstr "גירסת פרימיום"
1437
 
1438
+ #: templates/account.php:589
1439
  msgid "Free version"
1440
  msgstr "גירסה חינאמית"
1441
 
1442
+ #: templates/account.php:601
1443
  msgid "Verify Email"
1444
  msgstr "אמת כתובת דוא\"ל"
1445
 
1446
+ #: templates/account.php:615
1447
  msgid "Download %s Version"
1448
  msgstr "הורד גרסת %s"
1449
 
1450
+ #: templates/account.php:631
1451
  msgid "Download Paid Version"
1452
  msgstr "Download Paid Version"
1453
 
1454
+ #: templates/account.php649, templates/account.php892,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "הצג"
1460
 
1461
+ #: templates/account.php:664
1462
  msgid "What is your %s?"
1463
  msgstr "מה ה%s שלך?"
1464
 
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "ערוך"
1469
 
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Change User"
1473
 
1474
+ #: templates/account.php:700
1475
  msgid "Sites"
1476
  msgstr "אתרים"
1477
 
1478
+ #: templates/account.php:713
1479
  msgid "Search by address"
1480
  msgstr "חפש לפי כתובת"
1481
 
1482
+ #: templates/account.php722, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "כתובת"
1485
 
1486
+ #: templates/account.php:723
1487
  msgid "License"
1488
  msgstr "רישיון"
1489
 
1490
+ #: templates/account.php:724
1491
  msgid "Plan"
1492
  msgstr "חבילה"
1493
 
1494
+ #: templates/account.php:757
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "רישיון"
1498
 
1499
+ #: templates/account.php:886
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "הסתר"
1503
 
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Processing"
1507
 
1508
+ #: templates/account.php:911
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Get updates for bleeding edge Beta versions of %s."
1511
 
1512
+ #: templates/account.php:969
1513
  msgid "Cancelling %s"
1514
  msgstr "Cancelling %s"
1515
 
1516
+ #: templates/account.php969, templates/account.php986,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "trial"
1521
 
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "Cancelling %s..."
1525
 
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "subscription"
1530
 
1531
+ #: templates/account.php:1001
1532
  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?"
1533
  msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1534
 
1535
+ #: templates/account.php:1075
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
+ #: templates/account.php:1076
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
1562
  msgid "Installed"
1563
  msgstr "Installed"
1564
 
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
1618
  msgid "Agree & Activate License"
1619
  msgstr "הסכמה והפעלת רישיון"
1620
 
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
 
1625
+ #: templates/connect.php:191
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
 
1629
+ #: templates/connect.php:192
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
 
1633
+ #: templates/connect.php:198
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
 
1637
+ #: templates/connect.php:199
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
 
1641
+ #: templates/connect.php:233
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "We're excited to introduce the Freemius network-level integration."
1644
 
1645
+ #: templates/connect.php:236
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1648
 
1649
+ #: templates/connect.php:238
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
 
1653
+ #: templates/connect.php:240
1654
  msgid "%s's paid features"
1655
  msgstr "%s's paid features"
1656
 
1657
+ #: templates/connect.php:245
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
 
1661
+ #: templates/connect.php:247
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
 
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "מפתח רישיון"
1669
 
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "האם אינך מוצא את מפתח הרישיון?"
1673
 
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "דלג"
1679
 
1680
+ #: templates/connect.php:321
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "האצלה למנהלי האתרים"
1683
 
1684
+ #: templates/connect.php:321
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1687
 
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
  msgid "Your Profile Overview"
1694
  msgstr "פרטים כלליים על הפרופיל"
1695
 
1696
+ #: templates/connect.php:363
1697
  msgid "Name and email address"
1698
  msgstr "שם וכתובת דו\"אל"
1699
 
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
  msgid "Your Site Overview"
1706
  msgstr "פרטים כלליים על האתר"
1707
 
1708
+ #: templates/connect.php:372
1709
  msgid "Site URL, WP version, PHP info"
1710
  msgstr "Site URL, WP version, PHP info"
1711
 
1713
  msgid "Admin Notices"
1714
  msgstr "התראות מנהל"
1715
 
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
  msgid "Updates, announcements, marketing, no spam"
1718
  msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
1719
 
 
 
 
 
1720
  #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
 
1732
+ #: templates/connect.php:397
1733
  msgid "Newsletter"
1734
  msgstr "ניוסלטר"
1735
 
1736
+ #: templates/connect.php:405
1737
  msgid "Plugins & Themes"
1738
  msgstr "Plugins & Themes"
1739
 
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
  msgid "Title, slug, version, and is active"
1750
  msgstr "Title, slug, version, and is active"
1751
 
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
 
1756
  #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
  msgid "What permissions are being granted?"
1766
  msgstr "מהן ההרשאות המוענקות?"
1767
 
1768
+ #: templates/connect.php:457
1769
  msgid "Don't have a license key?"
1770
  msgstr "האם אין ברשותך מפתח רישיון?"
1771
 
1772
+ #: templates/connect.php:460
1773
  msgid "Have a license key?"
1774
  msgstr "האם ברשותך רישיון?"
1775
 
1776
+ #: templates/connect.php:468
1777
  msgid "Privacy Policy"
1778
  msgstr "מדיניות פרטיות"
1779
 
1780
+ #: templates/connect.php:470
1781
  msgid "License Agreement"
1782
  msgstr "License Agreement"
1783
 
1784
+ #: templates/connect.php:470
1785
  msgid "Terms of Service"
1786
  msgstr "תנאי השירות"
1787
 
1788
+ #: templates/connect.php:866
1789
  msgctxt "as in the process of sending an email"
1790
  msgid "Sending email"
1791
  msgstr "שולח דוא\"ל"
1792
 
1793
+ #: templates/connect.php:867
1794
  msgctxt "as activating plugin"
1795
  msgid "Activating"
1796
  msgstr "מפעיל"
2393
  msgid "Update License"
2394
  msgstr "עדכון רישיון"
2395
 
2396
+ #: templates/forms/license-activation.php:41
2397
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2398
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
  msgid "Associate with the license owner's account."
2402
  msgstr "Associate with the license owner's account."
2403
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Peter Ambrus, 2018-2019
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: hu_HU\n"
13
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n"
@@ -21,835 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  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."
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "Hiba"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "Jobb %st találtam"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "Mi a %s neve?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
  msgstr "Deaktiválás"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "Sablon váltás"
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Egyéb"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "I no longer need the %s"
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "I only needed the %s for a short period"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "The %s broke my site"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "The %s suddenly stopped working"
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "Nem tudom tovább fizetni"
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "Nem szeretném megosztani veletek az információt"
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "A %s nem működött"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Nem értettem, hogy kell használni"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "The %s is great, but I need specific feature that you don't support"
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "Melyik funkcióra van szükséged?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "A(z) %s nem működik"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "Nem ezt kerestem"
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "Pontosan mit kerestél?"
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "A %s nem az elvárásoknak megfelelően működött"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "Mire számítottál?"
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius Debug"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "I don't know what is cURL or how to install it, help me!"
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  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."
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  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."
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
  msgstr "Igen - tedd a dolgod"
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
  msgstr "Nem - csak deaktiválom"
156
 
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Hoppá"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  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."
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s cannot run without %s."
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s cannot run without the plugin."
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Premium %s version was successfully activated."
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Fantasztikus"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "You have a %s license."
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Juhuuu"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  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."
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "More information about %s"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "Licensz vásárlása"
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Küldtünk egy aktivációs emailt a(z) %s szoftverünkhöz a következő email címre: %s. Kérlek kattints a levélben található aktivációs linkre, hogy %s."
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "próbaidő indítása"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "befejezd a telepítést"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "Már csak egy lépés van hátra - %s"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "\"%s\" aktiválásának a befejezése most"
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "We made a few tweaks to the %s, %s"
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "The upgrade of %s was successfully completed."
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Kiegészítő"
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Bővítmény"
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Sablon"
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
  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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "Tulajdonos módosítása"
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "A fiók aktiválása függőben."
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Vásárolj licenszet most"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Licensz kulcs megújítása"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s to access version %s security & feature updates, and support."
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "%s activation was successfully completed."
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "A próbaidőszakodat sikeresen aktiváltuk."
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "Couldn't activate %s."
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "Please contact us with the following message:"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "Előfizetés frissítése"
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "Próbaidő indítása"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "Árak"
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Fiók"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Kapcsolat"
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Kiegészítők"
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Árak"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Támogató fórum"
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  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."
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Your %s Add-on plan was successfully upgraded."
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "%s Add-on was successfully purchased."
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "Töltsd le a legfrissebb verziót"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  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"
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "Error received from the server:"
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  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."
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Próbaidő"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "Please contact us here"
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Your plan was successfully upgraded."
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Your plan was successfully changed to %s."
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Your license has expired. You can still continue using the free %s forever."
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  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."
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "It looks like the license could not be activated."
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "Your license was successfully activated."
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "It looks like your site currently doesn't have an active license."
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "Rendben"
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "You are already running the %s in a trial mode."
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "You already utilized a trial before."
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Plan %s do not exist, therefore, can't start a trial."
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Plan %s does not support a trial period."
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "None of the %s's plans supports a trial period."
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
 
587
- #: includes/class-freemius.php:21236
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Your %s free trial was successfully cancelled."
590
 
591
- #: includes/class-freemius.php:21552
592
  msgid "Version %s was released."
593
  msgstr "Version %s was released."
594
 
595
- #: includes/class-freemius.php:21552
596
  msgid "Please download %s."
597
  msgstr "Please download %s."
598
 
599
- #: includes/class-freemius.php:21559
600
  msgid "the latest %s version here"
601
  msgstr "the latest %s version here"
602
 
603
- #: includes/class-freemius.php:21564
604
  msgid "New"
605
  msgstr "Új"
606
 
607
- #: includes/class-freemius.php:21569
608
  msgid "Seems like you got the latest release."
609
  msgstr "Seems like you got the latest release."
610
 
611
- #: includes/class-freemius.php:21570
612
  msgid "You are all good!"
613
  msgstr "Minden rendben!"
614
 
615
- #: includes/class-freemius.php:21873
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
 
619
- #: includes/class-freemius.php:22013
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
624
  msgid "Awesome"
625
  msgstr "Nagyszerű"
626
 
627
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
630
 
631
- #: includes/class-freemius.php:22031
632
  msgid "Thank you!"
633
  msgstr "Köszönjük!"
634
 
635
- #: includes/class-freemius.php:22038
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
638
 
639
- #: includes/class-freemius.php:22196
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
 
643
- #: includes/class-freemius.php:22202
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
 
647
- #: includes/class-freemius.php:22207
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s is the new owner of the account."
650
 
651
- #: includes/class-freemius.php:22209
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Gratulálunk"
655
 
656
- #: includes/class-freemius.php:22245
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
 
660
- #: includes/class-freemius.php:22257
661
  msgid "Please provide your full name."
662
  msgstr "Kérlek add meg a teljes neved!"
663
 
664
- #: includes/class-freemius.php:22262
665
  msgid "Your name was successfully updated."
666
  msgstr "A neved sikeresen frissítettük."
667
 
668
- #: includes/class-freemius.php:22323
669
  msgid "You have successfully updated your %s."
670
  msgstr "You have successfully updated your %s."
671
 
672
- #: includes/class-freemius.php:22382
673
  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."
674
  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."
675
 
676
- #: includes/class-freemius.php:22385
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
- #: includes/class-freemius.php:22483
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
 
684
- #: includes/class-freemius.php:22484
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Figyelem"
688
 
689
- #: includes/class-freemius.php:23060
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Üdv"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
 
698
- #: includes/class-freemius.php:23068
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "No commitment for %s days - cancel anytime!"
701
 
702
- #: includes/class-freemius.php:23069
703
  msgid "No credit card required"
704
  msgstr "Bankkártya megadása nem kötelező"
705
 
706
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Start free trial"
710
 
711
- #: includes/class-freemius.php:23153
712
  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!"
713
  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!"
714
 
715
- #: includes/class-freemius.php:23162
716
  msgid "Learn more"
717
  msgstr "Bővebben"
718
 
719
- #: includes/class-freemius.php23348, templates/account.php556,
720
- #: templates/account.php706, templates/connect.php179,
721
- #: templates/connect.php456, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Licensz aktiválása"
725
 
726
- #: includes/class-freemius.php23349, templates/account.php650,
727
- #: templates/account.php705, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Licensz módosítása"
731
 
732
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Leiratkozás"
735
 
736
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Feliratkozás"
741
 
742
- #: includes/class-freemius.php:23700
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
- #: includes/class-freemius.php:23708
747
  msgid "Activate %s features"
748
  msgstr "Activate %s features"
749
 
750
- #: includes/class-freemius.php:23721
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Please follow these steps to complete the upgrade"
753
 
754
- #: includes/class-freemius.php:23725
755
  msgid "Download the latest %s version"
756
  msgstr "Download the latest %s version"
757
 
758
- #: includes/class-freemius.php:23729
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Upload and activate the downloaded version"
761
 
762
- #: includes/class-freemius.php:23731
763
  msgid "How to upload and activate?"
764
  msgstr "How to upload and activate?"
765
 
766
- #: includes/class-freemius.php:23865
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
- #: includes/class-freemius.php:24034
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Auto installation only works for opted-in users."
773
 
774
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
775
- #: includes/class-fs-plugin-updater.php1273,
776
- #: includes/class-fs-plugin-updater.php:1287
777
  msgid "Invalid module ID."
778
  msgstr "Invalid module ID."
779
 
780
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
781
  msgid "Premium version already active."
782
  msgstr "Premium version already active."
783
 
784
- #: includes/class-freemius.php:24060
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "You do not have a valid license to access the premium version."
787
 
788
- #: includes/class-freemius.php:24067
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
 
792
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
793
  msgid "Premium add-on version already installed."
794
  msgstr "Premium add-on version already installed."
795
 
796
- #: includes/class-freemius.php:24435
797
  msgid "View paid features"
798
  msgstr "Fizetős funkciók megtekintése"
799
 
800
- #: includes/class-freemius.php:24757
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
- #: includes/class-freemius.php:24758
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
- #: includes/class-freemius.php:24764
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
- #: includes/class-freemius.php:24768
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
- #: includes/class-freemius.php:24769
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
- #: includes/class-freemius.php:24788
821
  msgid "%s and its add-ons"
822
  msgstr "%s and its add-ons"
823
 
824
- #: includes/class-freemius.php:24797
825
  msgid "Products"
826
  msgstr "Termékek"
827
 
828
- #: includes/class-freemius.php24804, templates/connect.php:280
829
  msgid "Yes"
830
  msgstr "Igen"
831
 
832
- #: includes/class-freemius.php24805, templates/connect.php:281
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
835
 
836
- #: includes/class-freemius.php24806, templates/connect.php:286
837
  msgid "No"
838
  msgstr "Nem"
839
 
840
- #: includes/class-freemius.php24808, templates/connect.php:288
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
- #: includes/class-freemius.php:24818
845
  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 :-)"
846
  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 :-)"
847
 
848
- #: includes/class-freemius.php24820, templates/connect.php:295
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
- #: includes/class-freemius.php:25102
853
  msgid "License key is empty."
854
  msgstr "A licensz kulcs üres."
855
 
@@ -882,15 +882,15 @@ msgstr "új verzió"
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
- #: includes/class-fs-plugin-updater.php:1338
886
  msgid "Installing plugin: %s"
887
  msgstr "Bővítmény telepítése: %s"
888
 
889
- #: includes/class-fs-plugin-updater.php:1379
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
892
 
893
- #: includes/class-fs-plugin-updater.php:1561
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
 
@@ -912,7 +912,7 @@ msgstr "Start my free %s"
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
916
  msgid "Install Update Now"
917
  msgstr "Frissítés telepítése most"
918
 
@@ -932,7 +932,7 @@ msgctxt "as download latest version"
932
  msgid "Download Latest Free Version"
933
  msgstr "Download Latest Free Version"
934
 
935
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
@@ -944,11 +944,11 @@ msgstr "Download Latest"
944
  msgid "Activate this add-on"
945
  msgstr "Activate this add-on"
946
 
947
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
948
  msgid "Activate Free Version"
949
  msgstr "Ingyenes verzió aktiválása"
950
 
951
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Aktiválás"
@@ -1084,7 +1084,7 @@ msgstr "After your free %s, pay as little as %s"
1084
  msgid "Details"
1085
  msgstr "Részletek"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
@@ -1100,7 +1100,7 @@ msgstr "Szerző"
1100
  msgid "Last Updated"
1101
  msgstr "Utolsó frissítés"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "%s ago"
@@ -1211,13 +1211,13 @@ msgstr "Legfrissebb verzió telepítve"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Legfrissebb ingyenes verzió telepítve"
1213
 
1214
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Downgrading your plan"
1219
 
1220
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
@@ -1225,317 +1225,317 @@ msgstr "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
 
1244
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
- #: templates/account.php109,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "%s csomag aktiválása"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
- #: templates/account.php112, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Auto renews in %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
- #: templates/account.php114, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Hátralévő idő: %s"
1274
 
1275
- #: templates/account.php:115
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Licensz szinkronizálása"
1279
 
1280
- #: templates/account.php116, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Próbaidő törlése"
1283
 
1284
- #: templates/account.php117, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Csomag módosítása"
1287
 
1288
- #: templates/account.php118, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Váltás nagyobb csomagra"
1292
 
1293
- #: templates/account.php120, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Váltás kisebb csomagra"
1298
 
1299
- #: templates/account.php122, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Ingyenes"
1305
 
1306
- #: templates/account.php124, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Csomag"
1312
 
1313
- #: templates/account.php:125
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
- #: templates/account.php:248
1318
  msgid "Free Trial"
1319
  msgstr "Ingyenes próbaidő"
1320
 
1321
- #: templates/account.php:259
1322
  msgid "Account Details"
1323
  msgstr "Fiók információk"
1324
 
1325
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
- #: templates/account.php:268
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
- #: templates/account.php:275
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
- #: templates/account.php:286
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
 
1341
- #: templates/account.php:288
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
 
1345
- #: templates/account.php:291
1346
  msgid "Delete Account"
1347
  msgstr "Fiók törlése"
1348
 
1349
- #: templates/account.php303, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Licensz deaktiválása"
1353
 
1354
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Are you sure you want to proceed?"
1357
 
1358
- #: templates/account.php326, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Előfizetés törlése"
1361
 
1362
- #: templates/account.php355, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Szinkronizálás"
1366
 
1367
- #: templates/account.php370, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Név"
1370
 
1371
- #: templates/account.php376, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "Felhasználó ID"
1378
 
1379
- #: templates/account.php401, templates/account.php719,
1380
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
- #: templates/account.php:408
1388
  msgid "Site ID"
1389
  msgstr "Weboldal ID"
1390
 
1391
- #: templates/account.php:411
1392
  msgid "No ID"
1393
  msgstr "Nincs ID"
1394
 
1395
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Publikus kulcs"
1400
 
1401
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Titkos kulcs"
1405
 
1406
- #: templates/account.php:425
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Nincs titkos kulcs"
1410
 
1411
- #: templates/account.php452, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Próbaidő"
1415
 
1416
- #: templates/account.php479, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Licensz kulcs"
1420
 
1421
- #: templates/account.php:510
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
- #: templates/account.php:516
1426
  msgid "not verified"
1427
  msgstr "nem ellenőrzött"
1428
 
1429
- #: templates/account.php525, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Lejárt"
1432
 
1433
- #: templates/account.php:585
1434
  msgid "Premium version"
1435
  msgstr "Prémium verzió"
1436
 
1437
- #: templates/account.php:587
1438
  msgid "Free version"
1439
  msgstr "Ingyenes verzió"
1440
 
1441
- #: templates/account.php:599
1442
  msgid "Verify Email"
1443
  msgstr "Email ellenőrzése"
1444
 
1445
- #: templates/account.php:613
1446
  msgid "Download %s Version"
1447
  msgstr "%s verzió letöltése"
1448
 
1449
- #: templates/account.php:629
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
- #: templates/account.php647, templates/account.php890,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Mutasd"
1459
 
1460
- #: templates/account.php:662
1461
  msgid "What is your %s?"
1462
  msgstr "Mi a te %s?"
1463
 
1464
- #: templates/account.php670, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Szerkesztés"
1468
 
1469
- #: templates/account.php674, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
- #: templates/account.php:698
1474
  msgid "Sites"
1475
  msgstr "Weboldalak"
1476
 
1477
- #: templates/account.php:711
1478
  msgid "Search by address"
1479
  msgstr "Keresés cím alapján"
1480
 
1481
- #: templates/account.php720, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Cím"
1484
 
1485
- #: templates/account.php:721
1486
  msgid "License"
1487
  msgstr "Licensz"
1488
 
1489
- #: templates/account.php:722
1490
  msgid "Plan"
1491
  msgstr "Csomag"
1492
 
1493
- #: templates/account.php:755
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licensz"
1497
 
1498
- #: templates/account.php:884
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Elrejt"
1502
 
1503
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Processing"
1506
 
1507
- #: templates/account.php:909
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
- #: templates/account.php:967
1512
  msgid "Cancelling %s"
1513
  msgstr "Cancelling %s"
1514
 
1515
- #: templates/account.php967, templates/account.php984,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "próbaidő"
1520
 
1521
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Cancelling %s..."
1524
 
1525
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "előfizetés"
1529
 
1530
- #: templates/account.php:999
1531
  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?"
1532
  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?"
1533
 
1534
- #: templates/account.php:1073
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
- #: templates/account.php:1074
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
@@ -1561,7 +1561,7 @@ msgctxt "installed add-on"
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
@@ -1617,86 +1617,94 @@ msgstr "Köszönjük %s!"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Licensz elfogadása és aktiválása"
1619
 
1620
- #: templates/connect.php:189
1621
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1622
- msgstr "Köszönjük, hogy megvásároltad a %s szoftverünket! A folytatáshoz most meg kell adnod a licensz kulcsot, amit a vásárlás után kaptál emailben:"
1623
 
1624
- #: templates/connect.php:196
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
 
1628
- #: templates/connect.php:197
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
 
1632
- #: templates/connect.php:203
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
 
1636
- #: templates/connect.php:204
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
 
1640
- #: templates/connect.php:238
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "We're excited to introduce the Freemius network-level integration."
1643
 
1644
- #: templates/connect.php:241
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
- #: templates/connect.php:243
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
 
1652
- #: templates/connect.php:245
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
- #: templates/connect.php:250
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
- #: templates/connect.php:252
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Licensz kulcs"
1668
 
1669
- #: templates/connect.php264, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Nem találod a licensz kulcsod?"
1672
 
1673
- #: templates/connect.php323, templates/connect.php695,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Ugrás"
1678
 
1679
- #: templates/connect.php:326
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
- #: templates/connect.php:326
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
- #: templates/connect.php:364
 
 
 
 
1688
  msgid "Your Profile Overview"
1689
  msgstr "Fiókod áttekintése"
1690
 
1691
- #: templates/connect.php:365
1692
  msgid "Name and email address"
1693
  msgstr "Név és email cím"
1694
 
1695
- #: templates/connect.php:372
 
 
 
 
1696
  msgid "Your Site Overview"
1697
  msgstr "Weboldalad adatainak áttekintése"
1698
 
1699
- #: templates/connect.php:373
1700
  msgid "Site URL, WP version, PHP info"
1701
  msgstr "Site URL, WP version, PHP info"
1702
 
@@ -1704,64 +1712,84 @@ msgstr "Site URL, WP version, PHP info"
1704
  msgid "Admin Notices"
1705
  msgstr "Admin értesítések"
1706
 
1707
- #: templates/connect.php380, templates/connect.php:396
1708
  msgid "Updates, announcements, marketing, no spam"
1709
  msgstr "Frissítések, közlemények, marketing, de semmi SPAM!"
1710
 
1711
- #: templates/connect.php:386
1712
- msgid "Current %s Events"
1713
- msgstr "Aktuális %s események"
1714
-
1715
  #: templates/connect.php:387
1716
- msgid "Activation, deactivation and uninstall"
1717
- msgstr "Aktiválás, deaktiválás és kikapcsolás"
 
 
 
 
 
 
 
 
1718
 
1719
- #: templates/connect.php:395
1720
  msgid "Newsletter"
1721
  msgstr "Hírlevél"
1722
 
1723
- #: templates/connect.php:403
1724
  msgid "Plugins & Themes"
1725
  msgstr "Plugins & Themes"
1726
 
1727
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1728
  msgid "Title, slug, version, and is active"
1729
  msgstr "Title, slug, version, and is active"
1730
 
1731
- #: templates/connect.php421, templates/forms/license-activation.php:41
1732
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1733
- msgstr "A %1$s időközönként adatot küld a %2$s weboldalnak, hogy ellenőrizze a biztonsági és funkcionális frissítéseket, valamint ellenőrzi az érvényes licensz kulcsot."
1734
 
1735
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1736
  msgid "What permissions are being granted?"
1737
  msgstr "Milyen jogosultágok lesznek engedélyezve?"
1738
 
1739
- #: templates/connect.php:452
1740
  msgid "Don't have a license key?"
1741
  msgstr "Nincs még licensz kulcsod?"
1742
 
1743
- #: templates/connect.php:455
1744
  msgid "Have a license key?"
1745
  msgstr "Van licensz kulcsod?"
1746
 
1747
- #: templates/connect.php:463
1748
  msgid "Privacy Policy"
1749
  msgstr "Adatkezelési tájékoztató"
1750
 
1751
- #: templates/connect.php:465
1752
  msgid "License Agreement"
1753
  msgstr "Licensz szerződés"
1754
 
1755
- #: templates/connect.php:465
1756
  msgid "Terms of Service"
1757
  msgstr "Szolgáltatási feltételek"
1758
 
1759
- #: templates/connect.php:854
1760
  msgctxt "as in the process of sending an email"
1761
  msgid "Sending email"
1762
  msgstr "Email küldése"
1763
 
1764
- #: templates/connect.php:855
1765
  msgctxt "as activating plugin"
1766
  msgid "Activating"
1767
  msgstr "Aktiválás"
@@ -2364,7 +2392,11 @@ msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod
2364
  msgid "Update License"
2365
  msgstr "Licensz frissítése"
2366
 
2367
- #: templates/forms/license-activation.php:181
 
 
 
 
2368
  msgid "Associate with the license owner's account."
2369
  msgstr "Associate with the license owner's account."
2370
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Peter Ambrus, 2018-2019
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: hu_HU\n"
13
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1919, templates/account.php:912
25
  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."
26
  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."
27
 
28
+ #: includes/class-freemius.php:1926
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
+ #: includes/class-freemius.php:2138
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
 
36
+ #: includes/class-freemius.php:2140
37
  msgid "Error"
38
  msgstr "Hiba"
39
 
40
+ #: includes/class-freemius.php:2540
41
  msgid "I found a better %s"
42
  msgstr "Jobb %st találtam"
43
 
44
+ #: includes/class-freemius.php:2542
45
  msgid "What's the %s's name?"
46
  msgstr "Mi a %s neve?"
47
 
48
+ #: includes/class-freemius.php:2548
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
51
 
52
+ #: includes/class-freemius.php:2550
53
  msgid "Deactivation"
54
  msgstr "Deaktiválás"
55
 
56
+ #: includes/class-freemius.php:2551
57
  msgid "Theme Switch"
58
  msgstr "Sablon váltás"
59
 
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Egyéb"
64
 
65
+ #: includes/class-freemius.php:2568
66
  msgid "I no longer need the %s"
67
  msgstr "I no longer need the %s"
68
 
69
+ #: includes/class-freemius.php:2575
70
  msgid "I only needed the %s for a short period"
71
  msgstr "I only needed the %s for a short period"
72
 
73
+ #: includes/class-freemius.php:2581
74
  msgid "The %s broke my site"
75
  msgstr "The %s broke my site"
76
 
77
+ #: includes/class-freemius.php:2588
78
  msgid "The %s suddenly stopped working"
79
  msgstr "The %s suddenly stopped working"
80
 
81
+ #: includes/class-freemius.php:2598
82
  msgid "I can't pay for it anymore"
83
  msgstr "Nem tudom tovább fizetni"
84
 
85
+ #: includes/class-freemius.php:2600
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
88
 
89
+ #: includes/class-freemius.php:2606
90
  msgid "I don't like to share my information with you"
91
  msgstr "Nem szeretném megosztani veletek az információt"
92
 
93
+ #: includes/class-freemius.php:2627
94
  msgid "The %s didn't work"
95
  msgstr "A %s nem működött"
96
 
97
+ #: includes/class-freemius.php:2637
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Nem értettem, hogy kell használni"
100
 
101
+ #: includes/class-freemius.php:2645
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "The %s is great, but I need specific feature that you don't support"
104
 
105
+ #: includes/class-freemius.php:2647
106
  msgid "What feature?"
107
  msgstr "Melyik funkcióra van szükséged?"
108
 
109
+ #: includes/class-freemius.php:2651
110
  msgid "The %s is not working"
111
  msgstr "A(z) %s nem működik"
112
 
113
+ #: includes/class-freemius.php:2653
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
116
 
117
+ #: includes/class-freemius.php:2657
118
  msgid "It's not what I was looking for"
119
  msgstr "Nem ezt kerestem"
120
 
121
+ #: includes/class-freemius.php:2659
122
  msgid "What you've been looking for?"
123
  msgstr "Pontosan mit kerestél?"
124
 
125
+ #: includes/class-freemius.php:2663
126
  msgid "The %s didn't work as expected"
127
  msgstr "A %s nem az elvárásoknak megfelelően működött"
128
 
129
+ #: includes/class-freemius.php:2665
130
  msgid "What did you expect?"
131
  msgstr "Mire számítottál?"
132
 
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius Debug"
136
 
137
+ #: includes/class-freemius.php:4272
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "I don't know what is cURL or how to install it, help me!"
140
 
141
+ #: includes/class-freemius.php:4274
142
  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."
143
  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."
144
 
145
+ #: includes/class-freemius.php:4281
146
  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."
147
  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."
148
 
149
+ #: includes/class-freemius.php:4386
150
  msgid "Yes - do your thing"
151
  msgstr "Igen - tedd a dolgod"
152
 
153
+ #: includes/class-freemius.php:4391
154
  msgid "No - just deactivate"
155
  msgstr "Nem - csak deaktiválom"
156
 
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Hoppá"
168
 
169
+ #: includes/class-freemius.php:4505
170
  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."
171
  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."
172
 
173
+ #: includes/class-freemius.php:4927
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s cannot run without %s."
177
 
178
+ #: includes/class-freemius.php:4928
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s cannot run without the plugin."
182
 
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
 
188
+ #: includes/class-freemius.php:5857
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Premium %s version was successfully activated."
191
 
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Fantasztikus"
196
 
197
+ #: includes/class-freemius.php:5884
198
  msgid "You have a %s license."
199
  msgstr "You have a %s license."
200
 
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Juhuuu"
208
 
209
+ #: includes/class-freemius.php:6174
210
  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."
211
  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."
212
 
213
+ #: includes/class-freemius.php:6178
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
 
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "More information about %s"
221
 
222
+ #: includes/class-freemius.php:6188
223
  msgid "Purchase License"
224
  msgstr "Licensz vásárlása"
225
 
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Küldtünk egy aktivációs emailt a(z) %s szoftverünkhöz a következő email címre: %s. Kérlek kattints a levélben található aktivációs linkre, hogy %s."
229
 
230
+ #: includes/class-freemius.php:7129
231
  msgid "start the trial"
232
  msgstr "próbaidő indítása"
233
 
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "befejezd a telepítést"
237
 
238
+ #: includes/class-freemius.php:7249
239
  msgid "You are just one step away - %s"
240
  msgstr "Már csak egy lépés van hátra - %s"
241
 
242
+ #: includes/class-freemius.php:7252
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "\"%s\" aktiválásának a befejezése most"
246
 
247
+ #: includes/class-freemius.php:7334
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "We made a few tweaks to the %s, %s"
250
 
251
+ #: includes/class-freemius.php:7338
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
+ #: includes/class-freemius.php:7773
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "The upgrade of %s was successfully completed."
258
 
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Kiegészítő"
265
 
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Bővítmény"
270
 
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Sablon"
276
 
277
+ #: includes/class-freemius.php:13188
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
+ #: includes/class-freemius.php:13202
282
  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."
283
  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."
284
 
285
+ #: includes/class-freemius.php:13207
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
+ #: includes/class-freemius.php:13208
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
+ #: includes/class-freemius.php:13266
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
+ #: includes/class-freemius.php:13339
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
 
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
 
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
  msgid "Change Ownership"
311
  msgstr "Tulajdonos módosítása"
312
 
313
+ #: includes/class-freemius.php:13977
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
+ #: includes/class-freemius.php:14097
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
320
 
321
+ #: includes/class-freemius.php:14099
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
 
325
+ #: includes/class-freemius.php:14373
326
  msgid "Account is pending activation."
327
  msgstr "A fiók aktiválása függőben."
328
 
329
+ #: includes/class-freemius.php14485,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Vásárolj licenszet most"
333
 
334
+ #: includes/class-freemius.php14497,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Licensz kulcs megújítása"
338
 
339
+ #: includes/class-freemius.php:14501
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s to access version %s security & feature updates, and support."
342
 
343
+ #: includes/class-freemius.php:16929
344
  msgid "%s activation was successfully completed."
345
  msgstr "%s activation was successfully completed."
346
 
347
+ #: includes/class-freemius.php:16943
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
350
 
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
  msgid "Your trial has been successfully started."
353
  msgstr "A próbaidőszakodat sikeresen aktiváltuk."
354
 
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
  msgid "Couldn't activate %s."
358
  msgstr "Couldn't activate %s."
359
 
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
  msgid "Please contact us with the following message:"
363
  msgstr "Please contact us with the following message:"
364
 
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
  msgid "Upgrade"
371
  msgstr "Előfizetés frissítése"
372
 
373
+ #: includes/class-freemius.php:18184
374
  msgid "Start Trial"
375
  msgstr "Próbaidő indítása"
376
 
377
+ #: includes/class-freemius.php:18186
378
  msgid "Pricing"
379
  msgstr "Árak"
380
 
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
  msgid "Affiliation"
383
  msgstr "Affiliation"
384
 
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Fiók"
389
 
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Kapcsolat"
394
 
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Kiegészítők"
400
 
401
+ #: includes/class-freemius.php:18361
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Árak"
415
 
416
+ #: includes/class-freemius.php18576,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Támogató fórum"
420
 
421
+ #: includes/class-freemius.php:19550
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
424
 
425
+ #: includes/class-freemius.php:19551
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
+ #: includes/class-freemius.php:20057
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
+ #: includes/class-freemius.php:20081
435
  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."
436
  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."
437
 
438
+ #: includes/class-freemius.php:20316
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Your %s Add-on plan was successfully upgraded."
441
 
442
+ #: includes/class-freemius.php:20318
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "%s Add-on was successfully purchased."
445
 
446
+ #: includes/class-freemius.php:20321
447
  msgid "Download the latest version"
448
  msgstr "Töltsd le a legfrissebb verziót"
449
 
450
+ #: includes/class-freemius.php:20407
451
  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"
452
  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"
453
 
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
  msgid "Error received from the server:"
457
  msgstr "Error received from the server:"
458
 
459
+ #: includes/class-freemius.php:20423
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
 
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
+ #: includes/class-freemius.php:20664
470
  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."
471
  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."
472
 
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Próbaidő"
478
 
479
+ #: includes/class-freemius.php:20670
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
 
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
  msgid "Please contact us here"
485
  msgstr "Please contact us here"
486
 
487
+ #: includes/class-freemius.php:20685
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
+ #: includes/class-freemius.php:20686
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Your plan was successfully upgraded."
494
 
495
+ #: includes/class-freemius.php:20703
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Your plan was successfully changed to %s."
498
 
499
+ #: includes/class-freemius.php:20719
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Your license has expired. You can still continue using the free %s forever."
502
 
503
+ #: includes/class-freemius.php:20721
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
+ #: includes/class-freemius.php:20729
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
510
 
511
+ #: includes/class-freemius.php:20742
512
  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."
513
  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."
514
 
515
+ #: includes/class-freemius.php:20768
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
+ #: includes/class-freemius.php:20770
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
+ #: includes/class-freemius.php:20885
524
  msgid "It looks like the license could not be activated."
525
  msgstr "It looks like the license could not be activated."
526
 
527
+ #: includes/class-freemius.php:20927
528
  msgid "Your license was successfully activated."
529
  msgstr "Your license was successfully activated."
530
 
531
+ #: includes/class-freemius.php:20953
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "It looks like your site currently doesn't have an active license."
534
 
535
+ #: includes/class-freemius.php:20977
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
538
 
539
+ #: includes/class-freemius.php:21006
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
+ #: includes/class-freemius.php:21007
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
546
 
547
+ #: includes/class-freemius.php:21010
548
  msgid "O.K"
549
  msgstr "Rendben"
550
 
551
+ #: includes/class-freemius.php:21063
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
+ #: includes/class-freemius.php:21072
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
 
559
+ #: includes/class-freemius.php:21114
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "You are already running the %s in a trial mode."
562
 
563
+ #: includes/class-freemius.php:21125
564
  msgid "You already utilized a trial before."
565
  msgstr "You already utilized a trial before."
566
 
567
+ #: includes/class-freemius.php:21139
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Plan %s do not exist, therefore, can't start a trial."
570
 
571
+ #: includes/class-freemius.php:21150
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Plan %s does not support a trial period."
574
 
575
+ #: includes/class-freemius.php:21161
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "None of the %s's plans supports a trial period."
578
 
579
+ #: includes/class-freemius.php:21211
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
 
583
+ #: includes/class-freemius.php:21247
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
 
587
+ #: includes/class-freemius.php:21266
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Your %s free trial was successfully cancelled."
590
 
591
+ #: includes/class-freemius.php:21582
592
  msgid "Version %s was released."
593
  msgstr "Version %s was released."
594
 
595
+ #: includes/class-freemius.php:21582
596
  msgid "Please download %s."
597
  msgstr "Please download %s."
598
 
599
+ #: includes/class-freemius.php:21589
600
  msgid "the latest %s version here"
601
  msgstr "the latest %s version here"
602
 
603
+ #: includes/class-freemius.php:21594
604
  msgid "New"
605
  msgstr "Új"
606
 
607
+ #: includes/class-freemius.php:21599
608
  msgid "Seems like you got the latest release."
609
  msgstr "Seems like you got the latest release."
610
 
611
+ #: includes/class-freemius.php:21600
612
  msgid "You are all good!"
613
  msgstr "Minden rendben!"
614
 
615
+ #: includes/class-freemius.php:21903
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
 
619
+ #: includes/class-freemius.php:22043
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
  msgid "Awesome"
625
  msgstr "Nagyszerű"
626
 
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
630
 
631
+ #: includes/class-freemius.php:22061
632
  msgid "Thank you!"
633
  msgstr "Köszönjük!"
634
 
635
+ #: includes/class-freemius.php:22068
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
638
 
639
+ #: includes/class-freemius.php:22226
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
 
643
+ #: includes/class-freemius.php:22232
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
 
647
+ #: includes/class-freemius.php:22237
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s is the new owner of the account."
650
 
651
+ #: includes/class-freemius.php:22239
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Gratulálunk"
655
 
656
+ #: includes/class-freemius.php:22275
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
 
660
+ #: includes/class-freemius.php:22287
661
  msgid "Please provide your full name."
662
  msgstr "Kérlek add meg a teljes neved!"
663
 
664
+ #: includes/class-freemius.php:22292
665
  msgid "Your name was successfully updated."
666
  msgstr "A neved sikeresen frissítettük."
667
 
668
+ #: includes/class-freemius.php:22353
669
  msgid "You have successfully updated your %s."
670
  msgstr "You have successfully updated your %s."
671
 
672
+ #: includes/class-freemius.php:22412
673
  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."
674
  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."
675
 
676
+ #: includes/class-freemius.php:22415
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
+ #: includes/class-freemius.php:22513
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
 
684
+ #: includes/class-freemius.php:22514
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Figyelem"
688
 
689
+ #: includes/class-freemius.php:23090
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Üdv"
693
 
694
+ #: includes/class-freemius.php:23090
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
 
698
+ #: includes/class-freemius.php:23098
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "No commitment for %s days - cancel anytime!"
701
 
702
+ #: includes/class-freemius.php:23099
703
  msgid "No credit card required"
704
  msgstr "Bankkártya megadása nem kötelező"
705
 
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Start free trial"
710
 
711
+ #: includes/class-freemius.php:23183
712
  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!"
713
  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!"
714
 
715
+ #: includes/class-freemius.php:23192
716
  msgid "Learn more"
717
  msgstr "Bővebben"
718
 
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Licensz aktiválása"
725
 
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Licensz módosítása"
731
 
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Leiratkozás"
735
 
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Feliratkozás"
741
 
742
+ #: includes/class-freemius.php:23738
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
+ #: includes/class-freemius.php:23746
747
  msgid "Activate %s features"
748
  msgstr "Activate %s features"
749
 
750
+ #: includes/class-freemius.php:23759
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Please follow these steps to complete the upgrade"
753
 
754
+ #: includes/class-freemius.php:23763
755
  msgid "Download the latest %s version"
756
  msgstr "Download the latest %s version"
757
 
758
+ #: includes/class-freemius.php:23767
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Upload and activate the downloaded version"
761
 
762
+ #: includes/class-freemius.php:23769
763
  msgid "How to upload and activate?"
764
  msgstr "How to upload and activate?"
765
 
766
+ #: includes/class-freemius.php:23903
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
+ #: includes/class-freemius.php:24072
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Auto installation only works for opted-in users."
773
 
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
  msgid "Invalid module ID."
778
  msgstr "Invalid module ID."
779
 
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
  msgid "Premium version already active."
782
  msgstr "Premium version already active."
783
 
784
+ #: includes/class-freemius.php:24098
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "You do not have a valid license to access the premium version."
787
 
788
+ #: includes/class-freemius.php:24105
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
 
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
  msgid "Premium add-on version already installed."
794
  msgstr "Premium add-on version already installed."
795
 
796
+ #: includes/class-freemius.php:24473
797
  msgid "View paid features"
798
  msgstr "Fizetős funkciók megtekintése"
799
 
800
+ #: includes/class-freemius.php:24795
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
+ #: includes/class-freemius.php:24796
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
+ #: includes/class-freemius.php:24802
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
+ #: includes/class-freemius.php:24806
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
+ #: includes/class-freemius.php:24807
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
+ #: includes/class-freemius.php:24826
821
  msgid "%s and its add-ons"
822
  msgstr "%s and its add-ons"
823
 
824
+ #: includes/class-freemius.php:24835
825
  msgid "Products"
826
  msgstr "Termékek"
827
 
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
  msgid "Yes"
830
  msgstr "Igen"
831
 
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
835
 
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
  msgid "No"
838
  msgstr "Nem"
839
 
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
+ #: includes/class-freemius.php:24856
845
  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 :-)"
846
  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 :-)"
847
 
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
+ #: includes/class-freemius.php:25140
853
  msgid "License key is empty."
854
  msgstr "A licensz kulcs üres."
855
 
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
+ #: includes/class-fs-plugin-updater.php:1326
886
  msgid "Installing plugin: %s"
887
  msgstr "Bővítmény telepítése: %s"
888
 
889
+ #: includes/class-fs-plugin-updater.php:1367
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
892
 
893
+ #: includes/class-fs-plugin-updater.php:1549
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
 
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
  msgid "Install Update Now"
917
  msgstr "Frissítés telepítése most"
918
 
932
  msgid "Download Latest Free Version"
933
  msgstr "Download Latest Free Version"
934
 
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
944
  msgid "Activate this add-on"
945
  msgstr "Activate this add-on"
946
 
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
  msgid "Activate Free Version"
949
  msgstr "Ingyenes verzió aktiválása"
950
 
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Aktiválás"
1084
  msgid "Details"
1085
  msgstr "Részletek"
1086
 
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
1100
  msgid "Last Updated"
1101
  msgstr "Utolsó frissítés"
1102
 
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "%s ago"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Legfrissebb ingyenes verzió telepítve"
1213
 
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Downgrading your plan"
1219
 
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
 
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "%s csomag aktiválása"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Auto renews in %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Hátralévő idő: %s"
1274
 
1275
+ #: templates/account.php:117
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Licensz szinkronizálása"
1279
 
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Próbaidő törlése"
1283
 
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Csomag módosítása"
1287
 
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Váltás nagyobb csomagra"
1292
 
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Váltás kisebb csomagra"
1298
 
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Ingyenes"
1305
 
1306
+ #: templates/account.php126, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Csomag"
1312
 
1313
+ #: templates/account.php:127
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
+ #: templates/account.php:250
1318
  msgid "Free Trial"
1319
  msgstr "Ingyenes próbaidő"
1320
 
1321
+ #: templates/account.php:261
1322
  msgid "Account Details"
1323
  msgstr "Fiók információk"
1324
 
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
+ #: templates/account.php:270
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
+ #: templates/account.php:277
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
+ #: templates/account.php:288
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
 
1341
+ #: templates/account.php:290
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
 
1345
+ #: templates/account.php:293
1346
  msgid "Delete Account"
1347
  msgstr "Fiók törlése"
1348
 
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Licensz deaktiválása"
1353
 
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Are you sure you want to proceed?"
1357
 
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Előfizetés törlése"
1361
 
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Szinkronizálás"
1366
 
1367
+ #: templates/account.php372, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Név"
1370
 
1371
+ #: templates/account.php378, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Email"
1374
 
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "Felhasználó ID"
1378
 
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
+ #: templates/account.php:410
1388
  msgid "Site ID"
1389
  msgstr "Weboldal ID"
1390
 
1391
+ #: templates/account.php:413
1392
  msgid "No ID"
1393
  msgstr "Nincs ID"
1394
 
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Publikus kulcs"
1400
 
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Titkos kulcs"
1405
 
1406
+ #: templates/account.php:427
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Nincs titkos kulcs"
1410
 
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Próbaidő"
1415
 
1416
+ #: templates/account.php481, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Licensz kulcs"
1420
 
1421
+ #: templates/account.php:512
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
+ #: templates/account.php:518
1426
  msgid "not verified"
1427
  msgstr "nem ellenőrzött"
1428
 
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Lejárt"
1432
 
1433
+ #: templates/account.php:587
1434
  msgid "Premium version"
1435
  msgstr "Prémium verzió"
1436
 
1437
+ #: templates/account.php:589
1438
  msgid "Free version"
1439
  msgstr "Ingyenes verzió"
1440
 
1441
+ #: templates/account.php:601
1442
  msgid "Verify Email"
1443
  msgstr "Email ellenőrzése"
1444
 
1445
+ #: templates/account.php:615
1446
  msgid "Download %s Version"
1447
  msgstr "%s verzió letöltése"
1448
 
1449
+ #: templates/account.php:631
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
+ #: templates/account.php649, templates/account.php892,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Mutasd"
1459
 
1460
+ #: templates/account.php:664
1461
  msgid "What is your %s?"
1462
  msgstr "Mi a te %s?"
1463
 
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Szerkesztés"
1468
 
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
+ #: templates/account.php:700
1474
  msgid "Sites"
1475
  msgstr "Weboldalak"
1476
 
1477
+ #: templates/account.php:713
1478
  msgid "Search by address"
1479
  msgstr "Keresés cím alapján"
1480
 
1481
+ #: templates/account.php722, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Cím"
1484
 
1485
+ #: templates/account.php:723
1486
  msgid "License"
1487
  msgstr "Licensz"
1488
 
1489
+ #: templates/account.php:724
1490
  msgid "Plan"
1491
  msgstr "Csomag"
1492
 
1493
+ #: templates/account.php:757
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Licensz"
1497
 
1498
+ #: templates/account.php:886
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Elrejt"
1502
 
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Processing"
1506
 
1507
+ #: templates/account.php:911
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
+ #: templates/account.php:969
1512
  msgid "Cancelling %s"
1513
  msgstr "Cancelling %s"
1514
 
1515
+ #: templates/account.php969, templates/account.php986,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "próbaidő"
1520
 
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Cancelling %s..."
1524
 
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "előfizetés"
1529
 
1530
+ #: templates/account.php:1001
1531
  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?"
1532
  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?"
1533
 
1534
+ #: templates/account.php:1075
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
+ #: templates/account.php:1076
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Licensz elfogadása és aktiválása"
1619
 
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
 
1624
+ #: templates/connect.php:191
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
 
1628
+ #: templates/connect.php:192
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
 
1632
+ #: templates/connect.php:198
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
 
1636
+ #: templates/connect.php:199
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
 
1640
+ #: templates/connect.php:233
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "We're excited to introduce the Freemius network-level integration."
1643
 
1644
+ #: templates/connect.php:236
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
+ #: templates/connect.php:238
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
 
1652
+ #: templates/connect.php:240
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
+ #: templates/connect.php:245
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
+ #: templates/connect.php:247
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Licensz kulcs"
1668
 
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Nem találod a licensz kulcsod?"
1672
 
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Ugrás"
1678
 
1679
+ #: templates/connect.php:321
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
+ #: templates/connect.php:321
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
  msgid "Your Profile Overview"
1693
  msgstr "Fiókod áttekintése"
1694
 
1695
+ #: templates/connect.php:363
1696
  msgid "Name and email address"
1697
  msgstr "Név és email cím"
1698
 
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
  msgid "Your Site Overview"
1705
  msgstr "Weboldalad adatainak áttekintése"
1706
 
1707
+ #: templates/connect.php:372
1708
  msgid "Site URL, WP version, PHP info"
1709
  msgstr "Site URL, WP version, PHP info"
1710
 
1712
  msgid "Admin Notices"
1713
  msgstr "Admin értesítések"
1714
 
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
  msgid "Updates, announcements, marketing, no spam"
1717
  msgstr "Frissítések, közlemények, marketing, de semmi SPAM!"
1718
 
 
 
 
 
1719
  #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
 
1731
+ #: templates/connect.php:397
1732
  msgid "Newsletter"
1733
  msgstr "Hírlevél"
1734
 
1735
+ #: templates/connect.php:405
1736
  msgid "Plugins & Themes"
1737
  msgstr "Plugins & Themes"
1738
 
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
  msgid "Title, slug, version, and is active"
1749
  msgstr "Title, slug, version, and is active"
1750
 
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
 
1755
  #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
  msgid "What permissions are being granted?"
1765
  msgstr "Milyen jogosultágok lesznek engedélyezve?"
1766
 
1767
+ #: templates/connect.php:457
1768
  msgid "Don't have a license key?"
1769
  msgstr "Nincs még licensz kulcsod?"
1770
 
1771
+ #: templates/connect.php:460
1772
  msgid "Have a license key?"
1773
  msgstr "Van licensz kulcsod?"
1774
 
1775
+ #: templates/connect.php:468
1776
  msgid "Privacy Policy"
1777
  msgstr "Adatkezelési tájékoztató"
1778
 
1779
+ #: templates/connect.php:470
1780
  msgid "License Agreement"
1781
  msgstr "Licensz szerződés"
1782
 
1783
+ #: templates/connect.php:470
1784
  msgid "Terms of Service"
1785
  msgstr "Szolgáltatási feltételek"
1786
 
1787
+ #: templates/connect.php:866
1788
  msgctxt "as in the process of sending an email"
1789
  msgid "Sending email"
1790
  msgstr "Email küldése"
1791
 
1792
+ #: templates/connect.php:867
1793
  msgctxt "as activating plugin"
1794
  msgid "Activating"
1795
  msgstr "Aktiválás"
2392
  msgid "Update License"
2393
  msgstr "Licensz frissítése"
2394
 
2395
+ #: templates/forms/license-activation.php:41
2396
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2397
+ msgstr "A %1$s időközönként adatot küld a %2$s weboldalnak, hogy ellenőrizze a biztonsági és funkcionális frissítéseket, valamint ellenőrzi az érvényes licensz kulcsot."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
  msgid "Associate with the license owner's account."
2401
  msgstr "Associate with the license owner's account."
2402
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
@@ -12,7 +12,7 @@ msgstr ""
12
  "Project-Id-Version: WordPress SDK\n"
13
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
14
  "POT-Creation-Date: \n"
15
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
16
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
17
  "Language: it_IT\n"
18
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
@@ -26,835 +26,835 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
  "X-Poedit-SourceCharset: UTF-8\n"
28
 
29
- #: includes/class-freemius.php1912, templates/account.php:910
30
  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."
31
  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!"
32
 
33
- #: includes/class-freemius.php:1919
34
  msgid "Would you like to proceed with the update?"
35
  msgstr "Vuoi procedere con l'aggiornamento?"
36
 
37
- #: includes/class-freemius.php:2131
38
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
39
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
40
 
41
- #: includes/class-freemius.php:2133
42
  msgid "Error"
43
  msgstr "Errore"
44
 
45
- #: includes/class-freemius.php:2533
46
  msgid "I found a better %s"
47
  msgstr "Ho trovato un migliore %s"
48
 
49
- #: includes/class-freemius.php:2535
50
  msgid "What's the %s's name?"
51
  msgstr "Qual è il nome di %s?"
52
 
53
- #: includes/class-freemius.php:2541
54
  msgid "It's a temporary %s. I'm just debugging an issue."
55
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
56
 
57
- #: includes/class-freemius.php:2543
58
  msgid "Deactivation"
59
  msgstr "Disattivazione"
60
 
61
- #: includes/class-freemius.php:2544
62
  msgid "Theme Switch"
63
  msgstr "Cambio tema"
64
 
65
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
66
  #: templates/forms/user-change.php:29
67
  msgid "Other"
68
  msgstr "Altro"
69
 
70
- #: includes/class-freemius.php:2561
71
  msgid "I no longer need the %s"
72
  msgstr "Non ho più bisogno di %s"
73
 
74
- #: includes/class-freemius.php:2568
75
  msgid "I only needed the %s for a short period"
76
  msgstr "Ho avuto bisogno di %s per un breve periodo"
77
 
78
- #: includes/class-freemius.php:2574
79
  msgid "The %s broke my site"
80
  msgstr "%s ha rotto il mio sito"
81
 
82
- #: includes/class-freemius.php:2581
83
  msgid "The %s suddenly stopped working"
84
  msgstr "%s ha improvvisamente smesso di funzionare"
85
 
86
- #: includes/class-freemius.php:2591
87
  msgid "I can't pay for it anymore"
88
  msgstr "Non posso piú pagarlo"
89
 
90
- #: includes/class-freemius.php:2593
91
  msgid "What price would you feel comfortable paying?"
92
  msgstr "Che prezzo ritieni opportuno pagare?"
93
 
94
- #: includes/class-freemius.php:2599
95
  msgid "I don't like to share my information with you"
96
  msgstr "Non voglio condividere i miei dati con te"
97
 
98
- #: includes/class-freemius.php:2620
99
  msgid "The %s didn't work"
100
  msgstr "%s non funziona"
101
 
102
- #: includes/class-freemius.php:2630
103
  msgid "I couldn't understand how to make it work"
104
  msgstr "Non capisco come farlo funzionare"
105
 
106
- #: includes/class-freemius.php:2638
107
  msgid "The %s is great, but I need specific feature that you don't support"
108
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
109
 
110
- #: includes/class-freemius.php:2640
111
  msgid "What feature?"
112
  msgstr "Quale funzionalitá?"
113
 
114
- #: includes/class-freemius.php:2644
115
  msgid "The %s is not working"
116
  msgstr "%s non funziona"
117
 
118
- #: includes/class-freemius.php:2646
119
  msgid "Kindly share what didn't work so we can fix it for future users..."
120
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
121
 
122
- #: includes/class-freemius.php:2650
123
  msgid "It's not what I was looking for"
124
  msgstr "Non é quello che stavo cercando"
125
 
126
- #: includes/class-freemius.php:2652
127
  msgid "What you've been looking for?"
128
  msgstr "Che cosa stai cercando?"
129
 
130
- #: includes/class-freemius.php:2656
131
  msgid "The %s didn't work as expected"
132
  msgstr "%s non ha funzionato come mi aspettavo"
133
 
134
- #: includes/class-freemius.php:2658
135
  msgid "What did you expect?"
136
  msgstr "Che cosa ti aspettavi?"
137
 
138
- #: includes/class-freemius.php3513, templates/debug.php:20
139
  msgid "Freemius Debug"
140
  msgstr "Debug Freemius"
141
 
142
- #: includes/class-freemius.php:4265
143
  msgid "I don't know what is cURL or how to install it, help me!"
144
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
145
 
146
- #: includes/class-freemius.php:4267
147
  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."
148
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
149
 
150
- #: includes/class-freemius.php:4274
151
  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."
152
  msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
153
 
154
- #: includes/class-freemius.php:4379
155
  msgid "Yes - do your thing"
156
  msgstr "Sì - fai pure"
157
 
158
- #: includes/class-freemius.php:4384
159
  msgid "No - just deactivate"
160
  msgstr "No - disattiva e basta"
161
 
162
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
163
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
164
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
165
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
166
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
167
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
168
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
169
- #: includes/class-freemius.php22274, templates/add-ons.php:57
170
  msgctxt "exclamation"
171
  msgid "Oops"
172
  msgstr "Ops"
173
 
174
- #: includes/class-freemius.php:4498
175
  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."
176
  msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
177
 
178
- #: includes/class-freemius.php:4920
179
  msgctxt "addonX cannot run without pluginY"
180
  msgid "%s cannot run without %s."
181
  msgstr "%s non può funzionare senza %s."
182
 
183
- #: includes/class-freemius.php:4921
184
  msgctxt "addonX cannot run..."
185
  msgid "%s cannot run without the plugin."
186
  msgstr "%s non può funzionare senza il plugin."
187
 
188
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
189
- #: includes/class-freemius.php:21150
190
  msgid "Unexpected API error. Please contact the %s's author with the following error."
191
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
192
 
193
- #: includes/class-freemius.php:5848
194
  msgid "Premium %s version was successfully activated."
195
  msgstr "La versione 1%s Permium è stata attivata con successo."
196
 
197
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
198
  msgctxt ""
199
  msgid "W00t"
200
  msgstr "Forte"
201
 
202
- #: includes/class-freemius.php:5875
203
  msgid "You have a %s license."
204
  msgstr "Hai la licenza %s."
205
 
206
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
207
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
208
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
209
- #: includes/class-freemius.php:20900
210
  msgctxt "interjection expressing joy or exuberance"
211
  msgid "Yee-haw"
212
  msgstr "Evvai"
213
 
214
- #: includes/class-freemius.php:6165
215
  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."
216
  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."
217
 
218
- #: includes/class-freemius.php:6169
219
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
220
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
221
 
222
- #: includes/class-freemius.php6178, templates/add-ons.php186,
223
  #: templates/account/partials/addon.php:381
224
  msgid "More information about %s"
225
  msgstr "Ulteriori informazioni su %s"
226
 
227
- #: includes/class-freemius.php:6179
228
  msgid "Purchase License"
229
  msgstr "Acquista licenza"
230
 
231
- #: includes/class-freemius.php7118, templates/connect.php:171
232
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
233
  msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
234
 
235
- #: includes/class-freemius.php:7122
236
  msgid "start the trial"
237
  msgstr "Inizia il periodo di prova gratuito"
238
 
239
- #: includes/class-freemius.php7123, templates/connect.php:175
240
  msgid "complete the install"
241
  msgstr "completa l'installazione"
242
 
243
- #: includes/class-freemius.php:7241
244
  msgid "You are just one step away - %s"
245
  msgstr "Sei a un passo dalla fine - %s"
246
 
247
- #: includes/class-freemius.php:7244
248
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
249
  msgid "Complete \"%s\" Activation Now"
250
  msgstr "Completa l'attivazione di \"%s\" ora"
251
 
252
- #: includes/class-freemius.php:7322
253
  msgid "We made a few tweaks to the %s, %s"
254
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
255
 
256
- #: includes/class-freemius.php:7326
257
  msgid "Opt in to make \"%s\" better!"
258
  msgstr "Abilita \"%s\" per renderlo migliore!"
259
 
260
- #: includes/class-freemius.php:7761
261
  msgid "The upgrade of %s was successfully completed."
262
  msgstr "L'aggiornamento di %s è stato completato con successo."
263
 
264
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
265
- #: includes/class-fs-plugin-updater.php1294,
266
- #: includes/class-fs-plugin-updater.php1301,
267
  #: templates/auto-installation.php:32
268
  msgid "Add-On"
269
  msgstr "Add-on"
270
 
271
- #: includes/class-freemius.php10245, templates/account.php392,
272
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
273
  msgid "Plugin"
274
  msgstr "Plugin"
275
 
276
- #: includes/class-freemius.php10246, templates/account.php393,
277
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
278
  #: templates/forms/deactivation/form.php:71
279
  msgid "Theme"
280
  msgstr "Tema"
281
 
282
- #: includes/class-freemius.php:13176
283
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
284
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
285
 
286
- #: includes/class-freemius.php:13190
287
  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."
288
  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."
289
 
290
- #: includes/class-freemius.php:13195
291
  msgid "User Dashboard"
292
  msgstr "User Dashboard"
293
 
294
- #: includes/class-freemius.php:13196
295
  msgid "revert it now"
296
  msgstr "revert it now"
297
 
298
- #: includes/class-freemius.php:13255
299
  msgid "An unknown error has occurred while trying to set the user's beta mode."
300
  msgstr "Un errore sconosciuto è avvenuto durante l'attivazione della modalità beta."
301
 
302
- #: includes/class-freemius.php:13328
303
  msgid "Invalid new user ID or email address."
304
  msgstr "Invalid new user ID or email address."
305
 
306
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
307
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
308
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
309
 
310
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
311
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
312
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
313
 
314
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
315
  msgid "Change Ownership"
316
  msgstr "Cambia Proprietario"
317
 
318
- #: includes/class-freemius.php:13942
319
  msgid "Invalid site details collection."
320
  msgstr "Raccolta dati siti non valida."
321
 
322
- #: includes/class-freemius.php:14062
323
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
324
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
325
 
326
- #: includes/class-freemius.php:14064
327
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
328
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
329
 
330
- #: includes/class-freemius.php:14338
331
  msgid "Account is pending activation."
332
  msgstr "Account in attesa di attivazione."
333
 
334
- #: includes/class-freemius.php14450,
335
  #: templates/forms/premium-versions-upgrade-handler.php:47
336
  msgid "Buy a license now"
337
  msgstr "Compra una licenza ora"
338
 
339
- #: includes/class-freemius.php14462,
340
  #: templates/forms/premium-versions-upgrade-handler.php:46
341
  msgid "Renew your license now"
342
  msgstr "Rinnova la tua licenza ora"
343
 
344
- #: includes/class-freemius.php:14466
345
  msgid "%s to access version %s security & feature updates, and support."
346
  msgstr "%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove funzionalità e supporto."
347
 
348
- #: includes/class-freemius.php:16907
349
  msgid "%s activation was successfully completed."
350
  msgstr "%s è stato attivato con successo."
351
 
352
- #: includes/class-freemius.php:16921
353
  msgid "Your account was successfully activated with the %s plan."
354
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
355
 
356
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
357
  msgid "Your trial has been successfully started."
358
  msgstr "La versione di prova è stata avviata correttamente."
359
 
360
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
361
- #: includes/class-freemius.php:17804
362
  msgid "Couldn't activate %s."
363
  msgstr "Non é stato possibile attivare %s."
364
 
365
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
366
- #: includes/class-freemius.php:17805
367
  msgid "Please contact us with the following message:"
368
  msgstr "Contattaci con il seguente messaggio:"
369
 
370
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
371
  msgid "An unknown error has occurred."
372
  msgstr "Un errore sconosciuto è avvenuto."
373
 
374
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
375
  msgid "Upgrade"
376
  msgstr "Aggiornamento"
377
 
378
- #: includes/class-freemius.php:18168
379
  msgid "Start Trial"
380
  msgstr "Inizia il periodo di prova gratuito"
381
 
382
- #: includes/class-freemius.php:18170
383
  msgid "Pricing"
384
  msgstr "Prezzi"
385
 
386
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
387
  msgid "Affiliation"
388
  msgstr "Affiliazione"
389
 
390
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
391
- #: templates/account.php240, templates/debug.php:324
392
  msgid "Account"
393
  msgstr "Account"
394
 
395
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
396
  #: includes/customizer/class-fs-customizer-support-section.php:60
397
  msgid "Contact Us"
398
  msgstr "Contattaci"
399
 
400
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
401
- #: includes/class-freemius.php23324, templates/account.php119,
402
  #: templates/account/partials/addon.php:44
403
  msgid "Add-Ons"
404
  msgstr "Addon"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow left icon"
408
  msgid "&#x2190;"
409
  msgstr "&#x2190;"
410
 
411
- #: includes/class-freemius.php:18345
412
  msgctxt "ASCII arrow right icon"
413
  msgid "&#x27a4;"
414
  msgstr "&#x27a4;"
415
 
416
- #: includes/class-freemius.php18347, templates/pricing.php:109
417
  msgctxt "noun"
418
  msgid "Pricing"
419
  msgstr "Prezzi"
420
 
421
- #: includes/class-freemius.php18560,
422
  #: includes/customizer/class-fs-customizer-support-section.php:67
423
  msgid "Support Forum"
424
  msgstr "Forum di supporto"
425
 
426
- #: includes/class-freemius.php:19534
427
  msgid "Your email has been successfully verified - you are AWESOME!"
428
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
429
 
430
- #: includes/class-freemius.php:19535
431
  msgctxt "a positive response"
432
  msgid "Right on"
433
  msgstr "Sì"
434
 
435
- #: includes/class-freemius.php:20041
436
  msgid "seems like the key you entered doesn't match our records."
437
  msgstr "sembra che la chiave che hai inserito non risulti nei nostri registri."
438
 
439
- #: includes/class-freemius.php:20065
440
  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."
441
  msgstr "La modalità Debug è stata attivata con successo e sarà disattivata automaticamente in 60 minuti. Puoi disattivarla prima cliccando sul link \"Ferma Debug\"."
442
 
443
- #: includes/class-freemius.php:20300
444
  msgid "Your %s Add-on plan was successfully upgraded."
445
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
446
 
447
- #: includes/class-freemius.php:20302
448
  msgid "%s Add-on was successfully purchased."
449
  msgstr "L' add-on %s è stato acquistato con successo."
450
 
451
- #: includes/class-freemius.php:20305
452
  msgid "Download the latest version"
453
  msgstr "Scarica l'ultima versione"
454
 
455
- #: includes/class-freemius.php:20391
456
  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"
457
  msgstr "Il tuo server sta bloccando l'accesso alle API di Freemius, sono fondamentali per la sincronizzazione di%1$s. Chiedi al tuo amministratore di mettere in whitelist %2$s."
458
 
459
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
460
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
461
  msgid "Error received from the server:"
462
  msgstr "Errore ricevuto dal server:"
463
 
464
- #: includes/class-freemius.php:20407
465
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
466
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
467
 
468
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
469
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
470
  msgctxt ""
471
  msgid "Hmm"
472
  msgstr "Uhm"
473
 
474
- #: includes/class-freemius.php:20634
475
  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."
476
  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."
477
 
478
- #: includes/class-freemius.php20635, templates/account.php121,
479
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
480
  msgctxt "trial period"
481
  msgid "Trial"
482
  msgstr "Prova gratuita"
483
 
484
- #: includes/class-freemius.php:20640
485
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
486
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
487
 
488
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
489
  msgid "Please contact us here"
490
  msgstr "Contattaci qui"
491
 
492
- #: includes/class-freemius.php:20655
493
  msgid "Your plan was successfully activated."
494
  msgstr "Il tuo piano è stato attivato con successo."
495
 
496
- #: includes/class-freemius.php:20656
497
  msgid "Your plan was successfully upgraded."
498
  msgstr "Il piano è stato aggiornato con successo."
499
 
500
- #: includes/class-freemius.php:20673
501
  msgid "Your plan was successfully changed to %s."
502
  msgstr "Il piano è stato cambiato con successo a %s."
503
 
504
- #: includes/class-freemius.php:20689
505
  msgid "Your license has expired. You can still continue using the free %s forever."
506
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
507
 
508
- #: includes/class-freemius.php:20691
509
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
510
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
511
 
512
- #: includes/class-freemius.php:20699
513
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
514
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
515
 
516
- #: includes/class-freemius.php:20712
517
  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."
518
  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."
519
 
520
- #: includes/class-freemius.php:20738
521
  msgid "Your free trial has expired. You can still continue using all our free features."
522
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
523
 
524
- #: includes/class-freemius.php:20740
525
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
526
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
527
 
528
- #: includes/class-freemius.php:20855
529
  msgid "It looks like the license could not be activated."
530
  msgstr "Sembra che la licenza non possa essere attivata."
531
 
532
- #: includes/class-freemius.php:20897
533
  msgid "Your license was successfully activated."
534
  msgstr "La tua licenza è stata attivata correttamente."
535
 
536
- #: includes/class-freemius.php:20923
537
  msgid "It looks like your site currently doesn't have an active license."
538
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
539
 
540
- #: includes/class-freemius.php:20947
541
  msgid "It looks like the license deactivation failed."
542
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
543
 
544
- #: includes/class-freemius.php:20976
545
  msgid "Your %s license was successfully deactivated."
546
  msgstr "Your %s license was successfully deactivated."
547
 
548
- #: includes/class-freemius.php:20977
549
  msgid "Your license was successfully deactivated, you are back to the %s plan."
550
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
551
 
552
- #: includes/class-freemius.php:20980
553
  msgid "O.K"
554
  msgstr "OK"
555
 
556
- #: includes/class-freemius.php:21033
557
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
558
  msgstr "Sembra che stai avendo dei problemi temporanei con la cancellazione della sottoscrizione. Prova nuovamente tra pochi minuti."
559
 
560
- #: includes/class-freemius.php:21042
561
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
562
  msgstr "La tua sottoscrizione è stata cancellata con successo. La licenza del piano %sscadrà in %s."
563
 
564
- #: includes/class-freemius.php:21084
565
  msgid "You are already running the %s in a trial mode."
566
  msgstr "Stai già usando %s in modalità prova."
567
 
568
- #: includes/class-freemius.php:21095
569
  msgid "You already utilized a trial before."
570
  msgstr "Hai già utilizzato una prova gratuita in passato."
571
 
572
- #: includes/class-freemius.php:21109
573
  msgid "Plan %s do not exist, therefore, can't start a trial."
574
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
575
 
576
- #: includes/class-freemius.php:21120
577
  msgid "Plan %s does not support a trial period."
578
  msgstr "Il piano %s non supporta il periodo di prova."
579
 
580
- #: includes/class-freemius.php:21131
581
  msgid "None of the %s's plans supports a trial period."
582
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
583
 
584
- #: includes/class-freemius.php:21181
585
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
586
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
587
 
588
- #: includes/class-freemius.php:21217
589
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
590
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
591
 
592
- #: includes/class-freemius.php:21236
593
  msgid "Your %s free trial was successfully cancelled."
594
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
595
 
596
- #: includes/class-freemius.php:21552
597
  msgid "Version %s was released."
598
  msgstr "La versione %s é stata rilasciata."
599
 
600
- #: includes/class-freemius.php:21552
601
  msgid "Please download %s."
602
  msgstr "Scarica %s."
603
 
604
- #: includes/class-freemius.php:21559
605
  msgid "the latest %s version here"
606
  msgstr "l'ultima versione %s é quì"
607
 
608
- #: includes/class-freemius.php:21564
609
  msgid "New"
610
  msgstr "Nuovo"
611
 
612
- #: includes/class-freemius.php:21569
613
  msgid "Seems like you got the latest release."
614
  msgstr "Sembra che tu abbia la versione più recente."
615
 
616
- #: includes/class-freemius.php:21570
617
  msgid "You are all good!"
618
  msgstr "Sei fantastico!"
619
 
620
- #: includes/class-freemius.php:21873
621
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
622
  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."
623
 
624
- #: includes/class-freemius.php:22013
625
  msgid "Site successfully opted in."
626
  msgstr "Sito accettato con successo."
627
 
628
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
629
  msgid "Awesome"
630
  msgstr "Fantastico"
631
 
632
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
633
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
634
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
635
 
636
- #: includes/class-freemius.php:22031
637
  msgid "Thank you!"
638
  msgstr "Grazie!"
639
 
640
- #: includes/class-freemius.php:22038
641
  msgid "We will no longer be sending any usage data of %s on %s to %s."
642
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
643
 
644
- #: includes/class-freemius.php:22196
645
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
646
  msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
647
 
648
- #: includes/class-freemius.php:22202
649
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
650
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
651
 
652
- #: includes/class-freemius.php:22207
653
  msgid "%s is the new owner of the account."
654
  msgstr "%s è il nuovo proprietario dell'account."
655
 
656
- #: includes/class-freemius.php:22209
657
  msgctxt "as congratulations"
658
  msgid "Congrats"
659
  msgstr "Congratulazioni"
660
 
661
- #: includes/class-freemius.php:22245
662
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
663
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
664
 
665
- #: includes/class-freemius.php:22257
666
  msgid "Please provide your full name."
667
  msgstr "Per favore inserisci il tuo nome completo."
668
 
669
- #: includes/class-freemius.php:22262
670
  msgid "Your name was successfully updated."
671
  msgstr "Il tuo nome è stato aggiornato correttamente."
672
 
673
- #: includes/class-freemius.php:22323
674
  msgid "You have successfully updated your %s."
675
  msgstr "Hai aggiornato con successo il tuo %s."
676
 
677
- #: includes/class-freemius.php:22382
678
  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."
679
  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."
680
 
681
- #: includes/class-freemius.php:22385
682
  msgid "Click here"
683
  msgstr "Click here"
684
 
685
- #: includes/class-freemius.php:22483
686
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
687
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
688
 
689
- #: includes/class-freemius.php:22484
690
  msgctxt "advance notice of something that will need attention."
691
  msgid "Heads up"
692
  msgstr "Attenzione"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgctxt "exclamation"
696
  msgid "Hey"
697
  msgstr "Hey"
698
 
699
- #: includes/class-freemius.php:23060
700
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
701
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
702
 
703
- #: includes/class-freemius.php:23068
704
  msgid "No commitment for %s days - cancel anytime!"
705
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
706
 
707
- #: includes/class-freemius.php:23069
708
  msgid "No credit card required"
709
  msgstr "Nessuna carta di credito richiesta"
710
 
711
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
712
  msgctxt "call to action"
713
  msgid "Start free trial"
714
  msgstr "Inizia il periodo di prova gratuito"
715
 
716
- #: includes/class-freemius.php:23153
717
  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!"
718
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
719
 
720
- #: includes/class-freemius.php:23162
721
  msgid "Learn more"
722
  msgstr "Scopri altro"
723
 
724
- #: includes/class-freemius.php23348, templates/account.php556,
725
- #: templates/account.php706, templates/connect.php179,
726
- #: templates/connect.php456, templates/forms/license-activation.php27,
727
  #: templates/account/partials/addon.php:321
728
  msgid "Activate License"
729
  msgstr "Attiva licenza"
730
 
731
- #: includes/class-freemius.php23349, templates/account.php650,
732
- #: templates/account.php705, templates/account/partials/addon.php322,
733
  #: templates/account/partials/site.php:271
734
  msgid "Change License"
735
  msgstr "Cambia licenza"
736
 
737
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
738
  msgid "Opt Out"
739
  msgstr "Cancella iscrizione"
740
 
741
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
742
  #: templates/account/partials/site.php49,
743
  #: templates/account/partials/site.php:169
744
  msgid "Opt In"
745
  msgstr "Iscriviti"
746
 
747
- #: includes/class-freemius.php:23700
748
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
749
  msgstr "La versione a pagamento di %1$sè già installata. Attiva questione versione per iniziare ad usare le funzionalità di %2$s.%3$s"
750
 
751
- #: includes/class-freemius.php:23708
752
  msgid "Activate %s features"
753
  msgstr "Attiva le funzionalità di %s"
754
 
755
- #: includes/class-freemius.php:23721
756
  msgid "Please follow these steps to complete the upgrade"
757
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
758
 
759
- #: includes/class-freemius.php:23725
760
  msgid "Download the latest %s version"
761
  msgstr "Scarica l'ultima versione di %s"
762
 
763
- #: includes/class-freemius.php:23729
764
  msgid "Upload and activate the downloaded version"
765
  msgstr "Carica e attiva la versione scaricata"
766
 
767
- #: includes/class-freemius.php:23731
768
  msgid "How to upload and activate?"
769
  msgstr "Come faccio a caricare ed attivare?"
770
 
771
- #: includes/class-freemius.php:23865
772
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
773
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
774
 
775
- #: includes/class-freemius.php:24034
776
  msgid "Auto installation only works for opted-in users."
777
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
778
 
779
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
780
- #: includes/class-fs-plugin-updater.php1273,
781
- #: includes/class-fs-plugin-updater.php:1287
782
  msgid "Invalid module ID."
783
  msgstr "ID modulo non valida."
784
 
785
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
786
  msgid "Premium version already active."
787
  msgstr "Versione Premium già attiva."
788
 
789
- #: includes/class-freemius.php:24060
790
  msgid "You do not have a valid license to access the premium version."
791
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
792
 
793
- #: includes/class-freemius.php:24067
794
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
795
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
796
 
797
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
798
  msgid "Premium add-on version already installed."
799
  msgstr "Versione Premium dell'add-on già installata."
800
 
801
- #: includes/class-freemius.php:24435
802
  msgid "View paid features"
803
  msgstr "Vedi funzionalità a pagamento"
804
 
805
- #: includes/class-freemius.php:24757
806
  msgid "Thank you so much for using %s and its add-ons!"
807
  msgstr "Grazie per utilizzare %se i suoi addon!"
808
 
809
- #: includes/class-freemius.php:24758
810
  msgid "Thank you so much for using %s!"
811
  msgstr "Grazie per utilizzare %s!"
812
 
813
- #: includes/class-freemius.php:24764
814
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
815
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
816
 
817
- #: includes/class-freemius.php:24768
818
  msgid "Thank you so much for using our products!"
819
  msgstr "Grazie per utilizzare i nostri prodotti!"
820
 
821
- #: includes/class-freemius.php:24769
822
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
823
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
824
 
825
- #: includes/class-freemius.php:24788
826
  msgid "%s and its add-ons"
827
  msgstr "%se i suoi addon"
828
 
829
- #: includes/class-freemius.php:24797
830
  msgid "Products"
831
  msgstr "Prodotti"
832
 
833
- #: includes/class-freemius.php24804, templates/connect.php:280
834
  msgid "Yes"
835
  msgstr "Si"
836
 
837
- #: includes/class-freemius.php24805, templates/connect.php:281
838
  msgid "send me security & feature updates, educational content and offers."
839
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
840
 
841
- #: includes/class-freemius.php24806, templates/connect.php:286
842
  msgid "No"
843
  msgstr "No"
844
 
845
- #: includes/class-freemius.php24808, templates/connect.php:288
846
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
847
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
848
 
849
- #: includes/class-freemius.php:24818
850
  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 :-)"
851
  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."
852
 
853
- #: includes/class-freemius.php24820, templates/connect.php:295
854
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
855
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
856
 
857
- #: includes/class-freemius.php:25102
858
  msgid "License key is empty."
859
  msgstr "La chiave licenza è vuota."
860
 
@@ -887,15 +887,15 @@ msgstr "nuova versione"
887
  msgid "Important Upgrade Notice:"
888
  msgstr "Avviso Importante di aggiornamento:"
889
 
890
- #: includes/class-fs-plugin-updater.php:1338
891
  msgid "Installing plugin: %s"
892
  msgstr "Installazione plugin: %s"
893
 
894
- #: includes/class-fs-plugin-updater.php:1379
895
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
896
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
897
 
898
- #: includes/class-fs-plugin-updater.php:1561
899
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
900
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
901
 
@@ -917,7 +917,7 @@ msgstr "Inizia la mia %s"
917
  msgid "Install Free Version Update Now"
918
  msgstr "Installa l'ultima versione gratuita"
919
 
920
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
921
  msgid "Install Update Now"
922
  msgstr "Installa l'aggiornamento ora"
923
 
@@ -937,7 +937,7 @@ msgctxt "as download latest version"
937
  msgid "Download Latest Free Version"
938
  msgstr "Scarica l'ultima versione gratuita"
939
 
940
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
941
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
942
  msgctxt "as download latest version"
943
  msgid "Download Latest"
@@ -949,11 +949,11 @@ msgstr "Scarica l'ultima versione"
949
  msgid "Activate this add-on"
950
  msgstr "Attivare questo addon"
951
 
952
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
953
  msgid "Activate Free Version"
954
  msgstr "Attiva versione gratuita"
955
 
956
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
957
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
958
  msgid "Activate"
959
  msgstr "Attiva"
@@ -1089,7 +1089,7 @@ msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1089
  msgid "Details"
1090
  msgstr "Dettagli"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1093
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1094
  #: templates/account/partials/addon.php:36
1095
  msgctxt "product version"
@@ -1105,7 +1105,7 @@ msgstr "Autore"
1105
  msgid "Last Updated"
1106
  msgstr "Ultimo aggiornamento"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1109
  msgctxt "x-ago"
1110
  msgid "%s ago"
1111
  msgstr "%s fa"
@@ -1216,13 +1216,13 @@ msgstr "Versione più recente installata"
1216
  msgid "Latest Free Version Installed"
1217
  msgstr "Ultima versione gratuita installata"
1218
 
1219
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1220
  #: templates/account/partials/addon.php26,
1221
  #: templates/account/partials/site.php:311
1222
  msgid "Downgrading your plan"
1223
  msgstr "Torna al piano precedente"
1224
 
1225
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1226
  #: templates/account/partials/addon.php27,
1227
  #: templates/account/partials/site.php:312
1228
  msgid "Cancelling the subscription"
@@ -1230,317 +1230,317 @@ msgstr "Cancella la sottoscrizione"
1230
 
1231
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1232
  #. subscription'
1233
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1234
  #: templates/account/partials/site.php:314
1235
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1236
  msgstr "%1$sfermerà tutti i pagamenti ricorrenti futuri e il tuo piano %2$sche scadrà in %3$s."
1237
 
1238
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1239
  #: templates/account/partials/addon.php30,
1240
  #: templates/account/partials/site.php:315
1241
  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."
1242
  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."
1243
 
1244
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1245
  #: templates/account/partials/addon.php:31
1246
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1247
  msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
1248
 
1249
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1250
  #: templates/account/partials/addon.php32,
1251
  #: templates/account/partials/site.php:316
1252
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1253
  msgstr "Puoi continuare ad utilizzare le funzionalità%sma non avrai accesso agli aggiornamenti di sicurezza, nuove funzionalità o supporto."
1254
 
1255
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1256
  #: templates/account/partials/addon.php33,
1257
  #: templates/account/partials/site.php:317
1258
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1259
  msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
1260
 
1261
  #. translators: %s: Plan title (e.g. "Professional")
1262
- #: templates/account.php109,
1263
  #: templates/account/partials/activate-license-button.php31,
1264
  #: templates/account/partials/addon.php:35
1265
  msgid "Activate %s Plan"
1266
  msgstr "Attivare il piano %s"
1267
 
1268
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1269
- #: templates/account.php112, templates/account/partials/addon.php38,
1270
  #: templates/account/partials/site.php:291
1271
  msgid "Auto renews in %s"
1272
  msgstr "Rinnovo automatico in %s"
1273
 
1274
  #. translators: %s: Time period (e.g. Expires in "2 months")
1275
- #: templates/account.php114, templates/account/partials/addon.php40,
1276
  #: templates/account/partials/site.php:293
1277
  msgid "Expires in %s"
1278
  msgstr "Scade in %s"
1279
 
1280
- #: templates/account.php:115
1281
  msgctxt "as synchronize license"
1282
  msgid "Sync License"
1283
  msgstr "Sincronizza la licenza"
1284
 
1285
- #: templates/account.php116, templates/account/partials/addon.php:41
1286
  msgid "Cancel Trial"
1287
  msgstr "Annulla prova gratuita"
1288
 
1289
- #: templates/account.php117, templates/account/partials/addon.php:42
1290
  msgid "Change Plan"
1291
  msgstr "Cambia piano"
1292
 
1293
- #: templates/account.php118, templates/account/partials/addon.php:43
1294
  msgctxt "verb"
1295
  msgid "Upgrade"
1296
  msgstr "Aggiornamento"
1297
 
1298
- #: templates/account.php120, templates/account/partials/addon.php45,
1299
  #: templates/account/partials/site.php:318
1300
  msgctxt "verb"
1301
  msgid "Downgrade"
1302
  msgstr "Downgrade"
1303
 
1304
- #: templates/account.php122, templates/add-ons.php246,
1305
  #: templates/plugin-info/features.php72,
1306
  #: templates/account/partials/addon.php47,
1307
  #: templates/account/partials/site.php:33
1308
  msgid "Free"
1309
  msgstr "Gratuito"
1310
 
1311
- #: templates/account.php124, templates/debug.php371,
1312
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1313
  #: templates/account/partials/addon.php:49
1314
  msgctxt "as product pricing plan"
1315
  msgid "Plan"
1316
  msgstr "Piano"
1317
 
1318
- #: templates/account.php:125
1319
  msgid "Bundle Plan"
1320
  msgstr "Piano Bundle"
1321
 
1322
- #: templates/account.php:248
1323
  msgid "Free Trial"
1324
  msgstr "Prova gratuita"
1325
 
1326
- #: templates/account.php:259
1327
  msgid "Account Details"
1328
  msgstr "Dettagli dell'account"
1329
 
1330
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1331
  msgid "Start Debug"
1332
  msgstr "Avvia Debug"
1333
 
1334
- #: templates/account.php:268
1335
  msgid "Stop Debug"
1336
  msgstr "Ferma Debug"
1337
 
1338
- #: templates/account.php:275
1339
  msgid "Billing & Invoices"
1340
  msgstr "Ricevute e Fatture"
1341
 
1342
- #: templates/account.php:286
1343
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1344
  msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
1345
 
1346
- #: templates/account.php:288
1347
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1348
  msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1349
 
1350
- #: templates/account.php:291
1351
  msgid "Delete Account"
1352
  msgstr "Elimina Account"
1353
 
1354
- #: templates/account.php303, templates/account/partials/addon.php231,
1355
  #: templates/account/partials/deactivate-license-button.php:35
1356
  msgid "Deactivate License"
1357
  msgstr "Disattiva licenza"
1358
 
1359
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1360
  msgid "Are you sure you want to proceed?"
1361
  msgstr "Sei sicuro di voler procedere?"
1362
 
1363
- #: templates/account.php326, templates/account/partials/addon.php:255
1364
  msgid "Cancel Subscription"
1365
  msgstr "Annulla sottoscrizione"
1366
 
1367
- #: templates/account.php355, templates/account/partials/addon.php:340
1368
  msgctxt "as synchronize"
1369
  msgid "Sync"
1370
  msgstr "Sincronizza"
1371
 
1372
- #: templates/account.php370, templates/debug.php:505
1373
  msgid "Name"
1374
  msgstr "Nome"
1375
 
1376
- #: templates/account.php376, templates/debug.php:506
1377
  msgid "Email"
1378
  msgstr "Email"
1379
 
1380
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1381
  msgid "User ID"
1382
  msgstr "ID utente"
1383
 
1384
- #: templates/account.php401, templates/account.php719,
1385
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1386
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1387
  #: templates/debug.php632, templates/account/payments.php35,
1388
  #: templates/debug/logger.php:21
1389
  msgid "ID"
1390
  msgstr "ID"
1391
 
1392
- #: templates/account.php:408
1393
  msgid "Site ID"
1394
  msgstr "ID del sito"
1395
 
1396
- #: templates/account.php:411
1397
  msgid "No ID"
1398
  msgstr "Nessun ID"
1399
 
1400
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1401
  #: templates/debug.php456, templates/debug.php508,
1402
  #: templates/account/partials/site.php:227
1403
  msgid "Public Key"
1404
  msgstr "Chiave pubblica"
1405
 
1406
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1407
  #: templates/debug.php509, templates/account/partials/site.php:239
1408
  msgid "Secret Key"
1409
  msgstr "Chiave segreta"
1410
 
1411
- #: templates/account.php:425
1412
  msgctxt "as secret encryption key missing"
1413
  msgid "No Secret"
1414
  msgstr "Nessuna chiave"
1415
 
1416
- #: templates/account.php452, templates/account/partials/site.php120,
1417
  #: templates/account/partials/site.php:122
1418
  msgid "Trial"
1419
  msgstr "Prova gratuita"
1420
 
1421
- #: templates/account.php479, templates/debug.php561,
1422
  #: templates/account/partials/site.php:260
1423
  msgid "License Key"
1424
  msgstr "Chiave della licenza"
1425
 
1426
- #: templates/account.php:510
1427
  msgid "Join the Beta program"
1428
  msgstr "Entra nel programma Beta"
1429
 
1430
- #: templates/account.php:516
1431
  msgid "not verified"
1432
  msgstr "non verificato"
1433
 
1434
- #: templates/account.php525, templates/account/partials/addon.php:190
1435
  msgid "Expired"
1436
  msgstr "Scaduto"
1437
 
1438
- #: templates/account.php:585
1439
  msgid "Premium version"
1440
  msgstr "Versione premium"
1441
 
1442
- #: templates/account.php:587
1443
  msgid "Free version"
1444
  msgstr "Versione gratuita"
1445
 
1446
- #: templates/account.php:599
1447
  msgid "Verify Email"
1448
  msgstr "Verifica email"
1449
 
1450
- #: templates/account.php:613
1451
  msgid "Download %s Version"
1452
  msgstr "Scarica la versione %s"
1453
 
1454
- #: templates/account.php:629
1455
  msgid "Download Paid Version"
1456
  msgstr "Download Paid Version"
1457
 
1458
- #: templates/account.php647, templates/account.php890,
1459
  #: templates/account/partials/site.php248,
1460
  #: templates/account/partials/site.php:270
1461
  msgctxt "verb"
1462
  msgid "Show"
1463
  msgstr "Mostra"
1464
 
1465
- #: templates/account.php:662
1466
  msgid "What is your %s?"
1467
  msgstr "Qual è il tuo %s?"
1468
 
1469
- #: templates/account.php670, templates/account/billing.php:21
1470
  msgctxt "verb"
1471
  msgid "Edit"
1472
  msgstr "Modifica"
1473
 
1474
- #: templates/account.php674, templates/forms/user-change.php:27
1475
  msgid "Change User"
1476
  msgstr "Change User"
1477
 
1478
- #: templates/account.php:698
1479
  msgid "Sites"
1480
  msgstr "Siti"
1481
 
1482
- #: templates/account.php:711
1483
  msgid "Search by address"
1484
  msgstr "Cerca per indirizzo"
1485
 
1486
- #: templates/account.php720, templates/debug.php:366
1487
  msgid "Address"
1488
  msgstr "Indirizzo"
1489
 
1490
- #: templates/account.php:721
1491
  msgid "License"
1492
  msgstr "Licenza"
1493
 
1494
- #: templates/account.php:722
1495
  msgid "Plan"
1496
  msgstr "Piano"
1497
 
1498
- #: templates/account.php:755
1499
  msgctxt "as software license"
1500
  msgid "License"
1501
  msgstr "Licenza"
1502
 
1503
- #: templates/account.php:884
1504
  msgctxt "verb"
1505
  msgid "Hide"
1506
  msgstr "Nascondi"
1507
 
1508
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1509
  msgid "Processing"
1510
  msgstr "Elaborazione"
1511
 
1512
- #: templates/account.php:909
1513
  msgid "Get updates for bleeding edge Beta versions of %s."
1514
  msgstr "Ottieni gli aggiornamenti per le nuove versioni Beta di %s."
1515
 
1516
- #: templates/account.php:967
1517
  msgid "Cancelling %s"
1518
  msgstr "Cancellazione di %s"
1519
 
1520
- #: templates/account.php967, templates/account.php984,
1521
  #: templates/forms/subscription-cancellation.php27,
1522
  #: templates/forms/deactivation/form.php:133
1523
  msgid "trial"
1524
  msgstr "prova"
1525
 
1526
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1527
  msgid "Cancelling %s..."
1528
  msgstr "Cancellazione %s..."
1529
 
1530
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1531
  #: templates/forms/deactivation/form.php:134
1532
  msgid "subscription"
1533
  msgstr "sottoscrizione"
1534
 
1535
- #: templates/account.php:999
1536
  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?"
1537
  msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1538
 
1539
- #: templates/account.php:1073
1540
  msgid "Disabling white-label mode"
1541
  msgstr "Disabling white-label mode"
1542
 
1543
- #: templates/account.php:1074
1544
  msgid "Enabling white-label mode"
1545
  msgstr "Enabling white-label mode"
1546
 
@@ -1566,7 +1566,7 @@ msgctxt "installed add-on"
1566
  msgid "Installed"
1567
  msgstr "Installato"
1568
 
1569
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1570
  #: templates/forms/resend-key.php:77
1571
  msgctxt "as close a window"
1572
  msgid "Dismiss"
@@ -1622,86 +1622,94 @@ msgstr "Grazie %s!"
1622
  msgid "Agree & Activate License"
1623
  msgstr "Accetta e attiva la licenza"
1624
 
1625
- #: templates/connect.php:189
1626
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1627
- msgstr "Grazie per aver acquistato %s! Per iniziare, per favore inserisci la tua chiave di licenza:"
1628
 
1629
- #: templates/connect.php:196
1630
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Non perdere nessun aggiornamento importante, accetta gli aggiornamenti di sicurezza e funzionalità, contenuti formativi, offerte e il tracciamento diagnostico senza dati sensibili con %4$s."
1632
 
1633
- #: templates/connect.php:197
1634
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1635
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e notifiche di funzionalità e il tracciamento diagnostico senza dati sensibili con %4$s."
1636
 
1637
- #: templates/connect.php:203
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$scontinuerà a funzionare."
1640
 
1641
- #: templates/connect.php:204
1642
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1643
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$s continuerà a funzionare."
1644
 
1645
- #: templates/connect.php:238
1646
  msgid "We're excited to introduce the Freemius network-level integration."
1647
  msgstr "Siamo felici di presentarvi il supporto al sistema multi network di Freemius."
1648
 
1649
- #: templates/connect.php:241
1650
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1651
  msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza."
1652
 
1653
- #: templates/connect.php:243
1654
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1655
  msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
1656
 
1657
- #: templates/connect.php:245
1658
  msgid "%s's paid features"
1659
  msgstr "Funzionalità a pagamento di %s"
1660
 
1661
- #: templates/connect.php:250
1662
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1663
  msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente nella tua pagina di attivazione network di %s."
1664
 
1665
- #: templates/connect.php:252
1666
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1667
  msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
1668
 
1669
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1670
  #: templates/forms/license-activation.php:49
1671
  msgid "License key"
1672
  msgstr "Chiave di licenza"
1673
 
1674
- #: templates/connect.php264, templates/forms/license-activation.php:22
1675
  msgid "Can't find your license key?"
1676
  msgstr "Non trovi la tua chiave di licenza?"
1677
 
1678
- #: templates/connect.php323, templates/connect.php695,
1679
  #: templates/forms/deactivation/retry-skip.php:20
1680
  msgctxt "verb"
1681
  msgid "Skip"
1682
  msgstr "Salta"
1683
 
1684
- #: templates/connect.php:326
1685
  msgid "Delegate to Site Admins"
1686
  msgstr "Delega ai proprietari del sito"
1687
 
1688
- #: templates/connect.php:326
1689
  msgid "If you click it, this decision will be delegated to the sites administrators."
1690
  msgstr "Se fai clic questa decisione sarà delegata agli amministratori del sito."
1691
 
1692
- #: templates/connect.php:364
 
 
 
 
1693
  msgid "Your Profile Overview"
1694
  msgstr "Panoramica del tuo profilo"
1695
 
1696
- #: templates/connect.php:365
1697
  msgid "Name and email address"
1698
  msgstr "Nome ed indirizzo email"
1699
 
1700
- #: templates/connect.php:372
 
 
 
 
1701
  msgid "Your Site Overview"
1702
  msgstr "Panoramica del tuo sito"
1703
 
1704
- #: templates/connect.php:373
1705
  msgid "Site URL, WP version, PHP info"
1706
  msgstr "Site URL, WP version, PHP info"
1707
 
@@ -1709,64 +1717,84 @@ msgstr "Site URL, WP version, PHP info"
1709
  msgid "Admin Notices"
1710
  msgstr "Avvisi amministratore"
1711
 
1712
- #: templates/connect.php380, templates/connect.php:396
1713
  msgid "Updates, announcements, marketing, no spam"
1714
  msgstr "Aggiornamenti, annunci, marketing, no spam"
1715
 
1716
- #: templates/connect.php:386
1717
- msgid "Current %s Events"
1718
- msgstr "Eventi %sattuali"
1719
-
1720
  #: templates/connect.php:387
1721
- msgid "Activation, deactivation and uninstall"
1722
- msgstr "Attiva, disattivazione e disinstallazione"
 
 
 
 
 
 
 
 
1723
 
1724
- #: templates/connect.php:395
1725
  msgid "Newsletter"
1726
  msgstr "Newsletter"
1727
 
1728
- #: templates/connect.php:403
1729
  msgid "Plugins & Themes"
1730
  msgstr "Plugin e temi"
1731
 
1732
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1733
  msgid "Title, slug, version, and is active"
1734
  msgstr "Title, slug, version, and is active"
1735
 
1736
- #: templates/connect.php421, templates/forms/license-activation.php:41
1737
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1738
- msgstr " Il %1$s invierà periodicamente dei dati a %2$s per verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
1739
 
1740
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1741
  msgid "What permissions are being granted?"
1742
  msgstr "Quali autorizzazioni vengono concesse?"
1743
 
1744
- #: templates/connect.php:452
1745
  msgid "Don't have a license key?"
1746
  msgstr "Non hai una chiave di licenza?"
1747
 
1748
- #: templates/connect.php:455
1749
  msgid "Have a license key?"
1750
  msgstr "Hai una chiave di licenza?"
1751
 
1752
- #: templates/connect.php:463
1753
  msgid "Privacy Policy"
1754
  msgstr "Politica sulla privacy"
1755
 
1756
- #: templates/connect.php:465
1757
  msgid "License Agreement"
1758
  msgstr "License Agreement"
1759
 
1760
- #: templates/connect.php:465
1761
  msgid "Terms of Service"
1762
  msgstr "Termini del Servizio"
1763
 
1764
- #: templates/connect.php:854
1765
  msgctxt "as in the process of sending an email"
1766
  msgid "Sending email"
1767
  msgstr "Invio email"
1768
 
1769
- #: templates/connect.php:855
1770
  msgctxt "as activating plugin"
1771
  msgid "Activating"
1772
  msgstr "Attivazione"
@@ -2369,7 +2397,11 @@ msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subi
2369
  msgid "Update License"
2370
  msgstr "Aggiorna licenza"
2371
 
2372
- #: templates/forms/license-activation.php:181
 
 
 
 
2373
  msgid "Associate with the license owner's account."
2374
  msgstr "Associate with the license owner's account."
2375
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
12
  "Project-Id-Version: WordPress SDK\n"
13
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
14
  "POT-Creation-Date: \n"
15
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
16
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
17
  "Language: it_IT\n"
18
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
  "X-Poedit-SourceCharset: UTF-8\n"
28
 
29
+ #: includes/class-freemius.php1919, templates/account.php:912
30
  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."
31
  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!"
32
 
33
+ #: includes/class-freemius.php:1926
34
  msgid "Would you like to proceed with the update?"
35
  msgstr "Vuoi procedere con l'aggiornamento?"
36
 
37
+ #: includes/class-freemius.php:2138
38
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
39
  msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
40
 
41
+ #: includes/class-freemius.php:2140
42
  msgid "Error"
43
  msgstr "Errore"
44
 
45
+ #: includes/class-freemius.php:2540
46
  msgid "I found a better %s"
47
  msgstr "Ho trovato un migliore %s"
48
 
49
+ #: includes/class-freemius.php:2542
50
  msgid "What's the %s's name?"
51
  msgstr "Qual è il nome di %s?"
52
 
53
+ #: includes/class-freemius.php:2548
54
  msgid "It's a temporary %s. I'm just debugging an issue."
55
  msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
56
 
57
+ #: includes/class-freemius.php:2550
58
  msgid "Deactivation"
59
  msgstr "Disattivazione"
60
 
61
+ #: includes/class-freemius.php:2551
62
  msgid "Theme Switch"
63
  msgstr "Cambio tema"
64
 
65
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
66
  #: templates/forms/user-change.php:29
67
  msgid "Other"
68
  msgstr "Altro"
69
 
70
+ #: includes/class-freemius.php:2568
71
  msgid "I no longer need the %s"
72
  msgstr "Non ho più bisogno di %s"
73
 
74
+ #: includes/class-freemius.php:2575
75
  msgid "I only needed the %s for a short period"
76
  msgstr "Ho avuto bisogno di %s per un breve periodo"
77
 
78
+ #: includes/class-freemius.php:2581
79
  msgid "The %s broke my site"
80
  msgstr "%s ha rotto il mio sito"
81
 
82
+ #: includes/class-freemius.php:2588
83
  msgid "The %s suddenly stopped working"
84
  msgstr "%s ha improvvisamente smesso di funzionare"
85
 
86
+ #: includes/class-freemius.php:2598
87
  msgid "I can't pay for it anymore"
88
  msgstr "Non posso piú pagarlo"
89
 
90
+ #: includes/class-freemius.php:2600
91
  msgid "What price would you feel comfortable paying?"
92
  msgstr "Che prezzo ritieni opportuno pagare?"
93
 
94
+ #: includes/class-freemius.php:2606
95
  msgid "I don't like to share my information with you"
96
  msgstr "Non voglio condividere i miei dati con te"
97
 
98
+ #: includes/class-freemius.php:2627
99
  msgid "The %s didn't work"
100
  msgstr "%s non funziona"
101
 
102
+ #: includes/class-freemius.php:2637
103
  msgid "I couldn't understand how to make it work"
104
  msgstr "Non capisco come farlo funzionare"
105
 
106
+ #: includes/class-freemius.php:2645
107
  msgid "The %s is great, but I need specific feature that you don't support"
108
  msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
109
 
110
+ #: includes/class-freemius.php:2647
111
  msgid "What feature?"
112
  msgstr "Quale funzionalitá?"
113
 
114
+ #: includes/class-freemius.php:2651
115
  msgid "The %s is not working"
116
  msgstr "%s non funziona"
117
 
118
+ #: includes/class-freemius.php:2653
119
  msgid "Kindly share what didn't work so we can fix it for future users..."
120
  msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
121
 
122
+ #: includes/class-freemius.php:2657
123
  msgid "It's not what I was looking for"
124
  msgstr "Non é quello che stavo cercando"
125
 
126
+ #: includes/class-freemius.php:2659
127
  msgid "What you've been looking for?"
128
  msgstr "Che cosa stai cercando?"
129
 
130
+ #: includes/class-freemius.php:2663
131
  msgid "The %s didn't work as expected"
132
  msgstr "%s non ha funzionato come mi aspettavo"
133
 
134
+ #: includes/class-freemius.php:2665
135
  msgid "What did you expect?"
136
  msgstr "Che cosa ti aspettavi?"
137
 
138
+ #: includes/class-freemius.php3520, templates/debug.php:20
139
  msgid "Freemius Debug"
140
  msgstr "Debug Freemius"
141
 
142
+ #: includes/class-freemius.php:4272
143
  msgid "I don't know what is cURL or how to install it, help me!"
144
  msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
145
 
146
+ #: includes/class-freemius.php:4274
147
  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."
148
  msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
149
 
150
+ #: includes/class-freemius.php:4281
151
  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."
152
  msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
153
 
154
+ #: includes/class-freemius.php:4386
155
  msgid "Yes - do your thing"
156
  msgstr "Sì - fai pure"
157
 
158
+ #: includes/class-freemius.php:4391
159
  msgid "No - just deactivate"
160
  msgstr "No - disattiva e basta"
161
 
162
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
163
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
164
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
165
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
166
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
167
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
168
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
169
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
170
  msgctxt "exclamation"
171
  msgid "Oops"
172
  msgstr "Ops"
173
 
174
+ #: includes/class-freemius.php:4505
175
  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."
176
  msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
177
 
178
+ #: includes/class-freemius.php:4927
179
  msgctxt "addonX cannot run without pluginY"
180
  msgid "%s cannot run without %s."
181
  msgstr "%s non può funzionare senza %s."
182
 
183
+ #: includes/class-freemius.php:4928
184
  msgctxt "addonX cannot run..."
185
  msgid "%s cannot run without the plugin."
186
  msgstr "%s non può funzionare senza il plugin."
187
 
188
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
189
+ #: includes/class-freemius.php:21180
190
  msgid "Unexpected API error. Please contact the %s's author with the following error."
191
  msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
192
 
193
+ #: includes/class-freemius.php:5857
194
  msgid "Premium %s version was successfully activated."
195
  msgstr "La versione 1%s Permium è stata attivata con successo."
196
 
197
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
198
  msgctxt ""
199
  msgid "W00t"
200
  msgstr "Forte"
201
 
202
+ #: includes/class-freemius.php:5884
203
  msgid "You have a %s license."
204
  msgstr "Hai la licenza %s."
205
 
206
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
207
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
208
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
209
+ #: includes/class-freemius.php:20930
210
  msgctxt "interjection expressing joy or exuberance"
211
  msgid "Yee-haw"
212
  msgstr "Evvai"
213
 
214
+ #: includes/class-freemius.php:6174
215
  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."
216
  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."
217
 
218
+ #: includes/class-freemius.php:6178
219
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
220
  msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
221
 
222
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
223
  #: templates/account/partials/addon.php:381
224
  msgid "More information about %s"
225
  msgstr "Ulteriori informazioni su %s"
226
 
227
+ #: includes/class-freemius.php:6188
228
  msgid "Purchase License"
229
  msgstr "Acquista licenza"
230
 
231
+ #: includes/class-freemius.php7125, templates/connect.php:171
232
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
233
  msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
234
 
235
+ #: includes/class-freemius.php:7129
236
  msgid "start the trial"
237
  msgstr "Inizia il periodo di prova gratuito"
238
 
239
+ #: includes/class-freemius.php7130, templates/connect.php:175
240
  msgid "complete the install"
241
  msgstr "completa l'installazione"
242
 
243
+ #: includes/class-freemius.php:7249
244
  msgid "You are just one step away - %s"
245
  msgstr "Sei a un passo dalla fine - %s"
246
 
247
+ #: includes/class-freemius.php:7252
248
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
249
  msgid "Complete \"%s\" Activation Now"
250
  msgstr "Completa l'attivazione di \"%s\" ora"
251
 
252
+ #: includes/class-freemius.php:7334
253
  msgid "We made a few tweaks to the %s, %s"
254
  msgstr "Abbiamo fatto alcune migliore a %s,%s"
255
 
256
+ #: includes/class-freemius.php:7338
257
  msgid "Opt in to make \"%s\" better!"
258
  msgstr "Abilita \"%s\" per renderlo migliore!"
259
 
260
+ #: includes/class-freemius.php:7773
261
  msgid "The upgrade of %s was successfully completed."
262
  msgstr "L'aggiornamento di %s è stato completato con successo."
263
 
264
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
265
+ #: includes/class-fs-plugin-updater.php1282,
266
+ #: includes/class-fs-plugin-updater.php1289,
267
  #: templates/auto-installation.php:32
268
  msgid "Add-On"
269
  msgstr "Add-on"
270
 
271
+ #: includes/class-freemius.php10257, templates/account.php394,
272
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
273
  msgid "Plugin"
274
  msgstr "Plugin"
275
 
276
+ #: includes/class-freemius.php10258, templates/account.php395,
277
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
278
  #: templates/forms/deactivation/form.php:71
279
  msgid "Theme"
280
  msgstr "Tema"
281
 
282
+ #: includes/class-freemius.php:13188
283
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
284
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
285
 
286
+ #: includes/class-freemius.php:13202
287
  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."
288
  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."
289
 
290
+ #: includes/class-freemius.php:13207
291
  msgid "User Dashboard"
292
  msgstr "User Dashboard"
293
 
294
+ #: includes/class-freemius.php:13208
295
  msgid "revert it now"
296
  msgstr "revert it now"
297
 
298
+ #: includes/class-freemius.php:13266
299
  msgid "An unknown error has occurred while trying to set the user's beta mode."
300
  msgstr "Un errore sconosciuto è avvenuto durante l'attivazione della modalità beta."
301
 
302
+ #: includes/class-freemius.php:13339
303
  msgid "Invalid new user ID or email address."
304
  msgstr "Invalid new user ID or email address."
305
 
306
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
307
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
308
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
309
 
310
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
311
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
312
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
313
 
314
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
315
  msgid "Change Ownership"
316
  msgstr "Cambia Proprietario"
317
 
318
+ #: includes/class-freemius.php:13977
319
  msgid "Invalid site details collection."
320
  msgstr "Raccolta dati siti non valida."
321
 
322
+ #: includes/class-freemius.php:14097
323
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
324
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
325
 
326
+ #: includes/class-freemius.php:14099
327
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
328
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
329
 
330
+ #: includes/class-freemius.php:14373
331
  msgid "Account is pending activation."
332
  msgstr "Account in attesa di attivazione."
333
 
334
+ #: includes/class-freemius.php14485,
335
  #: templates/forms/premium-versions-upgrade-handler.php:47
336
  msgid "Buy a license now"
337
  msgstr "Compra una licenza ora"
338
 
339
+ #: includes/class-freemius.php14497,
340
  #: templates/forms/premium-versions-upgrade-handler.php:46
341
  msgid "Renew your license now"
342
  msgstr "Rinnova la tua licenza ora"
343
 
344
+ #: includes/class-freemius.php:14501
345
  msgid "%s to access version %s security & feature updates, and support."
346
  msgstr "%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove funzionalità e supporto."
347
 
348
+ #: includes/class-freemius.php:16929
349
  msgid "%s activation was successfully completed."
350
  msgstr "%s è stato attivato con successo."
351
 
352
+ #: includes/class-freemius.php:16943
353
  msgid "Your account was successfully activated with the %s plan."
354
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
355
 
356
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
357
  msgid "Your trial has been successfully started."
358
  msgstr "La versione di prova è stata avviata correttamente."
359
 
360
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
361
+ #: includes/class-freemius.php:17820
362
  msgid "Couldn't activate %s."
363
  msgstr "Non é stato possibile attivare %s."
364
 
365
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
366
+ #: includes/class-freemius.php:17821
367
  msgid "Please contact us with the following message:"
368
  msgstr "Contattaci con il seguente messaggio:"
369
 
370
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
371
  msgid "An unknown error has occurred."
372
  msgstr "Un errore sconosciuto è avvenuto."
373
 
374
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
375
  msgid "Upgrade"
376
  msgstr "Aggiornamento"
377
 
378
+ #: includes/class-freemius.php:18184
379
  msgid "Start Trial"
380
  msgstr "Inizia il periodo di prova gratuito"
381
 
382
+ #: includes/class-freemius.php:18186
383
  msgid "Pricing"
384
  msgstr "Prezzi"
385
 
386
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
387
  msgid "Affiliation"
388
  msgstr "Affiliazione"
389
 
390
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
+ #: templates/account.php242, templates/debug.php:324
392
  msgid "Account"
393
  msgstr "Account"
394
 
395
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
396
  #: includes/customizer/class-fs-customizer-support-section.php:60
397
  msgid "Contact Us"
398
  msgstr "Contattaci"
399
 
400
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
401
+ #: includes/class-freemius.php23354, templates/account.php121,
402
  #: templates/account/partials/addon.php:44
403
  msgid "Add-Ons"
404
  msgstr "Addon"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow left icon"
408
  msgid "&#x2190;"
409
  msgstr "&#x2190;"
410
 
411
+ #: includes/class-freemius.php:18361
412
  msgctxt "ASCII arrow right icon"
413
  msgid "&#x27a4;"
414
  msgstr "&#x27a4;"
415
 
416
+ #: includes/class-freemius.php18363, templates/pricing.php:109
417
  msgctxt "noun"
418
  msgid "Pricing"
419
  msgstr "Prezzi"
420
 
421
+ #: includes/class-freemius.php18576,
422
  #: includes/customizer/class-fs-customizer-support-section.php:67
423
  msgid "Support Forum"
424
  msgstr "Forum di supporto"
425
 
426
+ #: includes/class-freemius.php:19550
427
  msgid "Your email has been successfully verified - you are AWESOME!"
428
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
429
 
430
+ #: includes/class-freemius.php:19551
431
  msgctxt "a positive response"
432
  msgid "Right on"
433
  msgstr "Sì"
434
 
435
+ #: includes/class-freemius.php:20057
436
  msgid "seems like the key you entered doesn't match our records."
437
  msgstr "sembra che la chiave che hai inserito non risulti nei nostri registri."
438
 
439
+ #: includes/class-freemius.php:20081
440
  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."
441
  msgstr "La modalità Debug è stata attivata con successo e sarà disattivata automaticamente in 60 minuti. Puoi disattivarla prima cliccando sul link \"Ferma Debug\"."
442
 
443
+ #: includes/class-freemius.php:20316
444
  msgid "Your %s Add-on plan was successfully upgraded."
445
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
446
 
447
+ #: includes/class-freemius.php:20318
448
  msgid "%s Add-on was successfully purchased."
449
  msgstr "L' add-on %s è stato acquistato con successo."
450
 
451
+ #: includes/class-freemius.php:20321
452
  msgid "Download the latest version"
453
  msgstr "Scarica l'ultima versione"
454
 
455
+ #: includes/class-freemius.php:20407
456
  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"
457
  msgstr "Il tuo server sta bloccando l'accesso alle API di Freemius, sono fondamentali per la sincronizzazione di%1$s. Chiedi al tuo amministratore di mettere in whitelist %2$s."
458
 
459
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
460
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
461
  msgid "Error received from the server:"
462
  msgstr "Errore ricevuto dal server:"
463
 
464
+ #: includes/class-freemius.php:20423
465
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
466
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
467
 
468
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
469
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
470
  msgctxt ""
471
  msgid "Hmm"
472
  msgstr "Uhm"
473
 
474
+ #: includes/class-freemius.php:20664
475
  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."
476
  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."
477
 
478
+ #: includes/class-freemius.php20665, templates/account.php123,
479
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
480
  msgctxt "trial period"
481
  msgid "Trial"
482
  msgstr "Prova gratuita"
483
 
484
+ #: includes/class-freemius.php:20670
485
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
486
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
487
 
488
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
489
  msgid "Please contact us here"
490
  msgstr "Contattaci qui"
491
 
492
+ #: includes/class-freemius.php:20685
493
  msgid "Your plan was successfully activated."
494
  msgstr "Il tuo piano è stato attivato con successo."
495
 
496
+ #: includes/class-freemius.php:20686
497
  msgid "Your plan was successfully upgraded."
498
  msgstr "Il piano è stato aggiornato con successo."
499
 
500
+ #: includes/class-freemius.php:20703
501
  msgid "Your plan was successfully changed to %s."
502
  msgstr "Il piano è stato cambiato con successo a %s."
503
 
504
+ #: includes/class-freemius.php:20719
505
  msgid "Your license has expired. You can still continue using the free %s forever."
506
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
507
 
508
+ #: includes/class-freemius.php:20721
509
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
510
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
511
 
512
+ #: includes/class-freemius.php:20729
513
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
514
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
515
 
516
+ #: includes/class-freemius.php:20742
517
  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."
518
  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."
519
 
520
+ #: includes/class-freemius.php:20768
521
  msgid "Your free trial has expired. You can still continue using all our free features."
522
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
523
 
524
+ #: includes/class-freemius.php:20770
525
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
526
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
527
 
528
+ #: includes/class-freemius.php:20885
529
  msgid "It looks like the license could not be activated."
530
  msgstr "Sembra che la licenza non possa essere attivata."
531
 
532
+ #: includes/class-freemius.php:20927
533
  msgid "Your license was successfully activated."
534
  msgstr "La tua licenza è stata attivata correttamente."
535
 
536
+ #: includes/class-freemius.php:20953
537
  msgid "It looks like your site currently doesn't have an active license."
538
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
539
 
540
+ #: includes/class-freemius.php:20977
541
  msgid "It looks like the license deactivation failed."
542
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
543
 
544
+ #: includes/class-freemius.php:21006
545
  msgid "Your %s license was successfully deactivated."
546
  msgstr "Your %s license was successfully deactivated."
547
 
548
+ #: includes/class-freemius.php:21007
549
  msgid "Your license was successfully deactivated, you are back to the %s plan."
550
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
551
 
552
+ #: includes/class-freemius.php:21010
553
  msgid "O.K"
554
  msgstr "OK"
555
 
556
+ #: includes/class-freemius.php:21063
557
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
558
  msgstr "Sembra che stai avendo dei problemi temporanei con la cancellazione della sottoscrizione. Prova nuovamente tra pochi minuti."
559
 
560
+ #: includes/class-freemius.php:21072
561
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
562
  msgstr "La tua sottoscrizione è stata cancellata con successo. La licenza del piano %sscadrà in %s."
563
 
564
+ #: includes/class-freemius.php:21114
565
  msgid "You are already running the %s in a trial mode."
566
  msgstr "Stai già usando %s in modalità prova."
567
 
568
+ #: includes/class-freemius.php:21125
569
  msgid "You already utilized a trial before."
570
  msgstr "Hai già utilizzato una prova gratuita in passato."
571
 
572
+ #: includes/class-freemius.php:21139
573
  msgid "Plan %s do not exist, therefore, can't start a trial."
574
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
575
 
576
+ #: includes/class-freemius.php:21150
577
  msgid "Plan %s does not support a trial period."
578
  msgstr "Il piano %s non supporta il periodo di prova."
579
 
580
+ #: includes/class-freemius.php:21161
581
  msgid "None of the %s's plans supports a trial period."
582
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
583
 
584
+ #: includes/class-freemius.php:21211
585
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
586
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
587
 
588
+ #: includes/class-freemius.php:21247
589
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
590
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
591
 
592
+ #: includes/class-freemius.php:21266
593
  msgid "Your %s free trial was successfully cancelled."
594
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
595
 
596
+ #: includes/class-freemius.php:21582
597
  msgid "Version %s was released."
598
  msgstr "La versione %s é stata rilasciata."
599
 
600
+ #: includes/class-freemius.php:21582
601
  msgid "Please download %s."
602
  msgstr "Scarica %s."
603
 
604
+ #: includes/class-freemius.php:21589
605
  msgid "the latest %s version here"
606
  msgstr "l'ultima versione %s é quì"
607
 
608
+ #: includes/class-freemius.php:21594
609
  msgid "New"
610
  msgstr "Nuovo"
611
 
612
+ #: includes/class-freemius.php:21599
613
  msgid "Seems like you got the latest release."
614
  msgstr "Sembra che tu abbia la versione più recente."
615
 
616
+ #: includes/class-freemius.php:21600
617
  msgid "You are all good!"
618
  msgstr "Sei fantastico!"
619
 
620
+ #: includes/class-freemius.php:21903
621
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
622
  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."
623
 
624
+ #: includes/class-freemius.php:22043
625
  msgid "Site successfully opted in."
626
  msgstr "Sito accettato con successo."
627
 
628
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
629
  msgid "Awesome"
630
  msgstr "Fantastico"
631
 
632
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
633
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
634
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
635
 
636
+ #: includes/class-freemius.php:22061
637
  msgid "Thank you!"
638
  msgstr "Grazie!"
639
 
640
+ #: includes/class-freemius.php:22068
641
  msgid "We will no longer be sending any usage data of %s on %s to %s."
642
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
643
 
644
+ #: includes/class-freemius.php:22226
645
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
646
  msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
647
 
648
+ #: includes/class-freemius.php:22232
649
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
650
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
651
 
652
+ #: includes/class-freemius.php:22237
653
  msgid "%s is the new owner of the account."
654
  msgstr "%s è il nuovo proprietario dell'account."
655
 
656
+ #: includes/class-freemius.php:22239
657
  msgctxt "as congratulations"
658
  msgid "Congrats"
659
  msgstr "Congratulazioni"
660
 
661
+ #: includes/class-freemius.php:22275
662
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
663
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
664
 
665
+ #: includes/class-freemius.php:22287
666
  msgid "Please provide your full name."
667
  msgstr "Per favore inserisci il tuo nome completo."
668
 
669
+ #: includes/class-freemius.php:22292
670
  msgid "Your name was successfully updated."
671
  msgstr "Il tuo nome è stato aggiornato correttamente."
672
 
673
+ #: includes/class-freemius.php:22353
674
  msgid "You have successfully updated your %s."
675
  msgstr "Hai aggiornato con successo il tuo %s."
676
 
677
+ #: includes/class-freemius.php:22412
678
  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."
679
  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."
680
 
681
+ #: includes/class-freemius.php:22415
682
  msgid "Click here"
683
  msgstr "Click here"
684
 
685
+ #: includes/class-freemius.php:22513
686
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
687
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
688
 
689
+ #: includes/class-freemius.php:22514
690
  msgctxt "advance notice of something that will need attention."
691
  msgid "Heads up"
692
  msgstr "Attenzione"
693
 
694
+ #: includes/class-freemius.php:23090
695
  msgctxt "exclamation"
696
  msgid "Hey"
697
  msgstr "Hey"
698
 
699
+ #: includes/class-freemius.php:23090
700
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
701
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
702
 
703
+ #: includes/class-freemius.php:23098
704
  msgid "No commitment for %s days - cancel anytime!"
705
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
706
 
707
+ #: includes/class-freemius.php:23099
708
  msgid "No credit card required"
709
  msgstr "Nessuna carta di credito richiesta"
710
 
711
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
712
  msgctxt "call to action"
713
  msgid "Start free trial"
714
  msgstr "Inizia il periodo di prova gratuito"
715
 
716
+ #: includes/class-freemius.php:23183
717
  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!"
718
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
719
 
720
+ #: includes/class-freemius.php:23192
721
  msgid "Learn more"
722
  msgstr "Scopri altro"
723
 
724
+ #: includes/class-freemius.php23378, templates/account.php558,
725
+ #: templates/account.php708, templates/connect.php179,
726
+ #: templates/connect.php461, templates/forms/license-activation.php27,
727
  #: templates/account/partials/addon.php:321
728
  msgid "Activate License"
729
  msgstr "Attiva licenza"
730
 
731
+ #: includes/class-freemius.php23379, templates/account.php652,
732
+ #: templates/account.php707, templates/account/partials/addon.php322,
733
  #: templates/account/partials/site.php:271
734
  msgid "Change License"
735
  msgstr "Cambia licenza"
736
 
737
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
738
  msgid "Opt Out"
739
  msgstr "Cancella iscrizione"
740
 
741
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
742
  #: templates/account/partials/site.php49,
743
  #: templates/account/partials/site.php:169
744
  msgid "Opt In"
745
  msgstr "Iscriviti"
746
 
747
+ #: includes/class-freemius.php:23738
748
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
749
  msgstr "La versione a pagamento di %1$sè già installata. Attiva questione versione per iniziare ad usare le funzionalità di %2$s.%3$s"
750
 
751
+ #: includes/class-freemius.php:23746
752
  msgid "Activate %s features"
753
  msgstr "Attiva le funzionalità di %s"
754
 
755
+ #: includes/class-freemius.php:23759
756
  msgid "Please follow these steps to complete the upgrade"
757
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
758
 
759
+ #: includes/class-freemius.php:23763
760
  msgid "Download the latest %s version"
761
  msgstr "Scarica l'ultima versione di %s"
762
 
763
+ #: includes/class-freemius.php:23767
764
  msgid "Upload and activate the downloaded version"
765
  msgstr "Carica e attiva la versione scaricata"
766
 
767
+ #: includes/class-freemius.php:23769
768
  msgid "How to upload and activate?"
769
  msgstr "Come faccio a caricare ed attivare?"
770
 
771
+ #: includes/class-freemius.php:23903
772
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
773
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
774
 
775
+ #: includes/class-freemius.php:24072
776
  msgid "Auto installation only works for opted-in users."
777
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
778
 
779
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
780
+ #: includes/class-fs-plugin-updater.php1261,
781
+ #: includes/class-fs-plugin-updater.php:1275
782
  msgid "Invalid module ID."
783
  msgstr "ID modulo non valida."
784
 
785
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
786
  msgid "Premium version already active."
787
  msgstr "Versione Premium già attiva."
788
 
789
+ #: includes/class-freemius.php:24098
790
  msgid "You do not have a valid license to access the premium version."
791
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
792
 
793
+ #: includes/class-freemius.php:24105
794
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
795
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
796
 
797
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
798
  msgid "Premium add-on version already installed."
799
  msgstr "Versione Premium dell'add-on già installata."
800
 
801
+ #: includes/class-freemius.php:24473
802
  msgid "View paid features"
803
  msgstr "Vedi funzionalità a pagamento"
804
 
805
+ #: includes/class-freemius.php:24795
806
  msgid "Thank you so much for using %s and its add-ons!"
807
  msgstr "Grazie per utilizzare %se i suoi addon!"
808
 
809
+ #: includes/class-freemius.php:24796
810
  msgid "Thank you so much for using %s!"
811
  msgstr "Grazie per utilizzare %s!"
812
 
813
+ #: includes/class-freemius.php:24802
814
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
815
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
816
 
817
+ #: includes/class-freemius.php:24806
818
  msgid "Thank you so much for using our products!"
819
  msgstr "Grazie per utilizzare i nostri prodotti!"
820
 
821
+ #: includes/class-freemius.php:24807
822
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
823
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
824
 
825
+ #: includes/class-freemius.php:24826
826
  msgid "%s and its add-ons"
827
  msgstr "%se i suoi addon"
828
 
829
+ #: includes/class-freemius.php:24835
830
  msgid "Products"
831
  msgstr "Prodotti"
832
 
833
+ #: includes/class-freemius.php24842, templates/connect.php:275
834
  msgid "Yes"
835
  msgstr "Si"
836
 
837
+ #: includes/class-freemius.php24843, templates/connect.php:276
838
  msgid "send me security & feature updates, educational content and offers."
839
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
840
 
841
+ #: includes/class-freemius.php24844, templates/connect.php:281
842
  msgid "No"
843
  msgstr "No"
844
 
845
+ #: includes/class-freemius.php24846, templates/connect.php:283
846
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
847
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
848
 
849
+ #: includes/class-freemius.php:24856
850
  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 :-)"
851
  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."
852
 
853
+ #: includes/class-freemius.php24858, templates/connect.php:290
854
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
855
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
856
 
857
+ #: includes/class-freemius.php:25140
858
  msgid "License key is empty."
859
  msgstr "La chiave licenza è vuota."
860
 
887
  msgid "Important Upgrade Notice:"
888
  msgstr "Avviso Importante di aggiornamento:"
889
 
890
+ #: includes/class-fs-plugin-updater.php:1326
891
  msgid "Installing plugin: %s"
892
  msgstr "Installazione plugin: %s"
893
 
894
+ #: includes/class-fs-plugin-updater.php:1367
895
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
896
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
897
 
898
+ #: includes/class-fs-plugin-updater.php:1549
899
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
900
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
901
 
917
  msgid "Install Free Version Update Now"
918
  msgstr "Installa l'ultima versione gratuita"
919
 
920
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
921
  msgid "Install Update Now"
922
  msgstr "Installa l'aggiornamento ora"
923
 
937
  msgid "Download Latest Free Version"
938
  msgstr "Scarica l'ultima versione gratuita"
939
 
940
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
941
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
942
  msgctxt "as download latest version"
943
  msgid "Download Latest"
949
  msgid "Activate this add-on"
950
  msgstr "Attivare questo addon"
951
 
952
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
953
  msgid "Activate Free Version"
954
  msgstr "Attiva versione gratuita"
955
 
956
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
957
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
958
  msgid "Activate"
959
  msgstr "Attiva"
1089
  msgid "Details"
1090
  msgstr "Dettagli"
1091
 
1092
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1093
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1094
  #: templates/account/partials/addon.php:36
1095
  msgctxt "product version"
1105
  msgid "Last Updated"
1106
  msgstr "Ultimo aggiornamento"
1107
 
1108
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1109
  msgctxt "x-ago"
1110
  msgid "%s ago"
1111
  msgstr "%s fa"
1216
  msgid "Latest Free Version Installed"
1217
  msgstr "Ultima versione gratuita installata"
1218
 
1219
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1220
  #: templates/account/partials/addon.php26,
1221
  #: templates/account/partials/site.php:311
1222
  msgid "Downgrading your plan"
1223
  msgstr "Torna al piano precedente"
1224
 
1225
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1226
  #: templates/account/partials/addon.php27,
1227
  #: templates/account/partials/site.php:312
1228
  msgid "Cancelling the subscription"
1230
 
1231
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1232
  #. subscription'
1233
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1234
  #: templates/account/partials/site.php:314
1235
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1236
  msgstr "%1$sfermerà tutti i pagamenti ricorrenti futuri e il tuo piano %2$sche scadrà in %3$s."
1237
 
1238
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1239
  #: templates/account/partials/addon.php30,
1240
  #: templates/account/partials/site.php:315
1241
  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."
1242
  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."
1243
 
1244
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1245
  #: templates/account/partials/addon.php:31
1246
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1247
  msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
1248
 
1249
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1250
  #: templates/account/partials/addon.php32,
1251
  #: templates/account/partials/site.php:316
1252
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1253
  msgstr "Puoi continuare ad utilizzare le funzionalità%sma non avrai accesso agli aggiornamenti di sicurezza, nuove funzionalità o supporto."
1254
 
1255
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1256
  #: templates/account/partials/addon.php33,
1257
  #: templates/account/partials/site.php:317
1258
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1259
  msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
1260
 
1261
  #. translators: %s: Plan title (e.g. "Professional")
1262
+ #: templates/account.php111,
1263
  #: templates/account/partials/activate-license-button.php31,
1264
  #: templates/account/partials/addon.php:35
1265
  msgid "Activate %s Plan"
1266
  msgstr "Attivare il piano %s"
1267
 
1268
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1269
+ #: templates/account.php114, templates/account/partials/addon.php38,
1270
  #: templates/account/partials/site.php:291
1271
  msgid "Auto renews in %s"
1272
  msgstr "Rinnovo automatico in %s"
1273
 
1274
  #. translators: %s: Time period (e.g. Expires in "2 months")
1275
+ #: templates/account.php116, templates/account/partials/addon.php40,
1276
  #: templates/account/partials/site.php:293
1277
  msgid "Expires in %s"
1278
  msgstr "Scade in %s"
1279
 
1280
+ #: templates/account.php:117
1281
  msgctxt "as synchronize license"
1282
  msgid "Sync License"
1283
  msgstr "Sincronizza la licenza"
1284
 
1285
+ #: templates/account.php118, templates/account/partials/addon.php:41
1286
  msgid "Cancel Trial"
1287
  msgstr "Annulla prova gratuita"
1288
 
1289
+ #: templates/account.php119, templates/account/partials/addon.php:42
1290
  msgid "Change Plan"
1291
  msgstr "Cambia piano"
1292
 
1293
+ #: templates/account.php120, templates/account/partials/addon.php:43
1294
  msgctxt "verb"
1295
  msgid "Upgrade"
1296
  msgstr "Aggiornamento"
1297
 
1298
+ #: templates/account.php122, templates/account/partials/addon.php45,
1299
  #: templates/account/partials/site.php:318
1300
  msgctxt "verb"
1301
  msgid "Downgrade"
1302
  msgstr "Downgrade"
1303
 
1304
+ #: templates/account.php124, templates/add-ons.php246,
1305
  #: templates/plugin-info/features.php72,
1306
  #: templates/account/partials/addon.php47,
1307
  #: templates/account/partials/site.php:33
1308
  msgid "Free"
1309
  msgstr "Gratuito"
1310
 
1311
+ #: templates/account.php126, templates/debug.php371,
1312
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1313
  #: templates/account/partials/addon.php:49
1314
  msgctxt "as product pricing plan"
1315
  msgid "Plan"
1316
  msgstr "Piano"
1317
 
1318
+ #: templates/account.php:127
1319
  msgid "Bundle Plan"
1320
  msgstr "Piano Bundle"
1321
 
1322
+ #: templates/account.php:250
1323
  msgid "Free Trial"
1324
  msgstr "Prova gratuita"
1325
 
1326
+ #: templates/account.php:261
1327
  msgid "Account Details"
1328
  msgstr "Dettagli dell'account"
1329
 
1330
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1331
  msgid "Start Debug"
1332
  msgstr "Avvia Debug"
1333
 
1334
+ #: templates/account.php:270
1335
  msgid "Stop Debug"
1336
  msgstr "Ferma Debug"
1337
 
1338
+ #: templates/account.php:277
1339
  msgid "Billing & Invoices"
1340
  msgstr "Ricevute e Fatture"
1341
 
1342
+ #: templates/account.php:288
1343
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1344
  msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
1345
 
1346
+ #: templates/account.php:290
1347
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1348
  msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1349
 
1350
+ #: templates/account.php:293
1351
  msgid "Delete Account"
1352
  msgstr "Elimina Account"
1353
 
1354
+ #: templates/account.php305, templates/account/partials/addon.php231,
1355
  #: templates/account/partials/deactivate-license-button.php:35
1356
  msgid "Deactivate License"
1357
  msgstr "Disattiva licenza"
1358
 
1359
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1360
  msgid "Are you sure you want to proceed?"
1361
  msgstr "Sei sicuro di voler procedere?"
1362
 
1363
+ #: templates/account.php328, templates/account/partials/addon.php:255
1364
  msgid "Cancel Subscription"
1365
  msgstr "Annulla sottoscrizione"
1366
 
1367
+ #: templates/account.php357, templates/account/partials/addon.php:340
1368
  msgctxt "as synchronize"
1369
  msgid "Sync"
1370
  msgstr "Sincronizza"
1371
 
1372
+ #: templates/account.php372, templates/debug.php:505
1373
  msgid "Name"
1374
  msgstr "Nome"
1375
 
1376
+ #: templates/account.php378, templates/debug.php:506
1377
  msgid "Email"
1378
  msgstr "Email"
1379
 
1380
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1381
  msgid "User ID"
1382
  msgstr "ID utente"
1383
 
1384
+ #: templates/account.php403, templates/account.php721,
1385
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1386
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1387
  #: templates/debug.php632, templates/account/payments.php35,
1388
  #: templates/debug/logger.php:21
1389
  msgid "ID"
1390
  msgstr "ID"
1391
 
1392
+ #: templates/account.php:410
1393
  msgid "Site ID"
1394
  msgstr "ID del sito"
1395
 
1396
+ #: templates/account.php:413
1397
  msgid "No ID"
1398
  msgstr "Nessun ID"
1399
 
1400
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1401
  #: templates/debug.php456, templates/debug.php508,
1402
  #: templates/account/partials/site.php:227
1403
  msgid "Public Key"
1404
  msgstr "Chiave pubblica"
1405
 
1406
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1407
  #: templates/debug.php509, templates/account/partials/site.php:239
1408
  msgid "Secret Key"
1409
  msgstr "Chiave segreta"
1410
 
1411
+ #: templates/account.php:427
1412
  msgctxt "as secret encryption key missing"
1413
  msgid "No Secret"
1414
  msgstr "Nessuna chiave"
1415
 
1416
+ #: templates/account.php454, templates/account/partials/site.php120,
1417
  #: templates/account/partials/site.php:122
1418
  msgid "Trial"
1419
  msgstr "Prova gratuita"
1420
 
1421
+ #: templates/account.php481, templates/debug.php561,
1422
  #: templates/account/partials/site.php:260
1423
  msgid "License Key"
1424
  msgstr "Chiave della licenza"
1425
 
1426
+ #: templates/account.php:512
1427
  msgid "Join the Beta program"
1428
  msgstr "Entra nel programma Beta"
1429
 
1430
+ #: templates/account.php:518
1431
  msgid "not verified"
1432
  msgstr "non verificato"
1433
 
1434
+ #: templates/account.php527, templates/account/partials/addon.php:190
1435
  msgid "Expired"
1436
  msgstr "Scaduto"
1437
 
1438
+ #: templates/account.php:587
1439
  msgid "Premium version"
1440
  msgstr "Versione premium"
1441
 
1442
+ #: templates/account.php:589
1443
  msgid "Free version"
1444
  msgstr "Versione gratuita"
1445
 
1446
+ #: templates/account.php:601
1447
  msgid "Verify Email"
1448
  msgstr "Verifica email"
1449
 
1450
+ #: templates/account.php:615
1451
  msgid "Download %s Version"
1452
  msgstr "Scarica la versione %s"
1453
 
1454
+ #: templates/account.php:631
1455
  msgid "Download Paid Version"
1456
  msgstr "Download Paid Version"
1457
 
1458
+ #: templates/account.php649, templates/account.php892,
1459
  #: templates/account/partials/site.php248,
1460
  #: templates/account/partials/site.php:270
1461
  msgctxt "verb"
1462
  msgid "Show"
1463
  msgstr "Mostra"
1464
 
1465
+ #: templates/account.php:664
1466
  msgid "What is your %s?"
1467
  msgstr "Qual è il tuo %s?"
1468
 
1469
+ #: templates/account.php672, templates/account/billing.php:21
1470
  msgctxt "verb"
1471
  msgid "Edit"
1472
  msgstr "Modifica"
1473
 
1474
+ #: templates/account.php676, templates/forms/user-change.php:27
1475
  msgid "Change User"
1476
  msgstr "Change User"
1477
 
1478
+ #: templates/account.php:700
1479
  msgid "Sites"
1480
  msgstr "Siti"
1481
 
1482
+ #: templates/account.php:713
1483
  msgid "Search by address"
1484
  msgstr "Cerca per indirizzo"
1485
 
1486
+ #: templates/account.php722, templates/debug.php:366
1487
  msgid "Address"
1488
  msgstr "Indirizzo"
1489
 
1490
+ #: templates/account.php:723
1491
  msgid "License"
1492
  msgstr "Licenza"
1493
 
1494
+ #: templates/account.php:724
1495
  msgid "Plan"
1496
  msgstr "Piano"
1497
 
1498
+ #: templates/account.php:757
1499
  msgctxt "as software license"
1500
  msgid "License"
1501
  msgstr "Licenza"
1502
 
1503
+ #: templates/account.php:886
1504
  msgctxt "verb"
1505
  msgid "Hide"
1506
  msgstr "Nascondi"
1507
 
1508
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1509
  msgid "Processing"
1510
  msgstr "Elaborazione"
1511
 
1512
+ #: templates/account.php:911
1513
  msgid "Get updates for bleeding edge Beta versions of %s."
1514
  msgstr "Ottieni gli aggiornamenti per le nuove versioni Beta di %s."
1515
 
1516
+ #: templates/account.php:969
1517
  msgid "Cancelling %s"
1518
  msgstr "Cancellazione di %s"
1519
 
1520
+ #: templates/account.php969, templates/account.php986,
1521
  #: templates/forms/subscription-cancellation.php27,
1522
  #: templates/forms/deactivation/form.php:133
1523
  msgid "trial"
1524
  msgstr "prova"
1525
 
1526
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1527
  msgid "Cancelling %s..."
1528
  msgstr "Cancellazione %s..."
1529
 
1530
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1531
  #: templates/forms/deactivation/form.php:134
1532
  msgid "subscription"
1533
  msgstr "sottoscrizione"
1534
 
1535
+ #: templates/account.php:1001
1536
  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?"
1537
  msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1538
 
1539
+ #: templates/account.php:1075
1540
  msgid "Disabling white-label mode"
1541
  msgstr "Disabling white-label mode"
1542
 
1543
+ #: templates/account.php:1076
1544
  msgid "Enabling white-label mode"
1545
  msgstr "Enabling white-label mode"
1546
 
1566
  msgid "Installed"
1567
  msgstr "Installato"
1568
 
1569
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1570
  #: templates/forms/resend-key.php:77
1571
  msgctxt "as close a window"
1572
  msgid "Dismiss"
1622
  msgid "Agree & Activate License"
1623
  msgstr "Accetta e attiva la licenza"
1624
 
1625
+ #: templates/connect.php:184
1626
+ msgid "Welcome to %s! To get started, please enter your license key:"
1627
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1628
 
1629
+ #: templates/connect.php:191
1630
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Non perdere nessun aggiornamento importante, accetta gli aggiornamenti di sicurezza e funzionalità, contenuti formativi, offerte e il tracciamento diagnostico senza dati sensibili con %4$s."
1632
 
1633
+ #: templates/connect.php:192
1634
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1635
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e notifiche di funzionalità e il tracciamento diagnostico senza dati sensibili con %4$s."
1636
 
1637
+ #: templates/connect.php:198
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$scontinuerà a funzionare."
1640
 
1641
+ #: templates/connect.php:199
1642
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1643
  msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$s continuerà a funzionare."
1644
 
1645
+ #: templates/connect.php:233
1646
  msgid "We're excited to introduce the Freemius network-level integration."
1647
  msgstr "Siamo felici di presentarvi il supporto al sistema multi network di Freemius."
1648
 
1649
+ #: templates/connect.php:236
1650
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1651
  msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza."
1652
 
1653
+ #: templates/connect.php:238
1654
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1655
  msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
1656
 
1657
+ #: templates/connect.php:240
1658
  msgid "%s's paid features"
1659
  msgstr "Funzionalità a pagamento di %s"
1660
 
1661
+ #: templates/connect.php:245
1662
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1663
  msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente nella tua pagina di attivazione network di %s."
1664
 
1665
+ #: templates/connect.php:247
1666
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1667
  msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
1668
 
1669
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1670
  #: templates/forms/license-activation.php:49
1671
  msgid "License key"
1672
  msgstr "Chiave di licenza"
1673
 
1674
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1675
  msgid "Can't find your license key?"
1676
  msgstr "Non trovi la tua chiave di licenza?"
1677
 
1678
+ #: templates/connect.php318, templates/connect.php700,
1679
  #: templates/forms/deactivation/retry-skip.php:20
1680
  msgctxt "verb"
1681
  msgid "Skip"
1682
  msgstr "Salta"
1683
 
1684
+ #: templates/connect.php:321
1685
  msgid "Delegate to Site Admins"
1686
  msgstr "Delega ai proprietari del sito"
1687
 
1688
+ #: templates/connect.php:321
1689
  msgid "If you click it, this decision will be delegated to the sites administrators."
1690
  msgstr "Se fai clic questa decisione sarà delegata agli amministratori del sito."
1691
 
1692
+ #: templates/connect.php:346
1693
+ msgid "License issues?"
1694
+ msgstr "License issues?"
1695
+
1696
+ #: templates/connect.php:362
1697
  msgid "Your Profile Overview"
1698
  msgstr "Panoramica del tuo profilo"
1699
 
1700
+ #: templates/connect.php:363
1701
  msgid "Name and email address"
1702
  msgstr "Nome ed indirizzo email"
1703
 
1704
+ #: templates/connect.php:370
1705
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1706
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1707
+
1708
+ #: templates/connect.php:371
1709
  msgid "Your Site Overview"
1710
  msgstr "Panoramica del tuo sito"
1711
 
1712
+ #: templates/connect.php:372
1713
  msgid "Site URL, WP version, PHP info"
1714
  msgstr "Site URL, WP version, PHP info"
1715
 
1717
  msgid "Admin Notices"
1718
  msgstr "Avvisi amministratore"
1719
 
1720
+ #: templates/connect.php380, templates/connect.php:398
1721
  msgid "Updates, announcements, marketing, no spam"
1722
  msgstr "Aggiornamenti, annunci, marketing, no spam"
1723
 
 
 
 
 
1724
  #: templates/connect.php:387
1725
+ msgid "So you can reuse the license when the %s is no longer active."
1726
+ msgstr "So you can reuse the license when the %s is no longer active."
1727
+
1728
+ #: templates/connect.php:388
1729
+ msgid "Current %s Status"
1730
+ msgstr "Current %s Status"
1731
+
1732
+ #: templates/connect.php:389
1733
+ msgid "Active, deactivated, or uninstalled"
1734
+ msgstr "Active, deactivated, or uninstalled"
1735
 
1736
+ #: templates/connect.php:397
1737
  msgid "Newsletter"
1738
  msgstr "Newsletter"
1739
 
1740
+ #: templates/connect.php:405
1741
  msgid "Plugins & Themes"
1742
  msgstr "Plugin e temi"
1743
 
1744
+ #: templates/connect.php:405
1745
+ msgid "optional"
1746
+ msgstr "optional"
1747
+
1748
+ #: templates/connect.php:406
1749
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1750
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1751
+
1752
+ #: templates/connect.php:407
1753
  msgid "Title, slug, version, and is active"
1754
  msgstr "Title, slug, version, and is active"
1755
 
1756
+ #: templates/connect.php:424
1757
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1758
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1759
 
1760
  #: templates/connect.php:426
1761
+ msgid "diagnostic data"
1762
+ msgstr "diagnostic data"
1763
+
1764
+ #: templates/connect.php:427
1765
+ msgid "Freemius is our licensing and software updates engine"
1766
+ msgstr "Freemius is our licensing and software updates engine"
1767
+
1768
+ #: templates/connect.php:430
1769
  msgid "What permissions are being granted?"
1770
  msgstr "Quali autorizzazioni vengono concesse?"
1771
 
1772
+ #: templates/connect.php:457
1773
  msgid "Don't have a license key?"
1774
  msgstr "Non hai una chiave di licenza?"
1775
 
1776
+ #: templates/connect.php:460
1777
  msgid "Have a license key?"
1778
  msgstr "Hai una chiave di licenza?"
1779
 
1780
+ #: templates/connect.php:468
1781
  msgid "Privacy Policy"
1782
  msgstr "Politica sulla privacy"
1783
 
1784
+ #: templates/connect.php:470
1785
  msgid "License Agreement"
1786
  msgstr "License Agreement"
1787
 
1788
+ #: templates/connect.php:470
1789
  msgid "Terms of Service"
1790
  msgstr "Termini del Servizio"
1791
 
1792
+ #: templates/connect.php:866
1793
  msgctxt "as in the process of sending an email"
1794
  msgid "Sending email"
1795
  msgstr "Invio email"
1796
 
1797
+ #: templates/connect.php:867
1798
  msgctxt "as activating plugin"
1799
  msgid "Activating"
1800
  msgstr "Attivazione"
2397
  msgid "Update License"
2398
  msgstr "Aggiorna licenza"
2399
 
2400
+ #: templates/forms/license-activation.php:41
2401
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2402
+ msgstr " Il %1$s invierà periodicamente dei dati a %2$s per verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
2403
+
2404
+ #: templates/forms/license-activation.php:183
2405
  msgid "Associate with the license owner's account."
2406
  msgstr "Associate with the license owner's account."
2407
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Odyssey <8bitodyssey+github@gmail.com>, 2016
@@ -9,7 +9,7 @@ msgstr ""
9
  "Project-Id-Version: WordPress SDK\n"
10
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
  "POT-Creation-Date: \n"
12
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
13
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
  "Language: ja\n"
15
  "Language-Team: Japanese (http://www.transifex.com/freemius/wordpress-sdk/language/ja/)\n"
@@ -23,835 +23,835 @@ msgstr ""
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
- #: includes/class-freemius.php1912, templates/account.php:910
27
  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."
28
  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."
29
 
30
- #: includes/class-freemius.php:1919
31
  msgid "Would you like to proceed with the update?"
32
  msgstr "Would you like to proceed with the update?"
33
 
34
- #: includes/class-freemius.php:2131
35
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
37
 
38
- #: includes/class-freemius.php:2133
39
  msgid "Error"
40
  msgstr "エラー"
41
 
42
- #: includes/class-freemius.php:2533
43
  msgid "I found a better %s"
44
  msgstr "より良い %sを見つけました"
45
 
46
- #: includes/class-freemius.php:2535
47
  msgid "What's the %s's name?"
48
  msgstr "%sの名前は何ですか?"
49
 
50
- #: includes/class-freemius.php:2541
51
  msgid "It's a temporary %s. I'm just debugging an issue."
52
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
53
 
54
- #: includes/class-freemius.php:2543
55
  msgid "Deactivation"
56
  msgstr "無効化"
57
 
58
- #: includes/class-freemius.php:2544
59
  msgid "Theme Switch"
60
  msgstr "テーマ変更"
61
 
62
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "その他"
66
 
67
- #: includes/class-freemius.php:2561
68
  msgid "I no longer need the %s"
69
  msgstr "%sはもう不要です"
70
 
71
- #: includes/class-freemius.php:2568
72
  msgid "I only needed the %s for a short period"
73
  msgstr "短期間だけ %sが 必要です。"
74
 
75
- #: includes/class-freemius.php:2574
76
  msgid "The %s broke my site"
77
  msgstr "%s の影響でサイトを崩れました"
78
 
79
- #: includes/class-freemius.php:2581
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s の動作が突然停止しました"
82
 
83
- #: includes/class-freemius.php:2591
84
  msgid "I can't pay for it anymore"
85
  msgstr "もう払うことができません"
86
 
87
- #: includes/class-freemius.php:2593
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr " 支払ってもよいと思う価格はいくらですか?"
90
 
91
- #: includes/class-freemius.php:2599
92
  msgid "I don't like to share my information with you"
93
  msgstr "自分の情報を共有したくありません"
94
 
95
- #: includes/class-freemius.php:2620
96
  msgid "The %s didn't work"
97
  msgstr "%s が動作しませんでした"
98
 
99
- #: includes/class-freemius.php:2630
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "どうしたら動作するか分かりませんでした。"
102
 
103
- #: includes/class-freemius.php:2638
104
  msgid "The %s is great, but I need specific feature that you don't support"
105
  msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
106
 
107
- #: includes/class-freemius.php:2640
108
  msgid "What feature?"
109
  msgstr "何の機能ですか?"
110
 
111
- #: includes/class-freemius.php:2644
112
  msgid "The %s is not working"
113
  msgstr "%s が動作していません"
114
 
115
- #: includes/class-freemius.php:2646
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
118
 
119
- #: includes/class-freemius.php:2650
120
  msgid "It's not what I was looking for"
121
  msgstr "探していたものではありません"
122
 
123
- #: includes/class-freemius.php:2652
124
  msgid "What you've been looking for?"
125
  msgstr "探していたのは何ですか?"
126
 
127
- #: includes/class-freemius.php:2656
128
  msgid "The %s didn't work as expected"
129
  msgstr "%sが期待通りに動きませんでした "
130
 
131
- #: includes/class-freemius.php:2658
132
  msgid "What did you expect?"
133
  msgstr "何を期待していましたか?"
134
 
135
- #: includes/class-freemius.php3513, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius デバッグ"
138
 
139
- #: includes/class-freemius.php:4265
140
  msgid "I don't know what is cURL or how to install it, help me!"
141
  msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
142
 
143
- #: includes/class-freemius.php:4267
144
  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."
145
  msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
146
 
147
- #: includes/class-freemius.php:4274
148
  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."
149
  msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
150
 
151
- #: includes/class-freemius.php:4379
152
  msgid "Yes - do your thing"
153
  msgstr "はい - お構いなく"
154
 
155
- #: includes/class-freemius.php:4384
156
  msgid "No - just deactivate"
157
  msgstr "いいえ - すぐに無効化"
158
 
159
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
160
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
161
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
162
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
163
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
164
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
165
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
166
- #: includes/class-freemius.php22274, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "おっと"
170
 
171
- #: includes/class-freemius.php:4498
172
  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."
173
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
174
 
175
- #: includes/class-freemius.php:4920
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s は、%s が無いと実行することができません。"
179
 
180
- #: includes/class-freemius.php:4921
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s は、プラグインが無いと実行することができません。"
184
 
185
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
186
- #: includes/class-freemius.php:21150
187
  msgid "Unexpected API error. Please contact the %s's author with the following error."
188
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
189
 
190
- #: includes/class-freemius.php:5848
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
193
 
194
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "やったー"
198
 
199
- #: includes/class-freemius.php:5875
200
  msgid "You have a %s license."
201
  msgstr "%s ライセンスを持っています。"
202
 
203
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
204
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
205
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
206
- #: includes/class-freemius.php:20900
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "ヤッホー"
210
 
211
- #: includes/class-freemius.php:6165
212
  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."
213
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
214
 
215
- #: includes/class-freemius.php:6169
216
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
218
 
219
- #: includes/class-freemius.php6178, templates/add-ons.php186,
220
  #: templates/account/partials/addon.php:381
221
  msgid "More information about %s"
222
  msgstr "%s に関する詳細情報"
223
 
224
- #: includes/class-freemius.php:6179
225
  msgid "Purchase License"
226
  msgstr "ライセンスを購入"
227
 
228
- #: includes/class-freemius.php7118, templates/connect.php:171
229
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
231
 
232
- #: includes/class-freemius.php:7122
233
  msgid "start the trial"
234
  msgstr "トライアルを開始"
235
 
236
- #: includes/class-freemius.php7123, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "インストールを完了"
239
 
240
- #: includes/class-freemius.php:7241
241
  msgid "You are just one step away - %s"
242
  msgstr "もうあとわずかです - %s"
243
 
244
- #: includes/class-freemius.php:7244
245
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
  msgid "Complete \"%s\" Activation Now"
247
  msgstr "すぐに \"%s\" 有効化を完了してください"
248
 
249
- #: includes/class-freemius.php:7322
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "プラグインを微調整します、 %s, %s"
252
 
253
- #: includes/class-freemius.php:7326
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Opt in to make \"%s\" better!"
256
 
257
- #: includes/class-freemius.php:7761
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "%s のアップグレードが完了しました。"
260
 
261
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
262
- #: includes/class-fs-plugin-updater.php1294,
263
- #: includes/class-fs-plugin-updater.php1301,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "アドオン"
267
 
268
- #: includes/class-freemius.php10245, templates/account.php392,
269
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "プラグイン"
272
 
273
- #: includes/class-freemius.php10246, templates/account.php393,
274
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
275
  #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "テーマ"
278
 
279
- #: includes/class-freemius.php:13176
280
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
 
283
- #: includes/class-freemius.php:13190
284
  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."
285
  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."
286
 
287
- #: includes/class-freemius.php:13195
288
  msgid "User Dashboard"
289
  msgstr "User Dashboard"
290
 
291
- #: includes/class-freemius.php:13196
292
  msgid "revert it now"
293
  msgstr "revert it now"
294
 
295
- #: includes/class-freemius.php:13255
296
  msgid "An unknown error has occurred while trying to set the user's beta mode."
297
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
 
299
- #: includes/class-freemius.php:13328
300
  msgid "Invalid new user ID or email address."
301
  msgstr "Invalid new user ID or email address."
302
 
303
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
304
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
306
 
307
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
308
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
310
 
311
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
312
  msgid "Change Ownership"
313
  msgstr "オーナーを変更"
314
 
315
- #: includes/class-freemius.php:13942
316
  msgid "Invalid site details collection."
317
  msgstr "Invalid site details collection."
318
 
319
- #: includes/class-freemius.php:14062
320
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
322
 
323
- #: includes/class-freemius.php:14064
324
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
326
 
327
- #: includes/class-freemius.php:14338
328
  msgid "Account is pending activation."
329
  msgstr "アカウントは有効化待ちです。"
330
 
331
- #: includes/class-freemius.php14450,
332
  #: templates/forms/premium-versions-upgrade-handler.php:47
333
  msgid "Buy a license now"
334
  msgstr "Buy a license now"
335
 
336
- #: includes/class-freemius.php14462,
337
  #: templates/forms/premium-versions-upgrade-handler.php:46
338
  msgid "Renew your license now"
339
  msgstr "Renew your license now"
340
 
341
- #: includes/class-freemius.php:14466
342
  msgid "%s to access version %s security & feature updates, and support."
343
  msgstr "%s to access version %s security & feature updates, and support."
344
 
345
- #: includes/class-freemius.php:16907
346
  msgid "%s activation was successfully completed."
347
  msgstr "%s の有効化が成功しました。"
348
 
349
- #: includes/class-freemius.php:16921
350
  msgid "Your account was successfully activated with the %s plan."
351
  msgstr "アカウントが %s プランで有効化できました。"
352
 
353
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
354
  msgid "Your trial has been successfully started."
355
  msgstr "トライアル版の利用を開始しました。"
356
 
357
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
358
- #: includes/class-freemius.php:17804
359
  msgid "Couldn't activate %s."
360
  msgstr "%s を有効化できません。"
361
 
362
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
363
- #: includes/class-freemius.php:17805
364
  msgid "Please contact us with the following message:"
365
  msgstr "以下のメッセージとともに私たちに連絡をください。"
366
 
367
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
368
  msgid "An unknown error has occurred."
369
  msgstr "An unknown error has occurred."
370
 
371
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
372
  msgid "Upgrade"
373
  msgstr "アップグレード"
374
 
375
- #: includes/class-freemius.php:18168
376
  msgid "Start Trial"
377
  msgstr "トライアルを開始"
378
 
379
- #: includes/class-freemius.php:18170
380
  msgid "Pricing"
381
  msgstr "料金表"
382
 
383
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
384
  msgid "Affiliation"
385
  msgstr "アフィリエイト"
386
 
387
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
388
- #: templates/account.php240, templates/debug.php:324
389
  msgid "Account"
390
  msgstr "アカウント"
391
 
392
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
393
  #: includes/customizer/class-fs-customizer-support-section.php:60
394
  msgid "Contact Us"
395
  msgstr "連絡"
396
 
397
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
398
- #: includes/class-freemius.php23324, templates/account.php119,
399
  #: templates/account/partials/addon.php:44
400
  msgid "Add-Ons"
401
  msgstr "アドオン"
402
 
403
- #: includes/class-freemius.php:18345
404
  msgctxt "ASCII arrow left icon"
405
  msgid "&#x2190;"
406
  msgstr "&#x2190;"
407
 
408
- #: includes/class-freemius.php:18345
409
  msgctxt "ASCII arrow right icon"
410
  msgid "&#x27a4;"
411
  msgstr "&#x27a4;"
412
 
413
- #: includes/class-freemius.php18347, templates/pricing.php:109
414
  msgctxt "noun"
415
  msgid "Pricing"
416
  msgstr "料金表"
417
 
418
- #: includes/class-freemius.php18560,
419
  #: includes/customizer/class-fs-customizer-support-section.php:67
420
  msgid "Support Forum"
421
  msgstr "サポートフォーラム"
422
 
423
- #: includes/class-freemius.php:19534
424
  msgid "Your email has been successfully verified - you are AWESOME!"
425
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
426
 
427
- #: includes/class-freemius.php:19535
428
  msgctxt "a positive response"
429
  msgid "Right on"
430
  msgstr "そうだ"
431
 
432
- #: includes/class-freemius.php:20041
433
  msgid "seems like the key you entered doesn't match our records."
434
  msgstr "seems like the key you entered doesn't match our records."
435
 
436
- #: includes/class-freemius.php:20065
437
  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."
438
  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."
439
 
440
- #: includes/class-freemius.php:20300
441
  msgid "Your %s Add-on plan was successfully upgraded."
442
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
443
 
444
- #: includes/class-freemius.php:20302
445
  msgid "%s Add-on was successfully purchased."
446
  msgstr "%s のアドオンの支払いが完了しました。"
447
 
448
- #: includes/class-freemius.php:20305
449
  msgid "Download the latest version"
450
  msgstr "最新版をダウンロード"
451
 
452
- #: includes/class-freemius.php:20391
453
  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"
454
  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"
455
 
456
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
457
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
458
  msgid "Error received from the server:"
459
  msgstr "サーバーからエラーを受信しました。"
460
 
461
- #: includes/class-freemius.php:20407
462
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
464
 
465
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
466
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
467
  msgctxt ""
468
  msgid "Hmm"
469
  msgstr "ふむ"
470
 
471
- #: includes/class-freemius.php:20634
472
  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
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
474
 
475
- #: includes/class-freemius.php20635, templates/account.php121,
476
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
  msgctxt "trial period"
478
  msgid "Trial"
479
  msgstr "トライアル"
480
 
481
- #: includes/class-freemius.php:20640
482
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
484
 
485
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
486
  msgid "Please contact us here"
487
  msgstr "こちらで私たちに連絡をとってください。"
488
 
489
- #: includes/class-freemius.php:20655
490
  msgid "Your plan was successfully activated."
491
  msgstr "Your plan was successfully activated."
492
 
493
- #: includes/class-freemius.php:20656
494
  msgid "Your plan was successfully upgraded."
495
  msgstr "プランのアップグレードが成功しました。"
496
 
497
- #: includes/class-freemius.php:20673
498
  msgid "Your plan was successfully changed to %s."
499
  msgstr "プランの %s への変更が成功しました。"
500
 
501
- #: includes/class-freemius.php:20689
502
  msgid "Your license has expired. You can still continue using the free %s forever."
503
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
504
 
505
- #: includes/class-freemius.php:20691
506
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
508
 
509
- #: includes/class-freemius.php:20699
510
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
512
 
513
- #: includes/class-freemius.php:20712
514
  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."
515
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
516
 
517
- #: includes/class-freemius.php:20738
518
  msgid "Your free trial has expired. You can still continue using all our free features."
519
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
520
 
521
- #: includes/class-freemius.php:20740
522
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
524
 
525
- #: includes/class-freemius.php:20855
526
  msgid "It looks like the license could not be activated."
527
  msgstr "ライセンスの有効化ができませんでした。"
528
 
529
- #: includes/class-freemius.php:20897
530
  msgid "Your license was successfully activated."
531
  msgstr "ライセンスの有効化が成功しました。"
532
 
533
- #: includes/class-freemius.php:20923
534
  msgid "It looks like your site currently doesn't have an active license."
535
  msgstr "サイトは有効なライセンスを持っていないようです。"
536
 
537
- #: includes/class-freemius.php:20947
538
  msgid "It looks like the license deactivation failed."
539
  msgstr "ライセンスの無効化ができませんでした。"
540
 
541
- #: includes/class-freemius.php:20976
542
  msgid "Your %s license was successfully deactivated."
543
  msgstr "Your %s license was successfully deactivated."
544
 
545
- #: includes/class-freemius.php:20977
546
  msgid "Your license was successfully deactivated, you are back to the %s plan."
547
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
548
 
549
- #: includes/class-freemius.php:20980
550
  msgid "O.K"
551
  msgstr "O.K"
552
 
553
- #: includes/class-freemius.php:21033
554
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
 
557
- #: includes/class-freemius.php:21042
558
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
 
561
- #: includes/class-freemius.php:21084
562
  msgid "You are already running the %s in a trial mode."
563
  msgstr "すでに%sをトライアルモードで利用中です。"
564
 
565
- #: includes/class-freemius.php:21095
566
  msgid "You already utilized a trial before."
567
  msgstr "以前すでに試用版を利用しました。"
568
 
569
- #: includes/class-freemius.php:21109
570
  msgid "Plan %s do not exist, therefore, can't start a trial."
571
  msgstr "%s プランは存在しないため、試用を開始できません。"
572
 
573
- #: includes/class-freemius.php:21120
574
  msgid "Plan %s does not support a trial period."
575
  msgstr "%s プランにはトライアル期間はありません。"
576
 
577
- #: includes/class-freemius.php:21131
578
  msgid "None of the %s's plans supports a trial period."
579
  msgstr "%sのプランにはトライアル期間はありません。"
580
 
581
- #: includes/class-freemius.php:21181
582
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
584
 
585
- #: includes/class-freemius.php:21217
586
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
588
 
589
- #: includes/class-freemius.php:21236
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "%s のフリートライアルはキャンセルされました。"
592
 
593
- #: includes/class-freemius.php:21552
594
  msgid "Version %s was released."
595
  msgstr "バージョン %s をリリースしました。"
596
 
597
- #: includes/class-freemius.php:21552
598
  msgid "Please download %s."
599
  msgstr "%s をダウンロードしてください。"
600
 
601
- #: includes/class-freemius.php:21559
602
  msgid "the latest %s version here"
603
  msgstr "最新の %s バージョンはこちらです。"
604
 
605
- #: includes/class-freemius.php:21564
606
  msgid "New"
607
  msgstr "新規"
608
 
609
- #: includes/class-freemius.php:21569
610
  msgid "Seems like you got the latest release."
611
  msgstr "最新版を取得できました。"
612
 
613
- #: includes/class-freemius.php:21570
614
  msgid "You are all good!"
615
  msgstr "すべて完璧です!"
616
 
617
- #: includes/class-freemius.php:21873
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
620
 
621
- #: includes/class-freemius.php:22013
622
  msgid "Site successfully opted in."
623
  msgstr "サイトのオプトインに成功しました。"
624
 
625
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
626
  msgid "Awesome"
627
  msgstr "すごい!"
628
 
629
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
632
 
633
- #: includes/class-freemius.php:22031
634
  msgid "Thank you!"
635
  msgstr "ありがとうございます!"
636
 
637
- #: includes/class-freemius.php:22038
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
640
 
641
- #: includes/class-freemius.php:22196
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
644
 
645
- #: includes/class-freemius.php:22202
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
648
 
649
- #: includes/class-freemius.php:22207
650
  msgid "%s is the new owner of the account."
651
  msgstr "%s は新しいオーナーです。"
652
 
653
- #: includes/class-freemius.php:22209
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "おめでとう"
657
 
658
- #: includes/class-freemius.php:22245
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
661
 
662
- #: includes/class-freemius.php:22257
663
  msgid "Please provide your full name."
664
  msgstr "フルネームを入力してください。"
665
 
666
- #: includes/class-freemius.php:22262
667
  msgid "Your name was successfully updated."
668
  msgstr "名前のアップデートが成功しました。"
669
 
670
- #: includes/class-freemius.php:22323
671
  msgid "You have successfully updated your %s."
672
  msgstr "%s のアップデートが成功しました。"
673
 
674
- #: includes/class-freemius.php:22382
675
  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."
676
  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."
677
 
678
- #: includes/class-freemius.php:22385
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
- #: includes/class-freemius.php:22483
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
685
 
686
- #: includes/class-freemius.php:22484
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "警告"
690
 
691
- #: includes/class-freemius.php:23060
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "ヘイ"
695
 
696
- #: includes/class-freemius.php:23060
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
699
 
700
- #: includes/class-freemius.php:23068
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "%s 日以内であればいつでもキャンセルできます。"
703
 
704
- #: includes/class-freemius.php:23069
705
  msgid "No credit card required"
706
  msgstr "クレジットカードは必要ありません。"
707
 
708
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "フリートライアルを開始"
712
 
713
- #: includes/class-freemius.php:23153
714
  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!"
715
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
716
 
717
- #: includes/class-freemius.php:23162
718
  msgid "Learn more"
719
  msgstr "詳細はこちら"
720
 
721
- #: includes/class-freemius.php23348, templates/account.php556,
722
- #: templates/account.php706, templates/connect.php179,
723
- #: templates/connect.php456, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "ライセンスを有効化"
727
 
728
- #: includes/class-freemius.php23349, templates/account.php650,
729
- #: templates/account.php705, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "ライセンスを変更"
733
 
734
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "オプトアウト"
737
 
738
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "オプトイン"
743
 
744
- #: includes/class-freemius.php:23700
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
 
748
- #: includes/class-freemius.php:23708
749
  msgid "Activate %s features"
750
  msgstr "Activate %s features"
751
 
752
- #: includes/class-freemius.php:23721
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
755
 
756
- #: includes/class-freemius.php:23725
757
  msgid "Download the latest %s version"
758
  msgstr "最新の %s をダウンロード"
759
 
760
- #: includes/class-freemius.php:23729
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
763
 
764
- #: includes/class-freemius.php:23731
765
  msgid "How to upload and activate?"
766
  msgstr "アップロードと有効化の方法"
767
 
768
- #: includes/class-freemius.php:23865
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
771
 
772
- #: includes/class-freemius.php:24034
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
775
 
776
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
777
- #: includes/class-fs-plugin-updater.php1273,
778
- #: includes/class-fs-plugin-updater.php:1287
779
  msgid "Invalid module ID."
780
  msgstr "モジュール ID が不正です"
781
 
782
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
783
  msgid "Premium version already active."
784
  msgstr "プレミアムバージョンはすでに有効になっています。"
785
 
786
- #: includes/class-freemius.php:24060
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
789
 
790
- #: includes/class-freemius.php:24067
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
793
 
794
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
795
  msgid "Premium add-on version already installed."
796
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
797
 
798
- #: includes/class-freemius.php:24435
799
  msgid "View paid features"
800
  msgstr "有料の機能を表示する"
801
 
802
- #: includes/class-freemius.php:24757
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "%sとアドオンのご利用ありがとうございます!"
805
 
806
- #: includes/class-freemius.php:24758
807
  msgid "Thank you so much for using %s!"
808
  msgstr "%sのご利用ありがとうございます!"
809
 
810
- #: includes/class-freemius.php:24764
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
813
 
814
- #: includes/class-freemius.php:24768
815
  msgid "Thank you so much for using our products!"
816
  msgstr "プロダクトのご利用ありがとうございます!"
817
 
818
- #: includes/class-freemius.php:24769
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
821
 
822
- #: includes/class-freemius.php:24788
823
  msgid "%s and its add-ons"
824
  msgstr "%sとそのアドオン"
825
 
826
- #: includes/class-freemius.php:24797
827
  msgid "Products"
828
  msgstr "プロダクト"
829
 
830
- #: includes/class-freemius.php24804, templates/connect.php:280
831
  msgid "Yes"
832
  msgstr "はい"
833
 
834
- #: includes/class-freemius.php24805, templates/connect.php:281
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
837
 
838
- #: includes/class-freemius.php24806, templates/connect.php:286
839
  msgid "No"
840
  msgstr "いいえ"
841
 
842
- #: includes/class-freemius.php24808, templates/connect.php:288
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
845
 
846
- #: includes/class-freemius.php:24818
847
  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 :-)"
848
  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 :-)"
849
 
850
- #: includes/class-freemius.php24820, templates/connect.php:295
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
853
 
854
- #: includes/class-freemius.php:25102
855
  msgid "License key is empty."
856
  msgstr "ライセンスキーが空です。"
857
 
@@ -884,15 +884,15 @@ msgstr "new version"
884
  msgid "Important Upgrade Notice:"
885
  msgstr "Important Upgrade Notice:"
886
 
887
- #: includes/class-fs-plugin-updater.php:1338
888
  msgid "Installing plugin: %s"
889
  msgstr "インストール中プラグイン: %s"
890
 
891
- #: includes/class-fs-plugin-updater.php:1379
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
894
 
895
- #: includes/class-fs-plugin-updater.php:1561
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
898
 
@@ -914,7 +914,7 @@ msgstr "無料の %s を開始"
914
  msgid "Install Free Version Update Now"
915
  msgstr "フリーバージョンの更新を今すぐインストール"
916
 
917
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
918
  msgid "Install Update Now"
919
  msgstr "今すぐ更新をインストール"
920
 
@@ -934,7 +934,7 @@ msgctxt "as download latest version"
934
  msgid "Download Latest Free Version"
935
  msgstr "最新のフリーバージョンをダウンロード"
936
 
937
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
@@ -946,11 +946,11 @@ msgstr "最新版をダウンロード"
946
  msgid "Activate this add-on"
947
  msgstr "このアドオンを有効化"
948
 
949
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
950
  msgid "Activate Free Version"
951
  msgstr "フリーバージョンを有効化"
952
 
953
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "有効化"
@@ -1086,7 +1086,7 @@ msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1086
  msgid "Details"
1087
  msgstr "詳細"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
@@ -1102,7 +1102,7 @@ msgstr "作者"
1102
  msgid "Last Updated"
1103
  msgstr "最終更新"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s 前"
@@ -1213,13 +1213,13 @@ msgstr "最新版がイストールされました"
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "最新のフリーバージョンがインストールされました"
1215
 
1216
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "Downgrading your plan"
1221
 
1222
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
@@ -1227,317 +1227,317 @@ msgstr "Cancelling the subscription"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
 
1235
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  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."
1240
 
1241
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
1245
 
1246
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
 
1252
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
- #: templates/account.php109,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "%s プランを有効化"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
- #: templates/account.php112, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "%s に自動更新"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
- #: templates/account.php114, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "%s で期間終了"
1276
 
1277
- #: templates/account.php:115
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "ライセンスを同期"
1281
 
1282
- #: templates/account.php116, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "トライアルをキャンセル"
1285
 
1286
- #: templates/account.php117, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "プラン変更"
1289
 
1290
- #: templates/account.php118, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "アップグレード"
1294
 
1295
- #: templates/account.php120, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "ダウングレード"
1300
 
1301
- #: templates/account.php122, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "無料"
1307
 
1308
- #: templates/account.php124, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "プラン"
1314
 
1315
- #: templates/account.php:125
1316
  msgid "Bundle Plan"
1317
  msgstr "Bundle Plan"
1318
 
1319
- #: templates/account.php:248
1320
  msgid "Free Trial"
1321
  msgstr "フリートライアル"
1322
 
1323
- #: templates/account.php:259
1324
  msgid "Account Details"
1325
  msgstr "アカウント詳細"
1326
 
1327
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
- #: templates/account.php:268
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
- #: templates/account.php:275
1336
  msgid "Billing & Invoices"
1337
  msgstr "Billing & Invoices"
1338
 
1339
- #: templates/account.php:286
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1342
 
1343
- #: templates/account.php:288
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1346
 
1347
- #: templates/account.php:291
1348
  msgid "Delete Account"
1349
  msgstr "アカウントを削除"
1350
 
1351
- #: templates/account.php303, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "ライセンスを無効化"
1355
 
1356
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "本当に続行していいですか?"
1359
 
1360
- #: templates/account.php326, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "サブスクリプションをキャンセルする"
1363
 
1364
- #: templates/account.php355, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "同期"
1368
 
1369
- #: templates/account.php370, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "名前"
1372
 
1373
- #: templates/account.php376, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "Email"
1376
 
1377
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "ユーザー ID"
1380
 
1381
- #: templates/account.php401, templates/account.php719,
1382
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ID"
1388
 
1389
- #: templates/account.php:408
1390
  msgid "Site ID"
1391
  msgstr "サイト ID"
1392
 
1393
- #: templates/account.php:411
1394
  msgid "No ID"
1395
  msgstr "ID がありません"
1396
 
1397
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "公開鍵"
1402
 
1403
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "秘密鍵"
1407
 
1408
- #: templates/account.php:425
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "秘密鍵がありません"
1412
 
1413
- #: templates/account.php452, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "トライアル"
1417
 
1418
- #: templates/account.php479, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "ライセンスキー"
1422
 
1423
- #: templates/account.php:510
1424
  msgid "Join the Beta program"
1425
  msgstr "Join the Beta program"
1426
 
1427
- #: templates/account.php:516
1428
  msgid "not verified"
1429
  msgstr "未認証"
1430
 
1431
- #: templates/account.php525, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "期限切れ"
1434
 
1435
- #: templates/account.php:585
1436
  msgid "Premium version"
1437
  msgstr "プレミアムバージョン"
1438
 
1439
- #: templates/account.php:587
1440
  msgid "Free version"
1441
  msgstr "フリーバージョン"
1442
 
1443
- #: templates/account.php:599
1444
  msgid "Verify Email"
1445
  msgstr "認証メール"
1446
 
1447
- #: templates/account.php:613
1448
  msgid "Download %s Version"
1449
  msgstr "%s バージョンをダウンロード"
1450
 
1451
- #: templates/account.php:629
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
- #: templates/account.php647, templates/account.php890,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "表示"
1461
 
1462
- #: templates/account.php:662
1463
  msgid "What is your %s?"
1464
  msgstr "自分の %s はなんですか?"
1465
 
1466
- #: templates/account.php670, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "編集"
1470
 
1471
- #: templates/account.php674, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
- #: templates/account.php:698
1476
  msgid "Sites"
1477
  msgstr "サイト数"
1478
 
1479
- #: templates/account.php:711
1480
  msgid "Search by address"
1481
  msgstr "住所で検索する"
1482
 
1483
- #: templates/account.php720, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "住所"
1486
 
1487
- #: templates/account.php:721
1488
  msgid "License"
1489
  msgstr "ライセンス"
1490
 
1491
- #: templates/account.php:722
1492
  msgid "Plan"
1493
  msgstr "プラン"
1494
 
1495
- #: templates/account.php:755
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "ライセンス"
1499
 
1500
- #: templates/account.php:884
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "非表示"
1504
 
1505
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "Processing"
1508
 
1509
- #: templates/account.php:909
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "Get updates for bleeding edge Beta versions of %s."
1512
 
1513
- #: templates/account.php:967
1514
  msgid "Cancelling %s"
1515
  msgstr "Cancelling %s"
1516
 
1517
- #: templates/account.php967, templates/account.php984,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "trial"
1522
 
1523
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "Cancelling %s..."
1526
 
1527
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "subscription"
1531
 
1532
- #: templates/account.php:999
1533
  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?"
1534
  msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
1535
 
1536
- #: templates/account.php:1073
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
- #: templates/account.php:1074
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
@@ -1563,7 +1563,7 @@ msgctxt "installed add-on"
1563
  msgid "Installed"
1564
  msgstr "Installed"
1565
 
1566
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
@@ -1619,86 +1619,94 @@ msgstr "ありがとう $s さん!"
1619
  msgid "Agree & Activate License"
1620
  msgstr "同意してライセンスを有効化"
1621
 
1622
- #: templates/connect.php:189
1623
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1624
- msgstr "%s を購入いただきありがとうございます。はじめにライセンスキーを入力してください:"
1625
 
1626
- #: templates/connect.php:196
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1629
 
1630
- #: templates/connect.php:197
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1633
 
1634
- #: templates/connect.php:203
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1637
 
1638
- #: templates/connect.php:204
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1641
 
1642
- #: templates/connect.php:238
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "Freeminus ネットワークレベルのインテグレーションをご紹介できることに興奮しています。"
1645
 
1646
- #: templates/connect.php:241
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "アップデートの処理中に%dサイトがライセンスの有効化が保留中であることを検知しました。"
1649
 
1650
- #: templates/connect.php:243
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "これらのサイトで%sを使う場合は、ライセンスキーを入力し、アクティベーションボタンをクリックしてください。"
1653
 
1654
- #: templates/connect.php:245
1655
  msgid "%s's paid features"
1656
  msgstr "%sの有料機能"
1657
 
1658
- #: templates/connect.php:250
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "または、今すぐスキップして、%sのネットワークレベルのアカウントページでライセンスを有効にすることもできます。"
1661
 
1662
- #: templates/connect.php:252
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。"
1665
 
1666
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "ライセンスキー"
1670
 
1671
- #: templates/connect.php264, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "ライセンスキーは見つかりませんか?"
1674
 
1675
- #: templates/connect.php323, templates/connect.php695,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "スキップ"
1680
 
1681
- #: templates/connect.php:326
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "サイト管理者に委任する"
1684
 
1685
- #: templates/connect.php:326
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "決定をサイトの管理者に委任するにはクリックしてください。"
1688
 
1689
- #: templates/connect.php:364
 
 
 
 
1690
  msgid "Your Profile Overview"
1691
  msgstr "プロフィール概要"
1692
 
1693
- #: templates/connect.php:365
1694
  msgid "Name and email address"
1695
  msgstr "名前とメールアドレス"
1696
 
1697
- #: templates/connect.php:372
 
 
 
 
1698
  msgid "Your Site Overview"
1699
  msgstr "サイト概要"
1700
 
1701
- #: templates/connect.php:373
1702
  msgid "Site URL, WP version, PHP info"
1703
  msgstr "Site URL, WP version, PHP info"
1704
 
@@ -1706,64 +1714,84 @@ msgstr "Site URL, WP version, PHP info"
1706
  msgid "Admin Notices"
1707
  msgstr "管理者通知"
1708
 
1709
- #: templates/connect.php380, templates/connect.php:396
1710
  msgid "Updates, announcements, marketing, no spam"
1711
  msgstr "更新、発表、マーケティング、スパムなし"
1712
 
1713
- #: templates/connect.php:386
1714
- msgid "Current %s Events"
1715
- msgstr "現在%sイベント"
1716
-
1717
  #: templates/connect.php:387
1718
- msgid "Activation, deactivation and uninstall"
1719
- msgstr "有効化、無効化、アンインストール"
 
 
 
 
 
 
 
 
1720
 
1721
- #: templates/connect.php:395
1722
  msgid "Newsletter"
1723
  msgstr "ニュースレター"
1724
 
1725
- #: templates/connect.php:403
1726
  msgid "Plugins & Themes"
1727
  msgstr "Plugins & Themes"
1728
 
1729
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1730
  msgid "Title, slug, version, and is active"
1731
  msgstr "Title, slug, version, and is active"
1732
 
1733
- #: templates/connect.php421, templates/forms/license-activation.php:41
1734
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1735
- msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。"
1736
 
1737
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1738
  msgid "What permissions are being granted?"
1739
  msgstr "付与されているパーミッションは何ですか?"
1740
 
1741
- #: templates/connect.php:452
1742
  msgid "Don't have a license key?"
1743
  msgstr "ライセンスキーをお持ちではありませんか?"
1744
 
1745
- #: templates/connect.php:455
1746
  msgid "Have a license key?"
1747
  msgstr "ライセンスキーはお持ちですか?"
1748
 
1749
- #: templates/connect.php:463
1750
  msgid "Privacy Policy"
1751
  msgstr "プライバシーポリシー"
1752
 
1753
- #: templates/connect.php:465
1754
  msgid "License Agreement"
1755
  msgstr "License Agreement"
1756
 
1757
- #: templates/connect.php:465
1758
  msgid "Terms of Service"
1759
  msgstr "利用規約"
1760
 
1761
- #: templates/connect.php:854
1762
  msgctxt "as in the process of sending an email"
1763
  msgid "Sending email"
1764
  msgstr "メール送信中"
1765
 
1766
- #: templates/connect.php:855
1767
  msgctxt "as activating plugin"
1768
  msgid "Activating"
1769
  msgstr "有効化中"
@@ -2366,7 +2394,11 @@ msgstr "購入後すぐにメールで受け取ったライセンスキーを入
2366
  msgid "Update License"
2367
  msgstr "ライセンスを更新"
2368
 
2369
- #: templates/forms/license-activation.php:181
 
 
 
 
2370
  msgid "Associate with the license owner's account."
2371
  msgstr "Associate with the license owner's account."
2372
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Odyssey <8bitodyssey+github@gmail.com>, 2016
9
  "Project-Id-Version: WordPress SDK\n"
10
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
  "POT-Creation-Date: \n"
12
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
13
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
  "Language: ja\n"
15
  "Language-Team: Japanese (http://www.transifex.com/freemius/wordpress-sdk/language/ja/)\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
+ #: includes/class-freemius.php1919, templates/account.php:912
27
  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."
28
  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."
29
 
30
+ #: includes/class-freemius.php:1926
31
  msgid "Would you like to proceed with the update?"
32
  msgstr "Would you like to proceed with the update?"
33
 
34
+ #: includes/class-freemius.php:2138
35
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
  msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
37
 
38
+ #: includes/class-freemius.php:2140
39
  msgid "Error"
40
  msgstr "エラー"
41
 
42
+ #: includes/class-freemius.php:2540
43
  msgid "I found a better %s"
44
  msgstr "より良い %sを見つけました"
45
 
46
+ #: includes/class-freemius.php:2542
47
  msgid "What's the %s's name?"
48
  msgstr "%sの名前は何ですか?"
49
 
50
+ #: includes/class-freemius.php:2548
51
  msgid "It's a temporary %s. I'm just debugging an issue."
52
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
53
 
54
+ #: includes/class-freemius.php:2550
55
  msgid "Deactivation"
56
  msgstr "無効化"
57
 
58
+ #: includes/class-freemius.php:2551
59
  msgid "Theme Switch"
60
  msgstr "テーマ変更"
61
 
62
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "その他"
66
 
67
+ #: includes/class-freemius.php:2568
68
  msgid "I no longer need the %s"
69
  msgstr "%sはもう不要です"
70
 
71
+ #: includes/class-freemius.php:2575
72
  msgid "I only needed the %s for a short period"
73
  msgstr "短期間だけ %sが 必要です。"
74
 
75
+ #: includes/class-freemius.php:2581
76
  msgid "The %s broke my site"
77
  msgstr "%s の影響でサイトを崩れました"
78
 
79
+ #: includes/class-freemius.php:2588
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s の動作が突然停止しました"
82
 
83
+ #: includes/class-freemius.php:2598
84
  msgid "I can't pay for it anymore"
85
  msgstr "もう払うことができません"
86
 
87
+ #: includes/class-freemius.php:2600
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr " 支払ってもよいと思う価格はいくらですか?"
90
 
91
+ #: includes/class-freemius.php:2606
92
  msgid "I don't like to share my information with you"
93
  msgstr "自分の情報を共有したくありません"
94
 
95
+ #: includes/class-freemius.php:2627
96
  msgid "The %s didn't work"
97
  msgstr "%s が動作しませんでした"
98
 
99
+ #: includes/class-freemius.php:2637
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "どうしたら動作するか分かりませんでした。"
102
 
103
+ #: includes/class-freemius.php:2645
104
  msgid "The %s is great, but I need specific feature that you don't support"
105
  msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
106
 
107
+ #: includes/class-freemius.php:2647
108
  msgid "What feature?"
109
  msgstr "何の機能ですか?"
110
 
111
+ #: includes/class-freemius.php:2651
112
  msgid "The %s is not working"
113
  msgstr "%s が動作していません"
114
 
115
+ #: includes/class-freemius.php:2653
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
118
 
119
+ #: includes/class-freemius.php:2657
120
  msgid "It's not what I was looking for"
121
  msgstr "探していたものではありません"
122
 
123
+ #: includes/class-freemius.php:2659
124
  msgid "What you've been looking for?"
125
  msgstr "探していたのは何ですか?"
126
 
127
+ #: includes/class-freemius.php:2663
128
  msgid "The %s didn't work as expected"
129
  msgstr "%sが期待通りに動きませんでした "
130
 
131
+ #: includes/class-freemius.php:2665
132
  msgid "What did you expect?"
133
  msgstr "何を期待していましたか?"
134
 
135
+ #: includes/class-freemius.php3520, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius デバッグ"
138
 
139
+ #: includes/class-freemius.php:4272
140
  msgid "I don't know what is cURL or how to install it, help me!"
141
  msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
142
 
143
+ #: includes/class-freemius.php:4274
144
  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."
145
  msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
146
 
147
+ #: includes/class-freemius.php:4281
148
  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."
149
  msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
150
 
151
+ #: includes/class-freemius.php:4386
152
  msgid "Yes - do your thing"
153
  msgstr "はい - お構いなく"
154
 
155
+ #: includes/class-freemius.php:4391
156
  msgid "No - just deactivate"
157
  msgstr "いいえ - すぐに無効化"
158
 
159
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
160
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
161
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
162
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
163
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
164
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
165
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
166
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "おっと"
170
 
171
+ #: includes/class-freemius.php:4505
172
  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."
173
  msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
174
 
175
+ #: includes/class-freemius.php:4927
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s は、%s が無いと実行することができません。"
179
 
180
+ #: includes/class-freemius.php:4928
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s は、プラグインが無いと実行することができません。"
184
 
185
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
186
+ #: includes/class-freemius.php:21180
187
  msgid "Unexpected API error. Please contact the %s's author with the following error."
188
  msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
189
 
190
+ #: includes/class-freemius.php:5857
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
193
 
194
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "やったー"
198
 
199
+ #: includes/class-freemius.php:5884
200
  msgid "You have a %s license."
201
  msgstr "%s ライセンスを持っています。"
202
 
203
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
204
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
205
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
206
+ #: includes/class-freemius.php:20930
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "ヤッホー"
210
 
211
+ #: includes/class-freemius.php:6174
212
  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."
213
  msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
214
 
215
+ #: includes/class-freemius.php:6178
216
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
  msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
218
 
219
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
220
  #: templates/account/partials/addon.php:381
221
  msgid "More information about %s"
222
  msgstr "%s に関する詳細情報"
223
 
224
+ #: includes/class-freemius.php:6188
225
  msgid "Purchase License"
226
  msgstr "ライセンスを購入"
227
 
228
+ #: includes/class-freemius.php7125, templates/connect.php:171
229
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
230
  msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
231
 
232
+ #: includes/class-freemius.php:7129
233
  msgid "start the trial"
234
  msgstr "トライアルを開始"
235
 
236
+ #: includes/class-freemius.php7130, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "インストールを完了"
239
 
240
+ #: includes/class-freemius.php:7249
241
  msgid "You are just one step away - %s"
242
  msgstr "もうあとわずかです - %s"
243
 
244
+ #: includes/class-freemius.php:7252
245
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
  msgid "Complete \"%s\" Activation Now"
247
  msgstr "すぐに \"%s\" 有効化を完了してください"
248
 
249
+ #: includes/class-freemius.php:7334
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "プラグインを微調整します、 %s, %s"
252
 
253
+ #: includes/class-freemius.php:7338
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Opt in to make \"%s\" better!"
256
 
257
+ #: includes/class-freemius.php:7773
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "%s のアップグレードが完了しました。"
260
 
261
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
262
+ #: includes/class-fs-plugin-updater.php1282,
263
+ #: includes/class-fs-plugin-updater.php1289,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "アドオン"
267
 
268
+ #: includes/class-freemius.php10257, templates/account.php394,
269
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "プラグイン"
272
 
273
+ #: includes/class-freemius.php10258, templates/account.php395,
274
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
275
  #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "テーマ"
278
 
279
+ #: includes/class-freemius.php:13188
280
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
 
283
+ #: includes/class-freemius.php:13202
284
  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."
285
  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."
286
 
287
+ #: includes/class-freemius.php:13207
288
  msgid "User Dashboard"
289
  msgstr "User Dashboard"
290
 
291
+ #: includes/class-freemius.php:13208
292
  msgid "revert it now"
293
  msgstr "revert it now"
294
 
295
+ #: includes/class-freemius.php:13266
296
  msgid "An unknown error has occurred while trying to set the user's beta mode."
297
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
 
299
+ #: includes/class-freemius.php:13339
300
  msgid "Invalid new user ID or email address."
301
  msgstr "Invalid new user ID or email address."
302
 
303
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
304
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
306
 
307
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
308
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
310
 
311
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
312
  msgid "Change Ownership"
313
  msgstr "オーナーを変更"
314
 
315
+ #: includes/class-freemius.php:13977
316
  msgid "Invalid site details collection."
317
  msgstr "Invalid site details collection."
318
 
319
+ #: includes/class-freemius.php:14097
320
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
322
 
323
+ #: includes/class-freemius.php:14099
324
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
326
 
327
+ #: includes/class-freemius.php:14373
328
  msgid "Account is pending activation."
329
  msgstr "アカウントは有効化待ちです。"
330
 
331
+ #: includes/class-freemius.php14485,
332
  #: templates/forms/premium-versions-upgrade-handler.php:47
333
  msgid "Buy a license now"
334
  msgstr "Buy a license now"
335
 
336
+ #: includes/class-freemius.php14497,
337
  #: templates/forms/premium-versions-upgrade-handler.php:46
338
  msgid "Renew your license now"
339
  msgstr "Renew your license now"
340
 
341
+ #: includes/class-freemius.php:14501
342
  msgid "%s to access version %s security & feature updates, and support."
343
  msgstr "%s to access version %s security & feature updates, and support."
344
 
345
+ #: includes/class-freemius.php:16929
346
  msgid "%s activation was successfully completed."
347
  msgstr "%s の有効化が成功しました。"
348
 
349
+ #: includes/class-freemius.php:16943
350
  msgid "Your account was successfully activated with the %s plan."
351
  msgstr "アカウントが %s プランで有効化できました。"
352
 
353
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
354
  msgid "Your trial has been successfully started."
355
  msgstr "トライアル版の利用を開始しました。"
356
 
357
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
358
+ #: includes/class-freemius.php:17820
359
  msgid "Couldn't activate %s."
360
  msgstr "%s を有効化できません。"
361
 
362
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
363
+ #: includes/class-freemius.php:17821
364
  msgid "Please contact us with the following message:"
365
  msgstr "以下のメッセージとともに私たちに連絡をください。"
366
 
367
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
368
  msgid "An unknown error has occurred."
369
  msgstr "An unknown error has occurred."
370
 
371
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
372
  msgid "Upgrade"
373
  msgstr "アップグレード"
374
 
375
+ #: includes/class-freemius.php:18184
376
  msgid "Start Trial"
377
  msgstr "トライアルを開始"
378
 
379
+ #: includes/class-freemius.php:18186
380
  msgid "Pricing"
381
  msgstr "料金表"
382
 
383
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
384
  msgid "Affiliation"
385
  msgstr "アフィリエイト"
386
 
387
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
388
+ #: templates/account.php242, templates/debug.php:324
389
  msgid "Account"
390
  msgstr "アカウント"
391
 
392
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
393
  #: includes/customizer/class-fs-customizer-support-section.php:60
394
  msgid "Contact Us"
395
  msgstr "連絡"
396
 
397
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
398
+ #: includes/class-freemius.php23354, templates/account.php121,
399
  #: templates/account/partials/addon.php:44
400
  msgid "Add-Ons"
401
  msgstr "アドオン"
402
 
403
+ #: includes/class-freemius.php:18361
404
  msgctxt "ASCII arrow left icon"
405
  msgid "&#x2190;"
406
  msgstr "&#x2190;"
407
 
408
+ #: includes/class-freemius.php:18361
409
  msgctxt "ASCII arrow right icon"
410
  msgid "&#x27a4;"
411
  msgstr "&#x27a4;"
412
 
413
+ #: includes/class-freemius.php18363, templates/pricing.php:109
414
  msgctxt "noun"
415
  msgid "Pricing"
416
  msgstr "料金表"
417
 
418
+ #: includes/class-freemius.php18576,
419
  #: includes/customizer/class-fs-customizer-support-section.php:67
420
  msgid "Support Forum"
421
  msgstr "サポートフォーラム"
422
 
423
+ #: includes/class-freemius.php:19550
424
  msgid "Your email has been successfully verified - you are AWESOME!"
425
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
426
 
427
+ #: includes/class-freemius.php:19551
428
  msgctxt "a positive response"
429
  msgid "Right on"
430
  msgstr "そうだ"
431
 
432
+ #: includes/class-freemius.php:20057
433
  msgid "seems like the key you entered doesn't match our records."
434
  msgstr "seems like the key you entered doesn't match our records."
435
 
436
+ #: includes/class-freemius.php:20081
437
  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."
438
  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."
439
 
440
+ #: includes/class-freemius.php:20316
441
  msgid "Your %s Add-on plan was successfully upgraded."
442
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
443
 
444
+ #: includes/class-freemius.php:20318
445
  msgid "%s Add-on was successfully purchased."
446
  msgstr "%s のアドオンの支払いが完了しました。"
447
 
448
+ #: includes/class-freemius.php:20321
449
  msgid "Download the latest version"
450
  msgstr "最新版をダウンロード"
451
 
452
+ #: includes/class-freemius.php:20407
453
  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"
454
  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"
455
 
456
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
457
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
458
  msgid "Error received from the server:"
459
  msgstr "サーバーからエラーを受信しました。"
460
 
461
+ #: includes/class-freemius.php:20423
462
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
464
 
465
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
466
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
467
  msgctxt ""
468
  msgid "Hmm"
469
  msgstr "ふむ"
470
 
471
+ #: includes/class-freemius.php:20664
472
  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
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
474
 
475
+ #: includes/class-freemius.php20665, templates/account.php123,
476
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
  msgctxt "trial period"
478
  msgid "Trial"
479
  msgstr "トライアル"
480
 
481
+ #: includes/class-freemius.php:20670
482
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
484
 
485
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
486
  msgid "Please contact us here"
487
  msgstr "こちらで私たちに連絡をとってください。"
488
 
489
+ #: includes/class-freemius.php:20685
490
  msgid "Your plan was successfully activated."
491
  msgstr "Your plan was successfully activated."
492
 
493
+ #: includes/class-freemius.php:20686
494
  msgid "Your plan was successfully upgraded."
495
  msgstr "プランのアップグレードが成功しました。"
496
 
497
+ #: includes/class-freemius.php:20703
498
  msgid "Your plan was successfully changed to %s."
499
  msgstr "プランの %s への変更が成功しました。"
500
 
501
+ #: includes/class-freemius.php:20719
502
  msgid "Your license has expired. You can still continue using the free %s forever."
503
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
504
 
505
+ #: includes/class-freemius.php:20721
506
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
508
 
509
+ #: includes/class-freemius.php:20729
510
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
512
 
513
+ #: includes/class-freemius.php:20742
514
  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."
515
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
516
 
517
+ #: includes/class-freemius.php:20768
518
  msgid "Your free trial has expired. You can still continue using all our free features."
519
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
520
 
521
+ #: includes/class-freemius.php:20770
522
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
  msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
524
 
525
+ #: includes/class-freemius.php:20885
526
  msgid "It looks like the license could not be activated."
527
  msgstr "ライセンスの有効化ができませんでした。"
528
 
529
+ #: includes/class-freemius.php:20927
530
  msgid "Your license was successfully activated."
531
  msgstr "ライセンスの有効化が成功しました。"
532
 
533
+ #: includes/class-freemius.php:20953
534
  msgid "It looks like your site currently doesn't have an active license."
535
  msgstr "サイトは有効なライセンスを持っていないようです。"
536
 
537
+ #: includes/class-freemius.php:20977
538
  msgid "It looks like the license deactivation failed."
539
  msgstr "ライセンスの無効化ができませんでした。"
540
 
541
+ #: includes/class-freemius.php:21006
542
  msgid "Your %s license was successfully deactivated."
543
  msgstr "Your %s license was successfully deactivated."
544
 
545
+ #: includes/class-freemius.php:21007
546
  msgid "Your license was successfully deactivated, you are back to the %s plan."
547
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
548
 
549
+ #: includes/class-freemius.php:21010
550
  msgid "O.K"
551
  msgstr "O.K"
552
 
553
+ #: includes/class-freemius.php:21063
554
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
 
557
+ #: includes/class-freemius.php:21072
558
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
 
561
+ #: includes/class-freemius.php:21114
562
  msgid "You are already running the %s in a trial mode."
563
  msgstr "すでに%sをトライアルモードで利用中です。"
564
 
565
+ #: includes/class-freemius.php:21125
566
  msgid "You already utilized a trial before."
567
  msgstr "以前すでに試用版を利用しました。"
568
 
569
+ #: includes/class-freemius.php:21139
570
  msgid "Plan %s do not exist, therefore, can't start a trial."
571
  msgstr "%s プランは存在しないため、試用を開始できません。"
572
 
573
+ #: includes/class-freemius.php:21150
574
  msgid "Plan %s does not support a trial period."
575
  msgstr "%s プランにはトライアル期間はありません。"
576
 
577
+ #: includes/class-freemius.php:21161
578
  msgid "None of the %s's plans supports a trial period."
579
  msgstr "%sのプランにはトライアル期間はありません。"
580
 
581
+ #: includes/class-freemius.php:21211
582
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
584
 
585
+ #: includes/class-freemius.php:21247
586
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
588
 
589
+ #: includes/class-freemius.php:21266
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "%s のフリートライアルはキャンセルされました。"
592
 
593
+ #: includes/class-freemius.php:21582
594
  msgid "Version %s was released."
595
  msgstr "バージョン %s をリリースしました。"
596
 
597
+ #: includes/class-freemius.php:21582
598
  msgid "Please download %s."
599
  msgstr "%s をダウンロードしてください。"
600
 
601
+ #: includes/class-freemius.php:21589
602
  msgid "the latest %s version here"
603
  msgstr "最新の %s バージョンはこちらです。"
604
 
605
+ #: includes/class-freemius.php:21594
606
  msgid "New"
607
  msgstr "新規"
608
 
609
+ #: includes/class-freemius.php:21599
610
  msgid "Seems like you got the latest release."
611
  msgstr "最新版を取得できました。"
612
 
613
+ #: includes/class-freemius.php:21600
614
  msgid "You are all good!"
615
  msgstr "すべて完璧です!"
616
 
617
+ #: includes/class-freemius.php:21903
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
620
 
621
+ #: includes/class-freemius.php:22043
622
  msgid "Site successfully opted in."
623
  msgstr "サイトのオプトインに成功しました。"
624
 
625
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
626
  msgid "Awesome"
627
  msgstr "すごい!"
628
 
629
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
632
 
633
+ #: includes/class-freemius.php:22061
634
  msgid "Thank you!"
635
  msgstr "ありがとうございます!"
636
 
637
+ #: includes/class-freemius.php:22068
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
640
 
641
+ #: includes/class-freemius.php:22226
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
644
 
645
+ #: includes/class-freemius.php:22232
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
648
 
649
+ #: includes/class-freemius.php:22237
650
  msgid "%s is the new owner of the account."
651
  msgstr "%s は新しいオーナーです。"
652
 
653
+ #: includes/class-freemius.php:22239
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "おめでとう"
657
 
658
+ #: includes/class-freemius.php:22275
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
661
 
662
+ #: includes/class-freemius.php:22287
663
  msgid "Please provide your full name."
664
  msgstr "フルネームを入力してください。"
665
 
666
+ #: includes/class-freemius.php:22292
667
  msgid "Your name was successfully updated."
668
  msgstr "名前のアップデートが成功しました。"
669
 
670
+ #: includes/class-freemius.php:22353
671
  msgid "You have successfully updated your %s."
672
  msgstr "%s のアップデートが成功しました。"
673
 
674
+ #: includes/class-freemius.php:22412
675
  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."
676
  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."
677
 
678
+ #: includes/class-freemius.php:22415
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
+ #: includes/class-freemius.php:22513
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
685
 
686
+ #: includes/class-freemius.php:22514
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "警告"
690
 
691
+ #: includes/class-freemius.php:23090
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "ヘイ"
695
 
696
+ #: includes/class-freemius.php:23090
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
699
 
700
+ #: includes/class-freemius.php:23098
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "%s 日以内であればいつでもキャンセルできます。"
703
 
704
+ #: includes/class-freemius.php:23099
705
  msgid "No credit card required"
706
  msgstr "クレジットカードは必要ありません。"
707
 
708
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "フリートライアルを開始"
712
 
713
+ #: includes/class-freemius.php:23183
714
  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!"
715
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
716
 
717
+ #: includes/class-freemius.php:23192
718
  msgid "Learn more"
719
  msgstr "詳細はこちら"
720
 
721
+ #: includes/class-freemius.php23378, templates/account.php558,
722
+ #: templates/account.php708, templates/connect.php179,
723
+ #: templates/connect.php461, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "ライセンスを有効化"
727
 
728
+ #: includes/class-freemius.php23379, templates/account.php652,
729
+ #: templates/account.php707, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "ライセンスを変更"
733
 
734
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "オプトアウト"
737
 
738
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "オプトイン"
743
 
744
+ #: includes/class-freemius.php:23738
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
 
748
+ #: includes/class-freemius.php:23746
749
  msgid "Activate %s features"
750
  msgstr "Activate %s features"
751
 
752
+ #: includes/class-freemius.php:23759
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
755
 
756
+ #: includes/class-freemius.php:23763
757
  msgid "Download the latest %s version"
758
  msgstr "最新の %s をダウンロード"
759
 
760
+ #: includes/class-freemius.php:23767
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
763
 
764
+ #: includes/class-freemius.php:23769
765
  msgid "How to upload and activate?"
766
  msgstr "アップロードと有効化の方法"
767
 
768
+ #: includes/class-freemius.php:23903
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
771
 
772
+ #: includes/class-freemius.php:24072
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
775
 
776
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
777
+ #: includes/class-fs-plugin-updater.php1261,
778
+ #: includes/class-fs-plugin-updater.php:1275
779
  msgid "Invalid module ID."
780
  msgstr "モジュール ID が不正です"
781
 
782
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
783
  msgid "Premium version already active."
784
  msgstr "プレミアムバージョンはすでに有効になっています。"
785
 
786
+ #: includes/class-freemius.php:24098
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
789
 
790
+ #: includes/class-freemius.php:24105
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
793
 
794
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
795
  msgid "Premium add-on version already installed."
796
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
797
 
798
+ #: includes/class-freemius.php:24473
799
  msgid "View paid features"
800
  msgstr "有料の機能を表示する"
801
 
802
+ #: includes/class-freemius.php:24795
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "%sとアドオンのご利用ありがとうございます!"
805
 
806
+ #: includes/class-freemius.php:24796
807
  msgid "Thank you so much for using %s!"
808
  msgstr "%sのご利用ありがとうございます!"
809
 
810
+ #: includes/class-freemius.php:24802
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
813
 
814
+ #: includes/class-freemius.php:24806
815
  msgid "Thank you so much for using our products!"
816
  msgstr "プロダクトのご利用ありがとうございます!"
817
 
818
+ #: includes/class-freemius.php:24807
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
821
 
822
+ #: includes/class-freemius.php:24826
823
  msgid "%s and its add-ons"
824
  msgstr "%sとそのアドオン"
825
 
826
+ #: includes/class-freemius.php:24835
827
  msgid "Products"
828
  msgstr "プロダクト"
829
 
830
+ #: includes/class-freemius.php24842, templates/connect.php:275
831
  msgid "Yes"
832
  msgstr "はい"
833
 
834
+ #: includes/class-freemius.php24843, templates/connect.php:276
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
837
 
838
+ #: includes/class-freemius.php24844, templates/connect.php:281
839
  msgid "No"
840
  msgstr "いいえ"
841
 
842
+ #: includes/class-freemius.php24846, templates/connect.php:283
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
845
 
846
+ #: includes/class-freemius.php:24856
847
  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 :-)"
848
  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 :-)"
849
 
850
+ #: includes/class-freemius.php24858, templates/connect.php:290
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
853
 
854
+ #: includes/class-freemius.php:25140
855
  msgid "License key is empty."
856
  msgstr "ライセンスキーが空です。"
857
 
884
  msgid "Important Upgrade Notice:"
885
  msgstr "Important Upgrade Notice:"
886
 
887
+ #: includes/class-fs-plugin-updater.php:1326
888
  msgid "Installing plugin: %s"
889
  msgstr "インストール中プラグイン: %s"
890
 
891
+ #: includes/class-fs-plugin-updater.php:1367
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
894
 
895
+ #: includes/class-fs-plugin-updater.php:1549
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
898
 
914
  msgid "Install Free Version Update Now"
915
  msgstr "フリーバージョンの更新を今すぐインストール"
916
 
917
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
918
  msgid "Install Update Now"
919
  msgstr "今すぐ更新をインストール"
920
 
934
  msgid "Download Latest Free Version"
935
  msgstr "最新のフリーバージョンをダウンロード"
936
 
937
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
946
  msgid "Activate this add-on"
947
  msgstr "このアドオンを有効化"
948
 
949
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
950
  msgid "Activate Free Version"
951
  msgstr "フリーバージョンを有効化"
952
 
953
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "有効化"
1086
  msgid "Details"
1087
  msgstr "詳細"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
1102
  msgid "Last Updated"
1103
  msgstr "最終更新"
1104
 
1105
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s 前"
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "最新のフリーバージョンがインストールされました"
1215
 
1216
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "Downgrading your plan"
1221
 
1222
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
 
1235
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  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."
1240
 
1241
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
1245
 
1246
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
 
1252
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
+ #: templates/account.php111,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "%s プランを有効化"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
+ #: templates/account.php114, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "%s に自動更新"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
+ #: templates/account.php116, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "%s で期間終了"
1276
 
1277
+ #: templates/account.php:117
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "ライセンスを同期"
1281
 
1282
+ #: templates/account.php118, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "トライアルをキャンセル"
1285
 
1286
+ #: templates/account.php119, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "プラン変更"
1289
 
1290
+ #: templates/account.php120, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "アップグレード"
1294
 
1295
+ #: templates/account.php122, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "ダウングレード"
1300
 
1301
+ #: templates/account.php124, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "無料"
1307
 
1308
+ #: templates/account.php126, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "プラン"
1314
 
1315
+ #: templates/account.php:127
1316
  msgid "Bundle Plan"
1317
  msgstr "Bundle Plan"
1318
 
1319
+ #: templates/account.php:250
1320
  msgid "Free Trial"
1321
  msgstr "フリートライアル"
1322
 
1323
+ #: templates/account.php:261
1324
  msgid "Account Details"
1325
  msgstr "アカウント詳細"
1326
 
1327
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
+ #: templates/account.php:270
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
+ #: templates/account.php:277
1336
  msgid "Billing & Invoices"
1337
  msgstr "Billing & Invoices"
1338
 
1339
+ #: templates/account.php:288
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1342
 
1343
+ #: templates/account.php:290
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1346
 
1347
+ #: templates/account.php:293
1348
  msgid "Delete Account"
1349
  msgstr "アカウントを削除"
1350
 
1351
+ #: templates/account.php305, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "ライセンスを無効化"
1355
 
1356
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "本当に続行していいですか?"
1359
 
1360
+ #: templates/account.php328, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "サブスクリプションをキャンセルする"
1363
 
1364
+ #: templates/account.php357, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "同期"
1368
 
1369
+ #: templates/account.php372, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "名前"
1372
 
1373
+ #: templates/account.php378, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "Email"
1376
 
1377
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "ユーザー ID"
1380
 
1381
+ #: templates/account.php403, templates/account.php721,
1382
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ID"
1388
 
1389
+ #: templates/account.php:410
1390
  msgid "Site ID"
1391
  msgstr "サイト ID"
1392
 
1393
+ #: templates/account.php:413
1394
  msgid "No ID"
1395
  msgstr "ID がありません"
1396
 
1397
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "公開鍵"
1402
 
1403
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "秘密鍵"
1407
 
1408
+ #: templates/account.php:427
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "秘密鍵がありません"
1412
 
1413
+ #: templates/account.php454, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "トライアル"
1417
 
1418
+ #: templates/account.php481, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "ライセンスキー"
1422
 
1423
+ #: templates/account.php:512
1424
  msgid "Join the Beta program"
1425
  msgstr "Join the Beta program"
1426
 
1427
+ #: templates/account.php:518
1428
  msgid "not verified"
1429
  msgstr "未認証"
1430
 
1431
+ #: templates/account.php527, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "期限切れ"
1434
 
1435
+ #: templates/account.php:587
1436
  msgid "Premium version"
1437
  msgstr "プレミアムバージョン"
1438
 
1439
+ #: templates/account.php:589
1440
  msgid "Free version"
1441
  msgstr "フリーバージョン"
1442
 
1443
+ #: templates/account.php:601
1444
  msgid "Verify Email"
1445
  msgstr "認証メール"
1446
 
1447
+ #: templates/account.php:615
1448
  msgid "Download %s Version"
1449
  msgstr "%s バージョンをダウンロード"
1450
 
1451
+ #: templates/account.php:631
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
+ #: templates/account.php649, templates/account.php892,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "表示"
1461
 
1462
+ #: templates/account.php:664
1463
  msgid "What is your %s?"
1464
  msgstr "自分の %s はなんですか?"
1465
 
1466
+ #: templates/account.php672, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "編集"
1470
 
1471
+ #: templates/account.php676, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
+ #: templates/account.php:700
1476
  msgid "Sites"
1477
  msgstr "サイト数"
1478
 
1479
+ #: templates/account.php:713
1480
  msgid "Search by address"
1481
  msgstr "住所で検索する"
1482
 
1483
+ #: templates/account.php722, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "住所"
1486
 
1487
+ #: templates/account.php:723
1488
  msgid "License"
1489
  msgstr "ライセンス"
1490
 
1491
+ #: templates/account.php:724
1492
  msgid "Plan"
1493
  msgstr "プラン"
1494
 
1495
+ #: templates/account.php:757
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "ライセンス"
1499
 
1500
+ #: templates/account.php:886
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "非表示"
1504
 
1505
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "Processing"
1508
 
1509
+ #: templates/account.php:911
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "Get updates for bleeding edge Beta versions of %s."
1512
 
1513
+ #: templates/account.php:969
1514
  msgid "Cancelling %s"
1515
  msgstr "Cancelling %s"
1516
 
1517
+ #: templates/account.php969, templates/account.php986,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "trial"
1522
 
1523
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "Cancelling %s..."
1526
 
1527
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "subscription"
1531
 
1532
+ #: templates/account.php:1001
1533
  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?"
1534
  msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
1535
 
1536
+ #: templates/account.php:1075
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
+ #: templates/account.php:1076
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
1563
  msgid "Installed"
1564
  msgstr "Installed"
1565
 
1566
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
1619
  msgid "Agree & Activate License"
1620
  msgstr "同意してライセンスを有効化"
1621
 
1622
+ #: templates/connect.php:184
1623
+ msgid "Welcome to %s! To get started, please enter your license key:"
1624
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1625
 
1626
+ #: templates/connect.php:191
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1629
 
1630
+ #: templates/connect.php:192
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1633
 
1634
+ #: templates/connect.php:198
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1637
 
1638
+ #: templates/connect.php:199
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1641
 
1642
+ #: templates/connect.php:233
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "Freeminus ネットワークレベルのインテグレーションをご紹介できることに興奮しています。"
1645
 
1646
+ #: templates/connect.php:236
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "アップデートの処理中に%dサイトがライセンスの有効化が保留中であることを検知しました。"
1649
 
1650
+ #: templates/connect.php:238
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "これらのサイトで%sを使う場合は、ライセンスキーを入力し、アクティベーションボタンをクリックしてください。"
1653
 
1654
+ #: templates/connect.php:240
1655
  msgid "%s's paid features"
1656
  msgstr "%sの有料機能"
1657
 
1658
+ #: templates/connect.php:245
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "または、今すぐスキップして、%sのネットワークレベルのアカウントページでライセンスを有効にすることもできます。"
1661
 
1662
+ #: templates/connect.php:247
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。"
1665
 
1666
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "ライセンスキー"
1670
 
1671
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "ライセンスキーは見つかりませんか?"
1674
 
1675
+ #: templates/connect.php318, templates/connect.php700,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "スキップ"
1680
 
1681
+ #: templates/connect.php:321
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "サイト管理者に委任する"
1684
 
1685
+ #: templates/connect.php:321
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "決定をサイトの管理者に委任するにはクリックしてください。"
1688
 
1689
+ #: templates/connect.php:346
1690
+ msgid "License issues?"
1691
+ msgstr "License issues?"
1692
+
1693
+ #: templates/connect.php:362
1694
  msgid "Your Profile Overview"
1695
  msgstr "プロフィール概要"
1696
 
1697
+ #: templates/connect.php:363
1698
  msgid "Name and email address"
1699
  msgstr "名前とメールアドレス"
1700
 
1701
+ #: templates/connect.php:370
1702
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1703
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1704
+
1705
+ #: templates/connect.php:371
1706
  msgid "Your Site Overview"
1707
  msgstr "サイト概要"
1708
 
1709
+ #: templates/connect.php:372
1710
  msgid "Site URL, WP version, PHP info"
1711
  msgstr "Site URL, WP version, PHP info"
1712
 
1714
  msgid "Admin Notices"
1715
  msgstr "管理者通知"
1716
 
1717
+ #: templates/connect.php380, templates/connect.php:398
1718
  msgid "Updates, announcements, marketing, no spam"
1719
  msgstr "更新、発表、マーケティング、スパムなし"
1720
 
 
 
 
 
1721
  #: templates/connect.php:387
1722
+ msgid "So you can reuse the license when the %s is no longer active."
1723
+ msgstr "So you can reuse the license when the %s is no longer active."
1724
+
1725
+ #: templates/connect.php:388
1726
+ msgid "Current %s Status"
1727
+ msgstr "Current %s Status"
1728
+
1729
+ #: templates/connect.php:389
1730
+ msgid "Active, deactivated, or uninstalled"
1731
+ msgstr "Active, deactivated, or uninstalled"
1732
 
1733
+ #: templates/connect.php:397
1734
  msgid "Newsletter"
1735
  msgstr "ニュースレター"
1736
 
1737
+ #: templates/connect.php:405
1738
  msgid "Plugins & Themes"
1739
  msgstr "Plugins & Themes"
1740
 
1741
+ #: templates/connect.php:405
1742
+ msgid "optional"
1743
+ msgstr "optional"
1744
+
1745
+ #: templates/connect.php:406
1746
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1748
+
1749
+ #: templates/connect.php:407
1750
  msgid "Title, slug, version, and is active"
1751
  msgstr "Title, slug, version, and is active"
1752
 
1753
+ #: templates/connect.php:424
1754
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1756
 
1757
  #: templates/connect.php:426
1758
+ msgid "diagnostic data"
1759
+ msgstr "diagnostic data"
1760
+
1761
+ #: templates/connect.php:427
1762
+ msgid "Freemius is our licensing and software updates engine"
1763
+ msgstr "Freemius is our licensing and software updates engine"
1764
+
1765
+ #: templates/connect.php:430
1766
  msgid "What permissions are being granted?"
1767
  msgstr "付与されているパーミッションは何ですか?"
1768
 
1769
+ #: templates/connect.php:457
1770
  msgid "Don't have a license key?"
1771
  msgstr "ライセンスキーをお持ちではありませんか?"
1772
 
1773
+ #: templates/connect.php:460
1774
  msgid "Have a license key?"
1775
  msgstr "ライセンスキーはお持ちですか?"
1776
 
1777
+ #: templates/connect.php:468
1778
  msgid "Privacy Policy"
1779
  msgstr "プライバシーポリシー"
1780
 
1781
+ #: templates/connect.php:470
1782
  msgid "License Agreement"
1783
  msgstr "License Agreement"
1784
 
1785
+ #: templates/connect.php:470
1786
  msgid "Terms of Service"
1787
  msgstr "利用規約"
1788
 
1789
+ #: templates/connect.php:866
1790
  msgctxt "as in the process of sending an email"
1791
  msgid "Sending email"
1792
  msgstr "メール送信中"
1793
 
1794
+ #: templates/connect.php:867
1795
  msgctxt "as activating plugin"
1796
  msgid "Activating"
1797
  msgstr "有効化中"
2394
  msgid "Update License"
2395
  msgstr "ライセンスを更新"
2396
 
2397
+ #: templates/forms/license-activation.php:41
2398
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2399
+ msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。"
2400
+
2401
+ #: templates/forms/license-activation.php:183
2402
  msgid "Associate with the license owner's account."
2403
  msgstr "Associate with the license owner's account."
2404
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Benny Vluggen <benny@prodevign.com>, 2017-2018
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: nl_NL\n"
14
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n"
@@ -22,835 +22,835 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php1912, templates/account.php:910
26
  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."
27
  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."
28
 
29
- #: includes/class-freemius.php:1919
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "Would you like to proceed with the update?"
32
 
33
- #: includes/class-freemius.php:2131
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  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."
36
 
37
- #: includes/class-freemius.php:2133
38
  msgid "Error"
39
  msgstr "Fout"
40
 
41
- #: includes/class-freemius.php:2533
42
  msgid "I found a better %s"
43
  msgstr "Ik vond een beter %s"
44
 
45
- #: includes/class-freemius.php:2535
46
  msgid "What's the %s's name?"
47
  msgstr "Wat is de naam van het %s?"
48
 
49
- #: includes/class-freemius.php:2541
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
52
 
53
- #: includes/class-freemius.php:2543
54
  msgid "Deactivation"
55
  msgstr "Deactivatie"
56
 
57
- #: includes/class-freemius.php:2544
58
  msgid "Theme Switch"
59
  msgstr "Thema Wissel"
60
 
61
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "Overige"
65
 
66
- #: includes/class-freemius.php:2561
67
  msgid "I no longer need the %s"
68
  msgstr "Ik heb de %s niet meer nodig "
69
 
70
- #: includes/class-freemius.php:2568
71
  msgid "I only needed the %s for a short period"
72
  msgstr "Ik had de %s alleen nodig voor een korte periode."
73
 
74
- #: includes/class-freemius.php:2574
75
  msgid "The %s broke my site"
76
  msgstr "De %s maakte mijn site onbruikbaar"
77
 
78
- #: includes/class-freemius.php:2581
79
  msgid "The %s suddenly stopped working"
80
  msgstr "De %s werkte opeens niet meer"
81
 
82
- #: includes/class-freemius.php:2591
83
  msgid "I can't pay for it anymore"
84
  msgstr "Ik kan er niet langer meer voor betalen"
85
 
86
- #: includes/class-freemius.php:2593
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "Welke bedrag zou je ervoor over hebben?"
89
 
90
- #: includes/class-freemius.php:2599
91
  msgid "I don't like to share my information with you"
92
  msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
93
 
94
- #: includes/class-freemius.php:2620
95
  msgid "The %s didn't work"
96
  msgstr "De %s werkte niet"
97
 
98
- #: includes/class-freemius.php:2630
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
101
 
102
- #: includes/class-freemius.php:2638
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
105
 
106
- #: includes/class-freemius.php:2640
107
  msgid "What feature?"
108
  msgstr "Welke feature?"
109
 
110
- #: includes/class-freemius.php:2644
111
  msgid "The %s is not working"
112
  msgstr "De %s werkt niet"
113
 
114
- #: includes/class-freemius.php:2646
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
117
 
118
- #: includes/class-freemius.php:2650
119
  msgid "It's not what I was looking for"
120
  msgstr "Het is niet waarna ik opzoek was"
121
 
122
- #: includes/class-freemius.php:2652
123
  msgid "What you've been looking for?"
124
  msgstr "Waar was je naar op zoek?"
125
 
126
- #: includes/class-freemius.php:2656
127
  msgid "The %s didn't work as expected"
128
  msgstr "De %s werkte niet zoals verwacht"
129
 
130
- #: includes/class-freemius.php:2658
131
  msgid "What did you expect?"
132
  msgstr "Wat had je verwacht?"
133
 
134
- #: includes/class-freemius.php3513, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Freemius Debug"
137
 
138
- #: includes/class-freemius.php:4265
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
141
 
142
- #: includes/class-freemius.php:4267
143
  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."
144
  msgstr "We doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
145
 
146
- #: includes/class-freemius.php:4274
147
  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."
148
  msgstr "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
149
 
150
- #: includes/class-freemius.php:4379
151
  msgid "Yes - do your thing"
152
  msgstr "Ja, ga je gang"
153
 
154
- #: includes/class-freemius.php:4384
155
  msgid "No - just deactivate"
156
  msgstr "Nee - alleen deactiveren"
157
 
158
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
159
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
160
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
161
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
162
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
163
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
164
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
165
- #: includes/class-freemius.php22274, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "Oeps"
169
 
170
- #: includes/class-freemius.php:4498
171
  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."
172
  msgstr "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
173
 
174
- #: includes/class-freemius.php:4920
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s werkt niet zonder %s."
178
 
179
- #: includes/class-freemius.php:4921
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "%s werkt niet zonder de plug-in."
183
 
184
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
185
- #: includes/class-freemius.php:21150
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
188
 
189
- #: includes/class-freemius.php:5848
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s versie is succesvol geactiveerd."
192
 
193
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
- #: includes/class-freemius.php:5875
199
  msgid "You have a %s license."
200
  msgstr "Je hebt een %s licentie"
201
 
202
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
203
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
204
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
205
- #: includes/class-freemius.php:20900
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "Hoera"
209
 
210
- #: includes/class-freemius.php:6165
211
  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."
212
  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."
213
 
214
- #: includes/class-freemius.php:6169
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
217
 
218
- #: includes/class-freemius.php6178, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "Meer informatie over %s"
222
 
223
- #: includes/class-freemius.php:6179
224
  msgid "Purchase License"
225
  msgstr "Licentie Kopen"
226
 
227
- #: includes/class-freemius.php7118, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
230
 
231
- #: includes/class-freemius.php:7122
232
  msgid "start the trial"
233
  msgstr "start de proefperiode"
234
 
235
- #: includes/class-freemius.php7123, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "voltooi de installatie"
238
 
239
- #: includes/class-freemius.php:7241
240
  msgid "You are just one step away - %s"
241
  msgstr "Je bent slechts een stap verwijderd - %s"
242
 
243
- #: includes/class-freemius.php:7244
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "Voltooi \"%s\" Activatie Nu"
247
 
248
- #: includes/class-freemius.php:7322
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
251
 
252
- #: includes/class-freemius.php:7326
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt-in om \"%s\" te verbeteren!"
255
 
256
- #: includes/class-freemius.php:7761
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "De upgrade van %s is succesvol voltooid."
259
 
260
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
261
- #: includes/class-fs-plugin-updater.php1294,
262
- #: includes/class-fs-plugin-updater.php1301,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Uitbreiding"
266
 
267
- #: includes/class-freemius.php10245, templates/account.php392,
268
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "Plug-in"
271
 
272
- #: includes/class-freemius.php10246, templates/account.php393,
273
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "Thema"
277
 
278
- #: includes/class-freemius.php:13176
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
- #: includes/class-freemius.php:13190
283
  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."
284
  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."
285
 
286
- #: includes/class-freemius.php:13195
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
- #: includes/class-freemius.php:13196
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
- #: includes/class-freemius.php:13255
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
 
298
- #: includes/class-freemius.php:13328
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Invalid new user ID or email address."
301
 
302
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
305
 
306
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
309
 
310
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
311
  msgid "Change Ownership"
312
  msgstr "Eigendom Overdragen"
313
 
314
- #: includes/class-freemius.php:13942
315
  msgid "Invalid site details collection."
316
  msgstr "Ongeldige verzameling van Site Details."
317
 
318
- #: includes/class-freemius.php:14062
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
321
 
322
- #: includes/class-freemius.php:14064
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
325
 
326
- #: includes/class-freemius.php:14338
327
  msgid "Account is pending activation."
328
  msgstr "Account wacht op activatie."
329
 
330
- #: includes/class-freemius.php14450,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Koop nu een licentie"
334
 
335
- #: includes/class-freemius.php14462,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Vernieuw je licentie nu"
339
 
340
- #: includes/class-freemius.php:14466
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
343
 
344
- #: includes/class-freemius.php:16907
345
  msgid "%s activation was successfully completed."
346
  msgstr "%s activatie is succesvol voltooid."
347
 
348
- #: includes/class-freemius.php:16921
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "Je account is succesvol geactiveerd met het %s plan."
351
 
352
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
353
  msgid "Your trial has been successfully started."
354
  msgstr "U proefperiode is met succes gestart."
355
 
356
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
357
- #: includes/class-freemius.php:17804
358
  msgid "Couldn't activate %s."
359
  msgstr "Kon %s niet activeren."
360
 
361
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
362
- #: includes/class-freemius.php:17805
363
  msgid "Please contact us with the following message:"
364
  msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
365
 
366
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "An unknown error has occurred."
369
 
370
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
371
  msgid "Upgrade"
372
  msgstr "Upgrade"
373
 
374
- #: includes/class-freemius.php:18168
375
  msgid "Start Trial"
376
  msgstr "Start Proefperiode"
377
 
378
- #: includes/class-freemius.php:18170
379
  msgid "Pricing"
380
  msgstr "Prijzen"
381
 
382
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
383
  msgid "Affiliation"
384
  msgstr "Affiliatie"
385
 
386
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
387
- #: templates/account.php240, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "Account"
390
 
391
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "Contacteer Ons"
395
 
396
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
397
- #: includes/class-freemius.php23324, templates/account.php119,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Uitbreidingen"
401
 
402
- #: includes/class-freemius.php:18345
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
- #: includes/class-freemius.php:18345
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
- #: includes/class-freemius.php18347, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "Prijzen"
416
 
417
- #: includes/class-freemius.php18560,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "Supportforum"
421
 
422
- #: includes/class-freemius.php:19534
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
425
 
426
- #: includes/class-freemius.php:19535
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "Toppie"
430
 
431
- #: includes/class-freemius.php:20041
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "seems like the key you entered doesn't match our records."
434
 
435
- #: includes/class-freemius.php:20065
436
  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."
437
  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."
438
 
439
- #: includes/class-freemius.php:20300
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
442
 
443
- #: includes/class-freemius.php:20302
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "%s Add-on werd succesvol aangekocht."
446
 
447
- #: includes/class-freemius.php:20305
448
  msgid "Download the latest version"
449
  msgstr "Download de meeste recente versie"
450
 
451
- #: includes/class-freemius.php:20391
452
  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"
453
  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"
454
 
455
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
456
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
457
  msgid "Error received from the server:"
458
  msgstr "Foutmelding ontvangen van de server:"
459
 
460
- #: includes/class-freemius.php:20407
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
463
 
464
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
465
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "Hmm"
469
 
470
- #: includes/class-freemius.php:20634
471
  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."
472
  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."
473
 
474
- #: includes/class-freemius.php20635, templates/account.php121,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "Proefperiode"
479
 
480
- #: includes/class-freemius.php:20640
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
483
 
484
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
485
  msgid "Please contact us here"
486
  msgstr "Neem hier a.u.b. contact met ons op"
487
 
488
- #: includes/class-freemius.php:20655
489
  msgid "Your plan was successfully activated."
490
  msgstr "Your plan was successfully activated."
491
 
492
- #: includes/class-freemius.php:20656
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "Je plan is succesvol geüpgraded."
495
 
496
- #: includes/class-freemius.php:20673
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "Je plan is succesvol veranderd naar %s."
499
 
500
- #: includes/class-freemius.php:20689
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
503
 
504
- #: includes/class-freemius.php:20691
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
507
 
508
- #: includes/class-freemius.php:20699
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
511
 
512
- #: includes/class-freemius.php:20712
513
  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."
514
  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."
515
 
516
- #: includes/class-freemius.php:20738
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
519
 
520
- #: includes/class-freemius.php:20740
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
523
 
524
- #: includes/class-freemius.php:20855
525
  msgid "It looks like the license could not be activated."
526
  msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
527
 
528
- #: includes/class-freemius.php:20897
529
  msgid "Your license was successfully activated."
530
  msgstr "Je licentie is succesvol geactiveerd."
531
 
532
- #: includes/class-freemius.php:20923
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
535
 
536
- #: includes/class-freemius.php:20947
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
539
 
540
- #: includes/class-freemius.php:20976
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Your %s license was successfully deactivated."
543
 
544
- #: includes/class-freemius.php:20977
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
547
 
548
- #: includes/class-freemius.php:20980
549
  msgid "O.K"
550
  msgstr "Oké"
551
 
552
- #: includes/class-freemius.php:21033
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  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."
555
 
556
- #: includes/class-freemius.php:21042
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
559
 
560
- #: includes/class-freemius.php:21084
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "Je draait de %s al in proefmodus."
563
 
564
- #: includes/class-freemius.php:21095
565
  msgid "You already utilized a trial before."
566
  msgstr "U heeft reeds een proefperiode gebruikt."
567
 
568
- #: includes/class-freemius.php:21109
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
571
 
572
- #: includes/class-freemius.php:21120
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "Plan %s ondersteunt geen proefperiode."
575
 
576
- #: includes/class-freemius.php:21131
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "Geen van de %s plannen ondersteunt een proefperiode."
579
 
580
- #: includes/class-freemius.php:21181
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
583
 
584
- #: includes/class-freemius.php:21217
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  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."
587
 
588
- #: includes/class-freemius.php:21236
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
591
 
592
- #: includes/class-freemius.php:21552
593
  msgid "Version %s was released."
594
  msgstr "Versie %s is vrijgegeven."
595
 
596
- #: includes/class-freemius.php:21552
597
  msgid "Please download %s."
598
  msgstr "A.u.b. %s downloaden."
599
 
600
- #: includes/class-freemius.php:21559
601
  msgid "the latest %s version here"
602
  msgstr "de meest recente %s versie hier"
603
 
604
- #: includes/class-freemius.php:21564
605
  msgid "New"
606
  msgstr "Nieuw"
607
 
608
- #: includes/class-freemius.php:21569
609
  msgid "Seems like you got the latest release."
610
  msgstr "Het lijkt erop dat je de meest recente versie hebt."
611
 
612
- #: includes/class-freemius.php:21570
613
  msgid "You are all good!"
614
  msgstr "Alles is goed!"
615
 
616
- #: includes/class-freemius.php:21873
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
619
 
620
- #: includes/class-freemius.php:22013
621
  msgid "Site successfully opted in."
622
  msgstr "Site opt-in geslaagd. "
623
 
624
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
625
  msgid "Awesome"
626
  msgstr "Geweldig"
627
 
628
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
631
 
632
- #: includes/class-freemius.php:22031
633
  msgid "Thank you!"
634
  msgstr "Bedankt!"
635
 
636
- #: includes/class-freemius.php:22038
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
639
 
640
- #: includes/class-freemius.php:22196
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
643
 
644
- #: includes/class-freemius.php:22202
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
647
 
648
- #: includes/class-freemius.php:22207
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s is de nieuwe eigenaar van het account."
651
 
652
- #: includes/class-freemius.php:22209
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "Gefeliciteerd"
656
 
657
- #: includes/class-freemius.php:22245
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
660
 
661
- #: includes/class-freemius.php:22257
662
  msgid "Please provide your full name."
663
  msgstr "Geef alsjeblieft je volledige naam."
664
 
665
- #: includes/class-freemius.php:22262
666
  msgid "Your name was successfully updated."
667
  msgstr "Je naam is succesvol bijgewerkt."
668
 
669
- #: includes/class-freemius.php:22323
670
  msgid "You have successfully updated your %s."
671
  msgstr "Je hebt je %s succesvol geüpdatet."
672
 
673
- #: includes/class-freemius.php:22382
674
  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."
675
  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."
676
 
677
- #: includes/class-freemius.php:22385
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
- #: includes/class-freemius.php:22483
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
684
 
685
- #: includes/class-freemius.php:22484
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "Aankondiging"
689
 
690
- #: includes/class-freemius.php:23060
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "Hoi"
694
 
695
- #: includes/class-freemius.php:23060
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
698
 
699
- #: includes/class-freemius.php:23068
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
702
 
703
- #: includes/class-freemius.php:23069
704
  msgid "No credit card required"
705
  msgstr "Geen creditcard nodig"
706
 
707
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "Start gratis proefperidoe"
711
 
712
- #: includes/class-freemius.php:23153
713
  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!"
714
  msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
715
 
716
- #: includes/class-freemius.php:23162
717
  msgid "Learn more"
718
  msgstr "Lees meer"
719
 
720
- #: includes/class-freemius.php23348, templates/account.php556,
721
- #: templates/account.php706, templates/connect.php179,
722
- #: templates/connect.php456, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "Activeer Licentie"
726
 
727
- #: includes/class-freemius.php23349, templates/account.php650,
728
- #: templates/account.php705, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "Verander Licentie"
732
 
733
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Opt Out"
736
 
737
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Opt In"
742
 
743
- #: includes/class-freemius.php:23700
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
 
747
- #: includes/class-freemius.php:23708
748
  msgid "Activate %s features"
749
  msgstr "Activeer %s features."
750
 
751
- #: includes/class-freemius.php:23721
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
754
 
755
- #: includes/class-freemius.php:23725
756
  msgid "Download the latest %s version"
757
  msgstr "Download de meeste recente %s versie"
758
 
759
- #: includes/class-freemius.php:23729
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "Upload en activeer de gedownloade versie"
762
 
763
- #: includes/class-freemius.php:23731
764
  msgid "How to upload and activate?"
765
  msgstr "Hoe te uploaden en activeren?"
766
 
767
- #: includes/class-freemius.php:23865
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
770
 
771
- #: includes/class-freemius.php:24034
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
774
 
775
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
776
- #: includes/class-fs-plugin-updater.php1273,
777
- #: includes/class-fs-plugin-updater.php:1287
778
  msgid "Invalid module ID."
779
  msgstr "Ongeldige Module-ID"
780
 
781
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
782
  msgid "Premium version already active."
783
  msgstr "Premium versie reeds actief."
784
 
785
- #: includes/class-freemius.php:24060
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "Je hebt geen geldige licentie voor de premium versie."
788
 
789
- #: includes/class-freemius.php:24067
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
792
 
793
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
794
  msgid "Premium add-on version already installed."
795
  msgstr "Premium add-on versie is reeds geïnstalleerd."
796
 
797
- #: includes/class-freemius.php:24435
798
  msgid "View paid features"
799
  msgstr "Bekijk betaalde kenmerken"
800
 
801
- #: includes/class-freemius.php:24757
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
804
 
805
- #: includes/class-freemius.php:24758
806
  msgid "Thank you so much for using %s!"
807
  msgstr "Hartelijk bedankt voor het gebruik van %s!"
808
 
809
- #: includes/class-freemius.php:24764
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
812
 
813
- #: includes/class-freemius.php:24768
814
  msgid "Thank you so much for using our products!"
815
  msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
816
 
817
- #: includes/class-freemius.php:24769
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
820
 
821
- #: includes/class-freemius.php:24788
822
  msgid "%s and its add-ons"
823
  msgstr "%sen bijbehorende uitbreidingen"
824
 
825
- #: includes/class-freemius.php:24797
826
  msgid "Products"
827
  msgstr "Producten"
828
 
829
- #: includes/class-freemius.php24804, templates/connect.php:280
830
  msgid "Yes"
831
  msgstr "Ja"
832
 
833
- #: includes/class-freemius.php24805, templates/connect.php:281
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
836
 
837
- #: includes/class-freemius.php24806, templates/connect.php:286
838
  msgid "No"
839
  msgstr "Nee"
840
 
841
- #: includes/class-freemius.php24808, templates/connect.php:288
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
844
 
845
- #: includes/class-freemius.php:24818
846
  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 :-)"
847
  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 :-)"
848
 
849
- #: includes/class-freemius.php24820, templates/connect.php:295
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  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:"
852
 
853
- #: includes/class-freemius.php:25102
854
  msgid "License key is empty."
855
  msgstr "Licentiesleutel is leeg."
856
 
@@ -883,15 +883,15 @@ msgstr "nieuwe versie"
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Belangrijke Upgrade Mededeling:"
885
 
886
- #: includes/class-fs-plugin-updater.php:1338
887
  msgid "Installing plugin: %s"
888
  msgstr "Installeren van plug-in: %s"
889
 
890
- #: includes/class-fs-plugin-updater.php:1379
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
893
 
894
- #: includes/class-fs-plugin-updater.php:1561
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
897
 
@@ -913,7 +913,7 @@ msgstr "Start mijn gratis %s"
913
  msgid "Install Free Version Update Now"
914
  msgstr "Installeer Gratis Versie Update Nu"
915
 
916
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
917
  msgid "Install Update Now"
918
  msgstr "Installeer Update Nu"
919
 
@@ -933,7 +933,7 @@ msgctxt "as download latest version"
933
  msgid "Download Latest Free Version"
934
  msgstr "Download Nieuwste Gratis Versie"
935
 
936
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
@@ -945,11 +945,11 @@ msgstr "Download Nieuwste"
945
  msgid "Activate this add-on"
946
  msgstr "Activeer deze add-on"
947
 
948
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
949
  msgid "Activate Free Version"
950
  msgstr "Activeer Gratis Versie"
951
 
952
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "Activeer"
@@ -1085,7 +1085,7 @@ msgstr "Na uw gratis %s, betaal slechts %s"
1085
  msgid "Details"
1086
  msgstr "Details"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
@@ -1101,7 +1101,7 @@ msgstr "Auteur"
1101
  msgid "Last Updated"
1102
  msgstr "Laatst Geüpdatet"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "%s geleden"
@@ -1212,13 +1212,13 @@ msgstr "Meest Recente Versie Geïnstalleerd"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Nieuwste Gratis Versie Geïnstalleerd"
1214
 
1215
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Je plan naar beneden bijstellen"
1220
 
1221
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
@@ -1226,317 +1226,317 @@ msgstr "Het abonnement annuleren"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
 
1234
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?"
1244
 
1245
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning."
1250
 
1251
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  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."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
- #: templates/account.php109,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "Activeer %s Plan"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
- #: templates/account.php112, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "Auto hernieuwd over %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
- #: templates/account.php114, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "Verloopt over %s"
1275
 
1276
- #: templates/account.php:115
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "Sync Licentie"
1280
 
1281
- #: templates/account.php116, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "Proefperiode Opzeggen"
1284
 
1285
- #: templates/account.php117, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "Wijzig Plan"
1288
 
1289
- #: templates/account.php118, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "Upgrade"
1293
 
1294
- #: templates/account.php120, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "Downgrade"
1299
 
1300
- #: templates/account.php122, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "Gratis"
1306
 
1307
- #: templates/account.php124, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "Plan"
1313
 
1314
- #: templates/account.php:125
1315
  msgid "Bundle Plan"
1316
  msgstr "Bundle Plan"
1317
 
1318
- #: templates/account.php:248
1319
  msgid "Free Trial"
1320
  msgstr "Gratis Proefperiode"
1321
 
1322
- #: templates/account.php:259
1323
  msgid "Account Details"
1324
  msgstr "Accountgegevens"
1325
 
1326
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Start Debug"
1329
 
1330
- #: templates/account.php:268
1331
  msgid "Stop Debug"
1332
  msgstr "Stop Debug"
1333
 
1334
- #: templates/account.php:275
1335
  msgid "Billing & Invoices"
1336
  msgstr "Billing & Invoices"
1337
 
1338
- #: templates/account.php:286
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "Verwijdering van het account zal automatisch je %s licentie deactiveren zodat je die op andere sites kan gebruiken. Als je tevens je terugkerende betalingen wilt stopzetten, klik dan op de 'Annuleer' knop en 'Downgrade' je account eerst. Weet je zeker dat je wilt doorgaan met de verwijdering?"
1341
 
1342
- #: templates/account.php:288
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "Verwijdering is niet tijdelijk. Verwijder alleen als je deze %s niet langer wilt gebruiken. Weet je zeker dat je wilt doorgaan met de verwijdering?"
1345
 
1346
- #: templates/account.php:291
1347
  msgid "Delete Account"
1348
  msgstr "Verwijder Account"
1349
 
1350
- #: templates/account.php303, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "Deactiveer Licentie"
1354
 
1355
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "Weet je zeker dat je wilt doorgaan?"
1358
 
1359
- #: templates/account.php326, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "Abonnement Opzeggen"
1362
 
1363
- #: templates/account.php355, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "Sync"
1367
 
1368
- #: templates/account.php370, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "Naam"
1371
 
1372
- #: templates/account.php376, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "E-mail"
1375
 
1376
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "Gebruikers ID"
1379
 
1380
- #: templates/account.php401, templates/account.php719,
1381
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "ID"
1387
 
1388
- #: templates/account.php:408
1389
  msgid "Site ID"
1390
  msgstr "Site ID"
1391
 
1392
- #: templates/account.php:411
1393
  msgid "No ID"
1394
  msgstr "Geen ID"
1395
 
1396
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "Publieke Sleutel"
1401
 
1402
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "Geheime Sleutel"
1406
 
1407
- #: templates/account.php:425
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "Geen Geheim"
1411
 
1412
- #: templates/account.php452, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "Proefperiode"
1416
 
1417
- #: templates/account.php479, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "Licentiesleutel"
1421
 
1422
- #: templates/account.php:510
1423
  msgid "Join the Beta program"
1424
  msgstr "Join the Beta program"
1425
 
1426
- #: templates/account.php:516
1427
  msgid "not verified"
1428
  msgstr "niet geverifieerd"
1429
 
1430
- #: templates/account.php525, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "Verlopen"
1433
 
1434
- #: templates/account.php:585
1435
  msgid "Premium version"
1436
  msgstr "Premium versie"
1437
 
1438
- #: templates/account.php:587
1439
  msgid "Free version"
1440
  msgstr "Gratis versie"
1441
 
1442
- #: templates/account.php:599
1443
  msgid "Verify Email"
1444
  msgstr "Verifieer E-mail"
1445
 
1446
- #: templates/account.php:613
1447
  msgid "Download %s Version"
1448
  msgstr "Download %s Versie"
1449
 
1450
- #: templates/account.php:629
1451
  msgid "Download Paid Version"
1452
  msgstr "Download Paid Version"
1453
 
1454
- #: templates/account.php647, templates/account.php890,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "Toon"
1460
 
1461
- #: templates/account.php:662
1462
  msgid "What is your %s?"
1463
  msgstr "Wat is je %s?"
1464
 
1465
- #: templates/account.php670, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "Bewerk"
1469
 
1470
- #: templates/account.php674, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Change User"
1473
 
1474
- #: templates/account.php:698
1475
  msgid "Sites"
1476
  msgstr "Sites"
1477
 
1478
- #: templates/account.php:711
1479
  msgid "Search by address"
1480
  msgstr "Zoek op adres"
1481
 
1482
- #: templates/account.php720, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "Adres"
1485
 
1486
- #: templates/account.php:721
1487
  msgid "License"
1488
  msgstr "Licentie"
1489
 
1490
- #: templates/account.php:722
1491
  msgid "Plan"
1492
  msgstr "Plan"
1493
 
1494
- #: templates/account.php:755
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "Licentie"
1498
 
1499
- #: templates/account.php:884
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "Verberg"
1503
 
1504
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Processing"
1507
 
1508
- #: templates/account.php:909
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Get updates for bleeding edge Beta versions of %s."
1511
 
1512
- #: templates/account.php:967
1513
  msgid "Cancelling %s"
1514
  msgstr "Annuleren %s"
1515
 
1516
- #: templates/account.php967, templates/account.php984,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "proefperiode"
1521
 
1522
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "%s wordt geannuleerd..."
1525
 
1526
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "abonnement"
1530
 
1531
- #: templates/account.php:999
1532
  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?"
1533
  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?"
1534
 
1535
- #: templates/account.php:1073
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
- #: templates/account.php:1074
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
@@ -1562,7 +1562,7 @@ msgctxt "installed add-on"
1562
  msgid "Installed"
1563
  msgstr "Installed"
1564
 
1565
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
@@ -1618,86 +1618,94 @@ msgstr "Bedankt %s!"
1618
  msgid "Agree & Activate License"
1619
  msgstr "Akkoord & Activeer Licentie"
1620
 
1621
- #: templates/connect.php:189
1622
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1623
- msgstr "Bedankt voor het aanschaffen van %s! Om te beginnen, voer alsjeblieft je licentiesleutel in:"
1624
 
1625
- #: templates/connect.php:196
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, educatieve content, aanbiedingen, en niet-gevoelige diagnostische tracking met %4$s."
1628
 
1629
- #: templates/connect.php:197
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, en niet-gevoelige diagnostische tracking met %4$s."
1632
 
1633
- #: templates/connect.php:203
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging & feature update notificaties, educatieve content, aanbiedingen, en niet-gevoelige diagnostische tracking met %4$s. Als je deze stap overslaat, geen probleem! %1$szal ook dan gewoon 100% werken. "
1636
 
1637
- #: templates/connect.php:204
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging & feature updates notificaties, en niet-gevoelige diagnostische tracking met %4$s. Als je deze stap overslaat, geen probleem! %1$szal ook dan gewoon 100% werken. "
1640
 
1641
- #: templates/connect.php:238
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "We zijn verheugd om Freemius network-level integratie te introduceren."
1644
 
1645
- #: templates/connect.php:241
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie nog niet geactiveerd is."
1648
 
1649
- #: templates/connect.php:243
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  msgstr "Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de licentiesleutel hieronder in en klik op de activatie-knop."
1652
 
1653
- #: templates/connect.php:245
1654
  msgid "%s's paid features"
1655
  msgstr "%s betaalde mogelijkheden"
1656
 
1657
- #: templates/connect.php:250
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Je kunt dat eventueel ook nu overslaan en de licentie later in je %s netwerk-niveau Account pagina activeren. "
1660
 
1661
- #: templates/connect.php:252
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw aandacht vereisen."
1664
 
1665
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "Licentiesleutel"
1669
 
1670
- #: templates/connect.php264, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "Kan je je licentiesleutel niet vinden?"
1673
 
1674
- #: templates/connect.php323, templates/connect.php695,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "Sla Over"
1679
 
1680
- #: templates/connect.php:326
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "Delegeren aan Site Beheerders"
1683
 
1684
- #: templates/connect.php:326
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders van de sites. "
1687
 
1688
- #: templates/connect.php:364
 
 
 
 
1689
  msgid "Your Profile Overview"
1690
  msgstr "Je Profiel Overzicht"
1691
 
1692
- #: templates/connect.php:365
1693
  msgid "Name and email address"
1694
  msgstr "Naam en e-mailadres"
1695
 
1696
- #: templates/connect.php:372
 
 
 
 
1697
  msgid "Your Site Overview"
1698
  msgstr "Je Site Overzicht"
1699
 
1700
- #: templates/connect.php:373
1701
  msgid "Site URL, WP version, PHP info"
1702
  msgstr "Site URL, WP version, PHP info"
1703
 
@@ -1705,64 +1713,84 @@ msgstr "Site URL, WP version, PHP info"
1705
  msgid "Admin Notices"
1706
  msgstr "Admin Mededelingen"
1707
 
1708
- #: templates/connect.php380, templates/connect.php:396
1709
  msgid "Updates, announcements, marketing, no spam"
1710
  msgstr "Updates, aankondigingen, marketing, geen spam"
1711
 
1712
- #: templates/connect.php:386
1713
- msgid "Current %s Events"
1714
- msgstr "Huidige %s Gebeurtenissen"
1715
-
1716
  #: templates/connect.php:387
1717
- msgid "Activation, deactivation and uninstall"
1718
- msgstr "Activatie, deactivatie en deïnstallatie"
 
 
 
 
 
 
 
 
1719
 
1720
- #: templates/connect.php:395
1721
  msgid "Newsletter"
1722
  msgstr "Nieuwsbrief"
1723
 
1724
- #: templates/connect.php:403
1725
  msgid "Plugins & Themes"
1726
  msgstr "Plug-ins & Thema's"
1727
 
1728
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1729
  msgid "Title, slug, version, and is active"
1730
  msgstr "Title, slug, version, and is active"
1731
 
1732
- #: templates/connect.php421, templates/forms/license-activation.php:41
1733
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1734
- msgstr "De %1$s zal periodiek data verzenden naar %2$s om te controleren op beveiliging en feature updates en om te verifiëren of je licentie geldig is."
1735
 
1736
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1737
  msgid "What permissions are being granted?"
1738
  msgstr "Welke toestemmingen worden er verleend?"
1739
 
1740
- #: templates/connect.php:452
1741
  msgid "Don't have a license key?"
1742
  msgstr "Heb je geen licentiesleutel?"
1743
 
1744
- #: templates/connect.php:455
1745
  msgid "Have a license key?"
1746
  msgstr "Heb je een licentiesleutel?"
1747
 
1748
- #: templates/connect.php:463
1749
  msgid "Privacy Policy"
1750
  msgstr "Privacybeleid"
1751
 
1752
- #: templates/connect.php:465
1753
  msgid "License Agreement"
1754
  msgstr "Licentieovereenkomst"
1755
 
1756
- #: templates/connect.php:465
1757
  msgid "Terms of Service"
1758
  msgstr "Servicevoorwaarden"
1759
 
1760
- #: templates/connect.php:854
1761
  msgctxt "as in the process of sending an email"
1762
  msgid "Sending email"
1763
  msgstr "E-mail versturen"
1764
 
1765
- #: templates/connect.php:855
1766
  msgctxt "as activating plugin"
1767
  msgid "Activating"
1768
  msgstr "Activeren"
@@ -2365,7 +2393,11 @@ msgstr "Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail dire
2365
  msgid "Update License"
2366
  msgstr "Update Licentie"
2367
 
2368
- #: templates/forms/license-activation.php:181
 
 
 
 
2369
  msgid "Associate with the license owner's account."
2370
  msgstr "Associate with the license owner's account."
2371
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Benny Vluggen <benny@prodevign.com>, 2017-2018
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: nl_NL\n"
14
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
  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."
27
  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."
28
 
29
+ #: includes/class-freemius.php:1926
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "Would you like to proceed with the update?"
32
 
33
+ #: includes/class-freemius.php:2138
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  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."
36
 
37
+ #: includes/class-freemius.php:2140
38
  msgid "Error"
39
  msgstr "Fout"
40
 
41
+ #: includes/class-freemius.php:2540
42
  msgid "I found a better %s"
43
  msgstr "Ik vond een beter %s"
44
 
45
+ #: includes/class-freemius.php:2542
46
  msgid "What's the %s's name?"
47
  msgstr "Wat is de naam van het %s?"
48
 
49
+ #: includes/class-freemius.php:2548
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
52
 
53
+ #: includes/class-freemius.php:2550
54
  msgid "Deactivation"
55
  msgstr "Deactivatie"
56
 
57
+ #: includes/class-freemius.php:2551
58
  msgid "Theme Switch"
59
  msgstr "Thema Wissel"
60
 
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "Overige"
65
 
66
+ #: includes/class-freemius.php:2568
67
  msgid "I no longer need the %s"
68
  msgstr "Ik heb de %s niet meer nodig "
69
 
70
+ #: includes/class-freemius.php:2575
71
  msgid "I only needed the %s for a short period"
72
  msgstr "Ik had de %s alleen nodig voor een korte periode."
73
 
74
+ #: includes/class-freemius.php:2581
75
  msgid "The %s broke my site"
76
  msgstr "De %s maakte mijn site onbruikbaar"
77
 
78
+ #: includes/class-freemius.php:2588
79
  msgid "The %s suddenly stopped working"
80
  msgstr "De %s werkte opeens niet meer"
81
 
82
+ #: includes/class-freemius.php:2598
83
  msgid "I can't pay for it anymore"
84
  msgstr "Ik kan er niet langer meer voor betalen"
85
 
86
+ #: includes/class-freemius.php:2600
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "Welke bedrag zou je ervoor over hebben?"
89
 
90
+ #: includes/class-freemius.php:2606
91
  msgid "I don't like to share my information with you"
92
  msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
93
 
94
+ #: includes/class-freemius.php:2627
95
  msgid "The %s didn't work"
96
  msgstr "De %s werkte niet"
97
 
98
+ #: includes/class-freemius.php:2637
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
101
 
102
+ #: includes/class-freemius.php:2645
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
105
 
106
+ #: includes/class-freemius.php:2647
107
  msgid "What feature?"
108
  msgstr "Welke feature?"
109
 
110
+ #: includes/class-freemius.php:2651
111
  msgid "The %s is not working"
112
  msgstr "De %s werkt niet"
113
 
114
+ #: includes/class-freemius.php:2653
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
117
 
118
+ #: includes/class-freemius.php:2657
119
  msgid "It's not what I was looking for"
120
  msgstr "Het is niet waarna ik opzoek was"
121
 
122
+ #: includes/class-freemius.php:2659
123
  msgid "What you've been looking for?"
124
  msgstr "Waar was je naar op zoek?"
125
 
126
+ #: includes/class-freemius.php:2663
127
  msgid "The %s didn't work as expected"
128
  msgstr "De %s werkte niet zoals verwacht"
129
 
130
+ #: includes/class-freemius.php:2665
131
  msgid "What did you expect?"
132
  msgstr "Wat had je verwacht?"
133
 
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Freemius Debug"
137
 
138
+ #: includes/class-freemius.php:4272
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
141
 
142
+ #: includes/class-freemius.php:4274
143
  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."
144
  msgstr "We doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
145
 
146
+ #: includes/class-freemius.php:4281
147
  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."
148
  msgstr "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
149
 
150
+ #: includes/class-freemius.php:4386
151
  msgid "Yes - do your thing"
152
  msgstr "Ja, ga je gang"
153
 
154
+ #: includes/class-freemius.php:4391
155
  msgid "No - just deactivate"
156
  msgstr "Nee - alleen deactiveren"
157
 
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "Oeps"
169
 
170
+ #: includes/class-freemius.php:4505
171
  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."
172
  msgstr "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
173
 
174
+ #: includes/class-freemius.php:4927
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s werkt niet zonder %s."
178
 
179
+ #: includes/class-freemius.php:4928
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "%s werkt niet zonder de plug-in."
183
 
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
188
 
189
+ #: includes/class-freemius.php:5857
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s versie is succesvol geactiveerd."
192
 
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
+ #: includes/class-freemius.php:5884
199
  msgid "You have a %s license."
200
  msgstr "Je hebt een %s licentie"
201
 
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "Hoera"
209
 
210
+ #: includes/class-freemius.php:6174
211
  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."
212
  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."
213
 
214
+ #: includes/class-freemius.php:6178
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
217
 
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "Meer informatie over %s"
222
 
223
+ #: includes/class-freemius.php:6188
224
  msgid "Purchase License"
225
  msgstr "Licentie Kopen"
226
 
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
230
 
231
+ #: includes/class-freemius.php:7129
232
  msgid "start the trial"
233
  msgstr "start de proefperiode"
234
 
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "voltooi de installatie"
238
 
239
+ #: includes/class-freemius.php:7249
240
  msgid "You are just one step away - %s"
241
  msgstr "Je bent slechts een stap verwijderd - %s"
242
 
243
+ #: includes/class-freemius.php:7252
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "Voltooi \"%s\" Activatie Nu"
247
 
248
+ #: includes/class-freemius.php:7334
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
251
 
252
+ #: includes/class-freemius.php:7338
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt-in om \"%s\" te verbeteren!"
255
 
256
+ #: includes/class-freemius.php:7773
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "De upgrade van %s is succesvol voltooid."
259
 
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Uitbreiding"
266
 
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "Plug-in"
271
 
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "Thema"
277
 
278
+ #: includes/class-freemius.php:13188
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
 
282
+ #: includes/class-freemius.php:13202
283
  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."
284
  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."
285
 
286
+ #: includes/class-freemius.php:13207
287
  msgid "User Dashboard"
288
  msgstr "User Dashboard"
289
 
290
+ #: includes/class-freemius.php:13208
291
  msgid "revert it now"
292
  msgstr "revert it now"
293
 
294
+ #: includes/class-freemius.php:13266
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
 
298
+ #: includes/class-freemius.php:13339
299
  msgid "Invalid new user ID or email address."
300
  msgstr "Invalid new user ID or email address."
301
 
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
305
 
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
309
 
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
  msgid "Change Ownership"
312
  msgstr "Eigendom Overdragen"
313
 
314
+ #: includes/class-freemius.php:13977
315
  msgid "Invalid site details collection."
316
  msgstr "Ongeldige verzameling van Site Details."
317
 
318
+ #: includes/class-freemius.php:14097
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
321
 
322
+ #: includes/class-freemius.php:14099
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
325
 
326
+ #: includes/class-freemius.php:14373
327
  msgid "Account is pending activation."
328
  msgstr "Account wacht op activatie."
329
 
330
+ #: includes/class-freemius.php14485,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "Koop nu een licentie"
334
 
335
+ #: includes/class-freemius.php14497,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "Vernieuw je licentie nu"
339
 
340
+ #: includes/class-freemius.php:14501
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
343
 
344
+ #: includes/class-freemius.php:16929
345
  msgid "%s activation was successfully completed."
346
  msgstr "%s activatie is succesvol voltooid."
347
 
348
+ #: includes/class-freemius.php:16943
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "Je account is succesvol geactiveerd met het %s plan."
351
 
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
  msgid "Your trial has been successfully started."
354
  msgstr "U proefperiode is met succes gestart."
355
 
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
  msgid "Couldn't activate %s."
359
  msgstr "Kon %s niet activeren."
360
 
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
  msgid "Please contact us with the following message:"
364
  msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
365
 
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "An unknown error has occurred."
369
 
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
  msgid "Upgrade"
372
  msgstr "Upgrade"
373
 
374
+ #: includes/class-freemius.php:18184
375
  msgid "Start Trial"
376
  msgstr "Start Proefperiode"
377
 
378
+ #: includes/class-freemius.php:18186
379
  msgid "Pricing"
380
  msgstr "Prijzen"
381
 
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
  msgid "Affiliation"
384
  msgstr "Affiliatie"
385
 
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "Account"
390
 
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "Contacteer Ons"
395
 
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "Uitbreidingen"
401
 
402
+ #: includes/class-freemius.php:18361
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
  msgstr "&#x2190;"
406
 
407
+ #: includes/class-freemius.php:18361
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
  msgstr "&#x27a4;"
411
 
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "Prijzen"
416
 
417
+ #: includes/class-freemius.php18576,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "Supportforum"
421
 
422
+ #: includes/class-freemius.php:19550
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
425
 
426
+ #: includes/class-freemius.php:19551
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "Toppie"
430
 
431
+ #: includes/class-freemius.php:20057
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "seems like the key you entered doesn't match our records."
434
 
435
+ #: includes/class-freemius.php:20081
436
  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."
437
  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."
438
 
439
+ #: includes/class-freemius.php:20316
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
442
 
443
+ #: includes/class-freemius.php:20318
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "%s Add-on werd succesvol aangekocht."
446
 
447
+ #: includes/class-freemius.php:20321
448
  msgid "Download the latest version"
449
  msgstr "Download de meeste recente versie"
450
 
451
+ #: includes/class-freemius.php:20407
452
  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"
453
  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"
454
 
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
  msgid "Error received from the server:"
458
  msgstr "Foutmelding ontvangen van de server:"
459
 
460
+ #: includes/class-freemius.php:20423
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
463
 
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "Hmm"
469
 
470
+ #: includes/class-freemius.php:20664
471
  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."
472
  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."
473
 
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "Proefperiode"
479
 
480
+ #: includes/class-freemius.php:20670
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
483
 
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
  msgid "Please contact us here"
486
  msgstr "Neem hier a.u.b. contact met ons op"
487
 
488
+ #: includes/class-freemius.php:20685
489
  msgid "Your plan was successfully activated."
490
  msgstr "Your plan was successfully activated."
491
 
492
+ #: includes/class-freemius.php:20686
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "Je plan is succesvol geüpgraded."
495
 
496
+ #: includes/class-freemius.php:20703
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "Je plan is succesvol veranderd naar %s."
499
 
500
+ #: includes/class-freemius.php:20719
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
503
 
504
+ #: includes/class-freemius.php:20721
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
507
 
508
+ #: includes/class-freemius.php:20729
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
511
 
512
+ #: includes/class-freemius.php:20742
513
  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."
514
  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."
515
 
516
+ #: includes/class-freemius.php:20768
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
519
 
520
+ #: includes/class-freemius.php:20770
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
523
 
524
+ #: includes/class-freemius.php:20885
525
  msgid "It looks like the license could not be activated."
526
  msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
527
 
528
+ #: includes/class-freemius.php:20927
529
  msgid "Your license was successfully activated."
530
  msgstr "Je licentie is succesvol geactiveerd."
531
 
532
+ #: includes/class-freemius.php:20953
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
535
 
536
+ #: includes/class-freemius.php:20977
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
539
 
540
+ #: includes/class-freemius.php:21006
541
  msgid "Your %s license was successfully deactivated."
542
  msgstr "Your %s license was successfully deactivated."
543
 
544
+ #: includes/class-freemius.php:21007
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
547
 
548
+ #: includes/class-freemius.php:21010
549
  msgid "O.K"
550
  msgstr "Oké"
551
 
552
+ #: includes/class-freemius.php:21063
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  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."
555
 
556
+ #: includes/class-freemius.php:21072
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
559
 
560
+ #: includes/class-freemius.php:21114
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "Je draait de %s al in proefmodus."
563
 
564
+ #: includes/class-freemius.php:21125
565
  msgid "You already utilized a trial before."
566
  msgstr "U heeft reeds een proefperiode gebruikt."
567
 
568
+ #: includes/class-freemius.php:21139
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
571
 
572
+ #: includes/class-freemius.php:21150
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "Plan %s ondersteunt geen proefperiode."
575
 
576
+ #: includes/class-freemius.php:21161
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "Geen van de %s plannen ondersteunt een proefperiode."
579
 
580
+ #: includes/class-freemius.php:21211
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
583
 
584
+ #: includes/class-freemius.php:21247
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  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."
587
 
588
+ #: includes/class-freemius.php:21266
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
591
 
592
+ #: includes/class-freemius.php:21582
593
  msgid "Version %s was released."
594
  msgstr "Versie %s is vrijgegeven."
595
 
596
+ #: includes/class-freemius.php:21582
597
  msgid "Please download %s."
598
  msgstr "A.u.b. %s downloaden."
599
 
600
+ #: includes/class-freemius.php:21589
601
  msgid "the latest %s version here"
602
  msgstr "de meest recente %s versie hier"
603
 
604
+ #: includes/class-freemius.php:21594
605
  msgid "New"
606
  msgstr "Nieuw"
607
 
608
+ #: includes/class-freemius.php:21599
609
  msgid "Seems like you got the latest release."
610
  msgstr "Het lijkt erop dat je de meest recente versie hebt."
611
 
612
+ #: includes/class-freemius.php:21600
613
  msgid "You are all good!"
614
  msgstr "Alles is goed!"
615
 
616
+ #: includes/class-freemius.php:21903
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
619
 
620
+ #: includes/class-freemius.php:22043
621
  msgid "Site successfully opted in."
622
  msgstr "Site opt-in geslaagd. "
623
 
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
  msgid "Awesome"
626
  msgstr "Geweldig"
627
 
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
631
 
632
+ #: includes/class-freemius.php:22061
633
  msgid "Thank you!"
634
  msgstr "Bedankt!"
635
 
636
+ #: includes/class-freemius.php:22068
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
639
 
640
+ #: includes/class-freemius.php:22226
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
643
 
644
+ #: includes/class-freemius.php:22232
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
647
 
648
+ #: includes/class-freemius.php:22237
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s is de nieuwe eigenaar van het account."
651
 
652
+ #: includes/class-freemius.php:22239
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "Gefeliciteerd"
656
 
657
+ #: includes/class-freemius.php:22275
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
660
 
661
+ #: includes/class-freemius.php:22287
662
  msgid "Please provide your full name."
663
  msgstr "Geef alsjeblieft je volledige naam."
664
 
665
+ #: includes/class-freemius.php:22292
666
  msgid "Your name was successfully updated."
667
  msgstr "Je naam is succesvol bijgewerkt."
668
 
669
+ #: includes/class-freemius.php:22353
670
  msgid "You have successfully updated your %s."
671
  msgstr "Je hebt je %s succesvol geüpdatet."
672
 
673
+ #: includes/class-freemius.php:22412
674
  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."
675
  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."
676
 
677
+ #: includes/class-freemius.php:22415
678
  msgid "Click here"
679
  msgstr "Click here"
680
 
681
+ #: includes/class-freemius.php:22513
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
684
 
685
+ #: includes/class-freemius.php:22514
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "Aankondiging"
689
 
690
+ #: includes/class-freemius.php:23090
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "Hoi"
694
 
695
+ #: includes/class-freemius.php:23090
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
698
 
699
+ #: includes/class-freemius.php:23098
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
702
 
703
+ #: includes/class-freemius.php:23099
704
  msgid "No credit card required"
705
  msgstr "Geen creditcard nodig"
706
 
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "Start gratis proefperidoe"
711
 
712
+ #: includes/class-freemius.php:23183
713
  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!"
714
  msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
715
 
716
+ #: includes/class-freemius.php:23192
717
  msgid "Learn more"
718
  msgstr "Lees meer"
719
 
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "Activeer Licentie"
726
 
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "Verander Licentie"
732
 
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "Opt Out"
736
 
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "Opt In"
742
 
743
+ #: includes/class-freemius.php:23738
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
 
747
+ #: includes/class-freemius.php:23746
748
  msgid "Activate %s features"
749
  msgstr "Activeer %s features."
750
 
751
+ #: includes/class-freemius.php:23759
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
754
 
755
+ #: includes/class-freemius.php:23763
756
  msgid "Download the latest %s version"
757
  msgstr "Download de meeste recente %s versie"
758
 
759
+ #: includes/class-freemius.php:23767
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "Upload en activeer de gedownloade versie"
762
 
763
+ #: includes/class-freemius.php:23769
764
  msgid "How to upload and activate?"
765
  msgstr "Hoe te uploaden en activeren?"
766
 
767
+ #: includes/class-freemius.php:23903
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
770
 
771
+ #: includes/class-freemius.php:24072
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
774
 
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
  msgid "Invalid module ID."
779
  msgstr "Ongeldige Module-ID"
780
 
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
  msgid "Premium version already active."
783
  msgstr "Premium versie reeds actief."
784
 
785
+ #: includes/class-freemius.php:24098
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "Je hebt geen geldige licentie voor de premium versie."
788
 
789
+ #: includes/class-freemius.php:24105
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
792
 
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
  msgid "Premium add-on version already installed."
795
  msgstr "Premium add-on versie is reeds geïnstalleerd."
796
 
797
+ #: includes/class-freemius.php:24473
798
  msgid "View paid features"
799
  msgstr "Bekijk betaalde kenmerken"
800
 
801
+ #: includes/class-freemius.php:24795
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
804
 
805
+ #: includes/class-freemius.php:24796
806
  msgid "Thank you so much for using %s!"
807
  msgstr "Hartelijk bedankt voor het gebruik van %s!"
808
 
809
+ #: includes/class-freemius.php:24802
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
812
 
813
+ #: includes/class-freemius.php:24806
814
  msgid "Thank you so much for using our products!"
815
  msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
816
 
817
+ #: includes/class-freemius.php:24807
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
820
 
821
+ #: includes/class-freemius.php:24826
822
  msgid "%s and its add-ons"
823
  msgstr "%sen bijbehorende uitbreidingen"
824
 
825
+ #: includes/class-freemius.php:24835
826
  msgid "Products"
827
  msgstr "Producten"
828
 
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
  msgid "Yes"
831
  msgstr "Ja"
832
 
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
836
 
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
  msgid "No"
839
  msgstr "Nee"
840
 
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
844
 
845
+ #: includes/class-freemius.php:24856
846
  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 :-)"
847
  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 :-)"
848
 
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  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:"
852
 
853
+ #: includes/class-freemius.php:25140
854
  msgid "License key is empty."
855
  msgstr "Licentiesleutel is leeg."
856
 
883
  msgid "Important Upgrade Notice:"
884
  msgstr "Belangrijke Upgrade Mededeling:"
885
 
886
+ #: includes/class-fs-plugin-updater.php:1326
887
  msgid "Installing plugin: %s"
888
  msgstr "Installeren van plug-in: %s"
889
 
890
+ #: includes/class-fs-plugin-updater.php:1367
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
893
 
894
+ #: includes/class-fs-plugin-updater.php:1549
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
897
 
913
  msgid "Install Free Version Update Now"
914
  msgstr "Installeer Gratis Versie Update Nu"
915
 
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
  msgid "Install Update Now"
918
  msgstr "Installeer Update Nu"
919
 
933
  msgid "Download Latest Free Version"
934
  msgstr "Download Nieuwste Gratis Versie"
935
 
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
945
  msgid "Activate this add-on"
946
  msgstr "Activeer deze add-on"
947
 
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
  msgid "Activate Free Version"
950
  msgstr "Activeer Gratis Versie"
951
 
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "Activeer"
1085
  msgid "Details"
1086
  msgstr "Details"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
1101
  msgid "Last Updated"
1102
  msgstr "Laatst Geüpdatet"
1103
 
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "%s geleden"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Nieuwste Gratis Versie Geïnstalleerd"
1214
 
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "Je plan naar beneden bijstellen"
1220
 
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
 
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  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."
1239
 
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?"
1244
 
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning."
1250
 
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  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."
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "Activeer %s Plan"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "Auto hernieuwd over %s"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "Verloopt over %s"
1275
 
1276
+ #: templates/account.php:117
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "Sync Licentie"
1280
 
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "Proefperiode Opzeggen"
1284
 
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "Wijzig Plan"
1288
 
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "Upgrade"
1293
 
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "Downgrade"
1299
 
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "Gratis"
1306
 
1307
+ #: templates/account.php126, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "Plan"
1313
 
1314
+ #: templates/account.php:127
1315
  msgid "Bundle Plan"
1316
  msgstr "Bundle Plan"
1317
 
1318
+ #: templates/account.php:250
1319
  msgid "Free Trial"
1320
  msgstr "Gratis Proefperiode"
1321
 
1322
+ #: templates/account.php:261
1323
  msgid "Account Details"
1324
  msgstr "Accountgegevens"
1325
 
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "Start Debug"
1329
 
1330
+ #: templates/account.php:270
1331
  msgid "Stop Debug"
1332
  msgstr "Stop Debug"
1333
 
1334
+ #: templates/account.php:277
1335
  msgid "Billing & Invoices"
1336
  msgstr "Billing & Invoices"
1337
 
1338
+ #: templates/account.php:288
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "Verwijdering van het account zal automatisch je %s licentie deactiveren zodat je die op andere sites kan gebruiken. Als je tevens je terugkerende betalingen wilt stopzetten, klik dan op de 'Annuleer' knop en 'Downgrade' je account eerst. Weet je zeker dat je wilt doorgaan met de verwijdering?"
1341
 
1342
+ #: templates/account.php:290
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "Verwijdering is niet tijdelijk. Verwijder alleen als je deze %s niet langer wilt gebruiken. Weet je zeker dat je wilt doorgaan met de verwijdering?"
1345
 
1346
+ #: templates/account.php:293
1347
  msgid "Delete Account"
1348
  msgstr "Verwijder Account"
1349
 
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "Deactiveer Licentie"
1354
 
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "Weet je zeker dat je wilt doorgaan?"
1358
 
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "Abonnement Opzeggen"
1362
 
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "Sync"
1367
 
1368
+ #: templates/account.php372, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "Naam"
1371
 
1372
+ #: templates/account.php378, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "E-mail"
1375
 
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "Gebruikers ID"
1379
 
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "ID"
1387
 
1388
+ #: templates/account.php:410
1389
  msgid "Site ID"
1390
  msgstr "Site ID"
1391
 
1392
+ #: templates/account.php:413
1393
  msgid "No ID"
1394
  msgstr "Geen ID"
1395
 
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "Publieke Sleutel"
1401
 
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "Geheime Sleutel"
1406
 
1407
+ #: templates/account.php:427
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "Geen Geheim"
1411
 
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "Proefperiode"
1416
 
1417
+ #: templates/account.php481, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "Licentiesleutel"
1421
 
1422
+ #: templates/account.php:512
1423
  msgid "Join the Beta program"
1424
  msgstr "Join the Beta program"
1425
 
1426
+ #: templates/account.php:518
1427
  msgid "not verified"
1428
  msgstr "niet geverifieerd"
1429
 
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "Verlopen"
1433
 
1434
+ #: templates/account.php:587
1435
  msgid "Premium version"
1436
  msgstr "Premium versie"
1437
 
1438
+ #: templates/account.php:589
1439
  msgid "Free version"
1440
  msgstr "Gratis versie"
1441
 
1442
+ #: templates/account.php:601
1443
  msgid "Verify Email"
1444
  msgstr "Verifieer E-mail"
1445
 
1446
+ #: templates/account.php:615
1447
  msgid "Download %s Version"
1448
  msgstr "Download %s Versie"
1449
 
1450
+ #: templates/account.php:631
1451
  msgid "Download Paid Version"
1452
  msgstr "Download Paid Version"
1453
 
1454
+ #: templates/account.php649, templates/account.php892,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "Toon"
1460
 
1461
+ #: templates/account.php:664
1462
  msgid "What is your %s?"
1463
  msgstr "Wat is je %s?"
1464
 
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "Bewerk"
1469
 
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
  msgstr "Change User"
1473
 
1474
+ #: templates/account.php:700
1475
  msgid "Sites"
1476
  msgstr "Sites"
1477
 
1478
+ #: templates/account.php:713
1479
  msgid "Search by address"
1480
  msgstr "Zoek op adres"
1481
 
1482
+ #: templates/account.php722, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "Adres"
1485
 
1486
+ #: templates/account.php:723
1487
  msgid "License"
1488
  msgstr "Licentie"
1489
 
1490
+ #: templates/account.php:724
1491
  msgid "Plan"
1492
  msgstr "Plan"
1493
 
1494
+ #: templates/account.php:757
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "Licentie"
1498
 
1499
+ #: templates/account.php:886
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "Verberg"
1503
 
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "Processing"
1507
 
1508
+ #: templates/account.php:911
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "Get updates for bleeding edge Beta versions of %s."
1511
 
1512
+ #: templates/account.php:969
1513
  msgid "Cancelling %s"
1514
  msgstr "Annuleren %s"
1515
 
1516
+ #: templates/account.php969, templates/account.php986,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "proefperiode"
1521
 
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "%s wordt geannuleerd..."
1525
 
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "abonnement"
1530
 
1531
+ #: templates/account.php:1001
1532
  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?"
1533
  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?"
1534
 
1535
+ #: templates/account.php:1075
1536
  msgid "Disabling white-label mode"
1537
  msgstr "Disabling white-label mode"
1538
 
1539
+ #: templates/account.php:1076
1540
  msgid "Enabling white-label mode"
1541
  msgstr "Enabling white-label mode"
1542
 
1562
  msgid "Installed"
1563
  msgstr "Installed"
1564
 
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
1618
  msgid "Agree & Activate License"
1619
  msgstr "Akkoord & Activeer Licentie"
1620
 
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
 
1625
+ #: templates/connect.php:191
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, educatieve content, aanbiedingen, en niet-gevoelige diagnostische tracking met %4$s."
1628
 
1629
+ #: templates/connect.php:192
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging en feature update notificaties, en niet-gevoelige diagnostische tracking met %4$s."
1632
 
1633
+ #: templates/connect.php:198
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging & feature update notificaties, educatieve content, aanbiedingen, en niet-gevoelige diagnostische tracking met %4$s. Als je deze stap overslaat, geen probleem! %1$szal ook dan gewoon 100% werken. "
1636
 
1637
+ #: templates/connect.php:199
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "Mis nooit een belangrijke update - opt-in voor onze beveiliging & feature updates notificaties, en niet-gevoelige diagnostische tracking met %4$s. Als je deze stap overslaat, geen probleem! %1$szal ook dan gewoon 100% werken. "
1640
 
1641
+ #: templates/connect.php:233
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "We zijn verheugd om Freemius network-level integratie te introduceren."
1644
 
1645
+ #: templates/connect.php:236
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie nog niet geactiveerd is."
1648
 
1649
+ #: templates/connect.php:238
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  msgstr "Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de licentiesleutel hieronder in en klik op de activatie-knop."
1652
 
1653
+ #: templates/connect.php:240
1654
  msgid "%s's paid features"
1655
  msgstr "%s betaalde mogelijkheden"
1656
 
1657
+ #: templates/connect.php:245
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "Je kunt dat eventueel ook nu overslaan en de licentie later in je %s netwerk-niveau Account pagina activeren. "
1660
 
1661
+ #: templates/connect.php:247
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw aandacht vereisen."
1664
 
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "Licentiesleutel"
1669
 
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "Kan je je licentiesleutel niet vinden?"
1673
 
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "Sla Over"
1679
 
1680
+ #: templates/connect.php:321
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "Delegeren aan Site Beheerders"
1683
 
1684
+ #: templates/connect.php:321
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders van de sites. "
1687
 
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
  msgid "Your Profile Overview"
1694
  msgstr "Je Profiel Overzicht"
1695
 
1696
+ #: templates/connect.php:363
1697
  msgid "Name and email address"
1698
  msgstr "Naam en e-mailadres"
1699
 
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
  msgid "Your Site Overview"
1706
  msgstr "Je Site Overzicht"
1707
 
1708
+ #: templates/connect.php:372
1709
  msgid "Site URL, WP version, PHP info"
1710
  msgstr "Site URL, WP version, PHP info"
1711
 
1713
  msgid "Admin Notices"
1714
  msgstr "Admin Mededelingen"
1715
 
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
  msgid "Updates, announcements, marketing, no spam"
1718
  msgstr "Updates, aankondigingen, marketing, geen spam"
1719
 
 
 
 
 
1720
  #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
 
1732
+ #: templates/connect.php:397
1733
  msgid "Newsletter"
1734
  msgstr "Nieuwsbrief"
1735
 
1736
+ #: templates/connect.php:405
1737
  msgid "Plugins & Themes"
1738
  msgstr "Plug-ins & Thema's"
1739
 
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
  msgid "Title, slug, version, and is active"
1750
  msgstr "Title, slug, version, and is active"
1751
 
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
 
1756
  #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
  msgid "What permissions are being granted?"
1766
  msgstr "Welke toestemmingen worden er verleend?"
1767
 
1768
+ #: templates/connect.php:457
1769
  msgid "Don't have a license key?"
1770
  msgstr "Heb je geen licentiesleutel?"
1771
 
1772
+ #: templates/connect.php:460
1773
  msgid "Have a license key?"
1774
  msgstr "Heb je een licentiesleutel?"
1775
 
1776
+ #: templates/connect.php:468
1777
  msgid "Privacy Policy"
1778
  msgstr "Privacybeleid"
1779
 
1780
+ #: templates/connect.php:470
1781
  msgid "License Agreement"
1782
  msgstr "Licentieovereenkomst"
1783
 
1784
+ #: templates/connect.php:470
1785
  msgid "Terms of Service"
1786
  msgstr "Servicevoorwaarden"
1787
 
1788
+ #: templates/connect.php:866
1789
  msgctxt "as in the process of sending an email"
1790
  msgid "Sending email"
1791
  msgstr "E-mail versturen"
1792
 
1793
+ #: templates/connect.php:867
1794
  msgctxt "as activating plugin"
1795
  msgid "Activating"
1796
  msgstr "Activeren"
2393
  msgid "Update License"
2394
  msgstr "Update Licentie"
2395
 
2396
+ #: templates/forms/license-activation.php:41
2397
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2398
+ msgstr "De %1$s zal periodiek data verzenden naar %2$s om te controleren op beveiliging en feature updates en om te verifiëren of je licentie geldig is."
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
  msgid "Associate with the license owner's account."
2402
  msgstr "Associate with the license owner's account."
2403
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Robert Premmerce <info@premmerce.com>, 2018
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: ru_RU\n"
13
  "Language-Team: Russian (Russia) (http://www.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n"
@@ -21,835 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  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."
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "Ошибка"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "Я нашел лучший %s"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "Какое название %s?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
  msgstr "Деактивация"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "Переключатель шаблона "
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Другие"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "%s больше не понадобится."
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "%s требовалась на короткое время"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "%s повредила мой сайт"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s внезапно перестала работать "
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "Я больше не могу оплачивать это. "
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Какая стоимость была бы для Вас приемлемой? "
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "Я не хочу делиться личной информацией с Вами"
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "%s не сработала"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Я не могу понять как сделать так, чтобы оно работало"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "Какой функционал?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "%s не работает"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "Это не то, что я искал. "
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "Что именно Вы ищите? "
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s не сработала как ожидалось"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "Каковы были Ваши ожидания? "
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Исправление ошибок Freemius"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  msgstr "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  msgstr "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
  msgstr "Да, делайте то, что Вам нужно. "
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
  msgstr "Нет. Нужно деактивировать. "
156
 
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Упс!"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  msgstr "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s не работает без %s."
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s не может работать без плагина. "
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Премиум версия %s была успешно активирована. "
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Вау!"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "У Вас есть лицензия %s."
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Ура!"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Больше информации о %s"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "Купите лицензию "
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "Начать тестовый период"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "Закончить установку"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "Вам осталось совсем немножко %s"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Закончить активацию %s сейчас "
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "Обновление %s было успешно завершено"
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Функционал плагина "
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Плагин "
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Шаблон "
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
  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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "Сменить владельца лицензии "
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "Учетная запись в процессе активации"
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Buy a license now"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Renew your license now"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s to access version %s security & feature updates, and support."
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "Активация %s была успешно завершена"
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "Ваш тестовый период успешно начат"
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "Невозможно активировать %s"
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "Сделать апгрейд "
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "Начать тестовый период"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "Цены "
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "Партнерство "
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Личный кабинет"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Контакты "
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Настройки плагина "
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Цены"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Форум поддержки "
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Все верно!"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  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."
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Ваш %s план был успешно обновлен"
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "Покупка %s плагина успешно состоялась"
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "Скачай последнюю версию"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  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"
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "Ошибка сервера"
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Хм..."
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Тестовый период"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "Пожалуйста, напишите нам сообщение здесь. "
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Ваш тарифный план был успешно изменен. "
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Ваш тарифный план был успешно изменен на %s."
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Вероятно возникли трудности с активацией лицензии. "
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "Ваша лицензия была успешно активирована. "
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Вероятно деактивация лицензии не состоялась. "
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "O.K."
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "Вы уже пользуетесь тестовой версией %s "
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "Вы уже использовали Ваш тестовый период"
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Тарифный план % не предусматривает тестового периода. "
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "Тарифные планы %s не предусматривают тестовый период. "
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Возможно, Ваш тестовый период уже закончился. "
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
586
 
587
- #: includes/class-freemius.php:21236
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Ваш бесплатный тестовый период был успешно отменен. "
590
 
591
- #: includes/class-freemius.php:21552
592
  msgid "Version %s was released."
593
  msgstr "Релиз версии %s состоялся. "
594
 
595
- #: includes/class-freemius.php:21552
596
  msgid "Please download %s."
597
  msgstr "Пожалуйста, скачайте %s"
598
 
599
- #: includes/class-freemius.php:21559
600
  msgid "the latest %s version here"
601
  msgstr "Последняя версия %s здесь"
602
 
603
- #: includes/class-freemius.php:21564
604
  msgid "New"
605
  msgstr "Новое "
606
 
607
- #: includes/class-freemius.php:21569
608
  msgid "Seems like you got the latest release."
609
  msgstr "Вероятно, Вы пользуетесь последней версией"
610
 
611
- #: includes/class-freemius.php:21570
612
  msgid "You are all good!"
613
  msgstr "Все прошло хорошо!"
614
 
615
- #: includes/class-freemius.php:21873
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
618
 
619
- #: includes/class-freemius.php:22013
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
624
  msgid "Awesome"
625
  msgstr "Отлично!"
626
 
627
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
630
 
631
- #: includes/class-freemius.php:22031
632
  msgid "Thank you!"
633
  msgstr "Thank you!"
634
 
635
- #: includes/class-freemius.php:22038
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
638
 
639
- #: includes/class-freemius.php:22196
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
642
 
643
- #: includes/class-freemius.php:22202
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
646
 
647
- #: includes/class-freemius.php:22207
648
  msgid "%s is the new owner of the account."
649
  msgstr "%я является новым владельцем аккаунта"
650
 
651
- #: includes/class-freemius.php:22209
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Поздравления! "
655
 
656
- #: includes/class-freemius.php:22245
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
659
 
660
- #: includes/class-freemius.php:22257
661
  msgid "Please provide your full name."
662
  msgstr "Пожалуйста, введите Ваше полное имя"
663
 
664
- #: includes/class-freemius.php:22262
665
  msgid "Your name was successfully updated."
666
  msgstr "Ваше имя было успешно обновлено"
667
 
668
- #: includes/class-freemius.php:22323
669
  msgid "You have successfully updated your %s."
670
  msgstr "Вы успешно обновили Ваш %s"
671
 
672
- #: includes/class-freemius.php:22382
673
  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."
674
  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."
675
 
676
- #: includes/class-freemius.php:22385
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
- #: includes/class-freemius.php:22483
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
683
 
684
- #: includes/class-freemius.php:22484
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Внимание!"
688
 
689
- #: includes/class-freemius.php:23060
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Привет!"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
697
 
698
- #: includes/class-freemius.php:23068
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
701
 
702
- #: includes/class-freemius.php:23069
703
  msgid "No credit card required"
704
  msgstr "Не требуются данные платежной карты"
705
 
706
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Начни тестовый период!"
710
 
711
- #: includes/class-freemius.php:23153
712
  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!"
713
  msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
714
 
715
- #: includes/class-freemius.php:23162
716
  msgid "Learn more"
717
  msgstr "Узнать больше"
718
 
719
- #: includes/class-freemius.php23348, templates/account.php556,
720
- #: templates/account.php706, templates/connect.php179,
721
- #: templates/connect.php456, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Активировать лицензию"
725
 
726
- #: includes/class-freemius.php23349, templates/account.php650,
727
- #: templates/account.php705, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Изменить лицензию "
731
 
732
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Отказаться от использования"
735
 
736
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Присоединиться"
741
 
742
- #: includes/class-freemius.php:23700
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
- #: includes/class-freemius.php:23708
747
  msgid "Activate %s features"
748
  msgstr "Activate %s features"
749
 
750
- #: includes/class-freemius.php:23721
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
753
 
754
- #: includes/class-freemius.php:23725
755
  msgid "Download the latest %s version"
756
  msgstr "Скачайте последнюю версию %s"
757
 
758
- #: includes/class-freemius.php:23729
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Загрузите и активируйте скачанную версию"
761
 
762
- #: includes/class-freemius.php:23731
763
  msgid "How to upload and activate?"
764
  msgstr "Как загрузить и активировать?"
765
 
766
- #: includes/class-freemius.php:23865
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
- #: includes/class-freemius.php:24034
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Авто установка работает только для зарегистрированных пользователей."
773
 
774
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
775
- #: includes/class-fs-plugin-updater.php1273,
776
- #: includes/class-fs-plugin-updater.php:1287
777
  msgid "Invalid module ID."
778
  msgstr "Неверный ID модуля"
779
 
780
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
781
  msgid "Premium version already active."
782
  msgstr "Премиум версия уже активирована"
783
 
784
- #: includes/class-freemius.php:24060
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
787
 
788
- #: includes/class-freemius.php:24067
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
791
 
792
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
793
  msgid "Premium add-on version already installed."
794
  msgstr "Премиум версия плагина была установлена"
795
 
796
- #: includes/class-freemius.php:24435
797
  msgid "View paid features"
798
  msgstr "Просмотр платных возможностей"
799
 
800
- #: includes/class-freemius.php:24757
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
- #: includes/class-freemius.php:24758
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
- #: includes/class-freemius.php:24764
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
- #: includes/class-freemius.php:24768
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
- #: includes/class-freemius.php:24769
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
- #: includes/class-freemius.php:24788
821
  msgid "%s and its add-ons"
822
  msgstr "%s and its add-ons"
823
 
824
- #: includes/class-freemius.php:24797
825
  msgid "Products"
826
  msgstr "Products"
827
 
828
- #: includes/class-freemius.php24804, templates/connect.php:280
829
  msgid "Yes"
830
  msgstr "Yes"
831
 
832
- #: includes/class-freemius.php24805, templates/connect.php:281
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "send me security & feature updates, educational content and offers."
835
 
836
- #: includes/class-freemius.php24806, templates/connect.php:286
837
  msgid "No"
838
  msgstr "No"
839
 
840
- #: includes/class-freemius.php24808, templates/connect.php:288
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
- #: includes/class-freemius.php:24818
845
  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 :-)"
846
  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 :-)"
847
 
848
- #: includes/class-freemius.php24820, templates/connect.php:295
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
- #: includes/class-freemius.php:25102
853
  msgid "License key is empty."
854
  msgstr "License key is empty."
855
 
@@ -882,15 +882,15 @@ msgstr "new version"
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
- #: includes/class-fs-plugin-updater.php:1338
886
  msgid "Installing plugin: %s"
887
  msgstr "Установка плагина: %s"
888
 
889
- #: includes/class-fs-plugin-updater.php:1379
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
892
 
893
- #: includes/class-fs-plugin-updater.php:1561
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
896
 
@@ -912,7 +912,7 @@ msgstr "Начать мой бесплатный %s"
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
916
  msgid "Install Update Now"
917
  msgstr "Провести обновления сейчас "
918
 
@@ -932,7 +932,7 @@ msgctxt "as download latest version"
932
  msgid "Download Latest Free Version"
933
  msgstr "Download Latest Free Version"
934
 
935
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
@@ -944,11 +944,11 @@ msgstr "Скачать последнюю версию"
944
  msgid "Activate this add-on"
945
  msgstr "Активируйте этот функционал "
946
 
947
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
948
  msgid "Activate Free Version"
949
  msgstr "Активировать бесплатную версию?"
950
 
951
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Активировать "
@@ -1084,7 +1084,7 @@ msgstr "После окончания Вашего бесплатного %s, п
1084
  msgid "Details"
1085
  msgstr "Детальней"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
@@ -1100,7 +1100,7 @@ msgstr "Автор"
1100
  msgid "Last Updated"
1101
  msgstr "Последнее обновление "
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "% тому назад "
@@ -1211,13 +1211,13 @@ msgstr "Последняя версия установлена"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Latest Free Version Installed"
1213
 
1214
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Downgrading your plan"
1219
 
1220
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
@@ -1225,317 +1225,317 @@ msgstr "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Отказ от пользования тестовым периодом автоматически блокирует доступ ко всем премиум возможностям. Вы уверены, что хотите отказаться?"
1243
 
1244
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "По окончанию срока действия Вашей лицензии, Вы сможете пользоваться бесплатной версией, но у Вас не будет доступа к возможностям %s. "
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
- #: templates/account.php109,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Активируйте план %s"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
- #: templates/account.php112, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Автоматическое продление в %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
- #: templates/account.php114, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Окончание срока пользования через %s"
1274
 
1275
- #: templates/account.php:115
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Синхронизация лицензии "
1279
 
1280
- #: templates/account.php116, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Отменить тестовый период "
1283
 
1284
- #: templates/account.php117, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Изменить план "
1287
 
1288
- #: templates/account.php118, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Сделать апгрейд"
1292
 
1293
- #: templates/account.php120, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Понизить план "
1298
 
1299
- #: templates/account.php122, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Бесплатная "
1305
 
1306
- #: templates/account.php124, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Тарифный план "
1312
 
1313
- #: templates/account.php:125
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
- #: templates/account.php:248
1318
  msgid "Free Trial"
1319
  msgstr "Бесплатный период пользования "
1320
 
1321
- #: templates/account.php:259
1322
  msgid "Account Details"
1323
  msgstr " Детали"
1324
 
1325
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
- #: templates/account.php:268
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
- #: templates/account.php:275
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
- #: templates/account.php:286
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Удалив личный кабинет, Вы автоматически деактивируете лицензию на Ваш тарифный план %s, которую Вы можете использовать на других сайтах. Если Вы хотите также приостановить регулярные платежи, нажмите на кнопку \"Отмена\" и сначала измените свой тарифный план на бесплатный. Вы уверены, что хотите продолжить удаление?"
1340
 
1341
- #: templates/account.php:288
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Удаление личного кабинете не может быть произведено временно. Удалите только в случае если Вы больше не хотите пользоваться %s. Вы уверены, что хотите продолжить удаление? "
1344
 
1345
- #: templates/account.php:291
1346
  msgid "Delete Account"
1347
  msgstr "Удалить личный кабинет"
1348
 
1349
- #: templates/account.php303, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Деактивировать лицензию "
1353
 
1354
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Вы уверены, что хотите продолжить?"
1357
 
1358
- #: templates/account.php326, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Отменить подписку "
1361
 
1362
- #: templates/account.php355, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Синхронизировать "
1366
 
1367
- #: templates/account.php370, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Имя"
1370
 
1371
- #: templates/account.php376, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Электронный адрес "
1374
 
1375
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "User ID "
1378
 
1379
- #: templates/account.php401, templates/account.php719,
1380
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
- #: templates/account.php:408
1388
  msgid "Site ID"
1389
  msgstr "Site ID"
1390
 
1391
- #: templates/account.php:411
1392
  msgid "No ID"
1393
  msgstr "No ID"
1394
 
1395
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Public Key "
1400
 
1401
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Secret Key "
1405
 
1406
- #: templates/account.php:425
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Нет секрета "
1410
 
1411
- #: templates/account.php452, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Тестовый период "
1415
 
1416
- #: templates/account.php479, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Лицензионный ключ "
1420
 
1421
- #: templates/account.php:510
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
- #: templates/account.php:516
1426
  msgid "not verified"
1427
  msgstr "не подтвержден "
1428
 
1429
- #: templates/account.php525, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Срок действия закончился "
1432
 
1433
- #: templates/account.php:585
1434
  msgid "Premium version"
1435
  msgstr "Премиум версия "
1436
 
1437
- #: templates/account.php:587
1438
  msgid "Free version"
1439
  msgstr "Бесплатная версия "
1440
 
1441
- #: templates/account.php:599
1442
  msgid "Verify Email"
1443
  msgstr "Подтвердите электронный адрес "
1444
 
1445
- #: templates/account.php:613
1446
  msgid "Download %s Version"
1447
  msgstr "Скачайте версию %s"
1448
 
1449
- #: templates/account.php:629
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
- #: templates/account.php647, templates/account.php890,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Показать "
1459
 
1460
- #: templates/account.php:662
1461
  msgid "What is your %s?"
1462
  msgstr "Какой Ваш %s?"
1463
 
1464
- #: templates/account.php670, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Редактировать "
1468
 
1469
- #: templates/account.php674, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
- #: templates/account.php:698
1474
  msgid "Sites"
1475
  msgstr "Сайтов "
1476
 
1477
- #: templates/account.php:711
1478
  msgid "Search by address"
1479
  msgstr "Search by address"
1480
 
1481
- #: templates/account.php720, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Address"
1484
 
1485
- #: templates/account.php:721
1486
  msgid "License"
1487
  msgstr "Лицензия "
1488
 
1489
- #: templates/account.php:722
1490
  msgid "Plan"
1491
  msgstr "Тарифный план "
1492
 
1493
- #: templates/account.php:755
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Лицензия "
1497
 
1498
- #: templates/account.php:884
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Спрятать "
1502
 
1503
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Обработка данных "
1506
 
1507
- #: templates/account.php:909
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
- #: templates/account.php:967
1512
  msgid "Cancelling %s"
1513
  msgstr "Cancelling %s"
1514
 
1515
- #: templates/account.php967, templates/account.php984,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "trial"
1520
 
1521
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Cancelling %s..."
1524
 
1525
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "subscription"
1529
 
1530
- #: templates/account.php:999
1531
  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?"
1532
  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?"
1533
 
1534
- #: templates/account.php:1073
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
- #: templates/account.php:1074
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
@@ -1561,7 +1561,7 @@ msgctxt "installed add-on"
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
@@ -1617,86 +1617,94 @@ msgstr "Спасибо %s"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Согласиться и активировать лицензию "
1619
 
1620
- #: templates/connect.php:189
1621
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1622
- msgstr "Спасибо за покупку %s! Для того, чтобы начать введите свой лицензионный ключ:"
1623
 
1624
- #: templates/connect.php:196
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
 
1628
- #: templates/connect.php:197
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Никогда не пропускайте важных оповещений - подпишитесь на наши уведомления о безопасности и новом функционале."
1631
 
1632
- #: templates/connect.php:203
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
 
1636
- #: templates/connect.php:204
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
 
1640
- #: templates/connect.php:238
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "We're excited to introduce the Freemius network-level integration."
1643
 
1644
- #: templates/connect.php:241
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
- #: templates/connect.php:243
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
 
1652
- #: templates/connect.php:245
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
- #: templates/connect.php:250
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
- #: templates/connect.php:252
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Лицензионный ключ"
1668
 
1669
- #: templates/connect.php264, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Не можете найти лицензионный ключ? "
1672
 
1673
- #: templates/connect.php323, templates/connect.php695,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Пропустить"
1678
 
1679
- #: templates/connect.php:326
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
- #: templates/connect.php:326
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
- #: templates/connect.php:364
 
 
 
 
1688
  msgid "Your Profile Overview"
1689
  msgstr "Просмотр Вашего профиля "
1690
 
1691
- #: templates/connect.php:365
1692
  msgid "Name and email address"
1693
  msgstr "Имя и электронный адрес "
1694
 
1695
- #: templates/connect.php:372
 
 
 
 
1696
  msgid "Your Site Overview"
1697
  msgstr "Просмотр Вашего сайта "
1698
 
1699
- #: templates/connect.php:373
1700
  msgid "Site URL, WP version, PHP info"
1701
  msgstr "Site URL, WP version, PHP info"
1702
 
@@ -1704,64 +1712,84 @@ msgstr "Site URL, WP version, PHP info"
1704
  msgid "Admin Notices"
1705
  msgstr "Админ заметки"
1706
 
1707
- #: templates/connect.php380, templates/connect.php:396
1708
  msgid "Updates, announcements, marketing, no spam"
1709
  msgstr "Новости, объявления, маркетинг, без спама"
1710
 
1711
- #: templates/connect.php:386
1712
- msgid "Current %s Events"
1713
- msgstr "Текущие события %s"
1714
-
1715
  #: templates/connect.php:387
1716
- msgid "Activation, deactivation and uninstall"
1717
- msgstr "Активация, деактивация и деинсталляция "
 
 
 
 
 
 
 
 
1718
 
1719
- #: templates/connect.php:395
1720
  msgid "Newsletter"
1721
  msgstr "Рассылка "
1722
 
1723
- #: templates/connect.php:403
1724
  msgid "Plugins & Themes"
1725
  msgstr "Plugins & Themes"
1726
 
1727
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1728
  msgid "Title, slug, version, and is active"
1729
  msgstr "Title, slug, version, and is active"
1730
 
1731
- #: templates/connect.php421, templates/forms/license-activation.php:41
1732
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1733
- msgstr "%1$s будет периодически присылать информацию %2$s с целью проверки безопасности, сообщения об обновлении функционала и подтверждения действия Вашей лицензии. "
1734
 
1735
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1736
  msgid "What permissions are being granted?"
1737
  msgstr "Какие предоставляются разрешения?"
1738
 
1739
- #: templates/connect.php:452
1740
  msgid "Don't have a license key?"
1741
  msgstr "У Вас нет лицензионного ключа?"
1742
 
1743
- #: templates/connect.php:455
1744
  msgid "Have a license key?"
1745
  msgstr "У Вас есть лицензионный ключ?"
1746
 
1747
- #: templates/connect.php:463
1748
  msgid "Privacy Policy"
1749
  msgstr "Политика Конфиденциальности"
1750
 
1751
- #: templates/connect.php:465
1752
  msgid "License Agreement"
1753
  msgstr "License Agreement"
1754
 
1755
- #: templates/connect.php:465
1756
  msgid "Terms of Service"
1757
  msgstr "Пользовательское соглашение"
1758
 
1759
- #: templates/connect.php:854
1760
  msgctxt "as in the process of sending an email"
1761
  msgid "Sending email"
1762
  msgstr "Электронное письмо отправляется Вам на почту "
1763
 
1764
- #: templates/connect.php:855
1765
  msgctxt "as activating plugin"
1766
  msgid "Activating"
1767
  msgstr "Активация "
@@ -2364,7 +2392,11 @@ msgstr "Пожалуйста введите лицензионный ключ,
2364
  msgid "Update License"
2365
  msgstr "Обновить лицензию"
2366
 
2367
- #: templates/forms/license-activation.php:181
 
 
 
 
2368
  msgid "Associate with the license owner's account."
2369
  msgstr "Associate with the license owner's account."
2370
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Robert Premmerce <info@premmerce.com>, 2018
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: ru_RU\n"
13
  "Language-Team: Russian (Russia) (http://www.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1919, templates/account.php:912
25
  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."
26
  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."
27
 
28
+ #: includes/class-freemius.php:1926
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Would you like to proceed with the update?"
31
 
32
+ #: includes/class-freemius.php:2138
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
35
 
36
+ #: includes/class-freemius.php:2140
37
  msgid "Error"
38
  msgstr "Ошибка"
39
 
40
+ #: includes/class-freemius.php:2540
41
  msgid "I found a better %s"
42
  msgstr "Я нашел лучший %s"
43
 
44
+ #: includes/class-freemius.php:2542
45
  msgid "What's the %s's name?"
46
  msgstr "Какое название %s?"
47
 
48
+ #: includes/class-freemius.php:2548
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
51
 
52
+ #: includes/class-freemius.php:2550
53
  msgid "Deactivation"
54
  msgstr "Деактивация"
55
 
56
+ #: includes/class-freemius.php:2551
57
  msgid "Theme Switch"
58
  msgstr "Переключатель шаблона "
59
 
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Другие"
64
 
65
+ #: includes/class-freemius.php:2568
66
  msgid "I no longer need the %s"
67
  msgstr "%s больше не понадобится."
68
 
69
+ #: includes/class-freemius.php:2575
70
  msgid "I only needed the %s for a short period"
71
  msgstr "%s требовалась на короткое время"
72
 
73
+ #: includes/class-freemius.php:2581
74
  msgid "The %s broke my site"
75
  msgstr "%s повредила мой сайт"
76
 
77
+ #: includes/class-freemius.php:2588
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s внезапно перестала работать "
80
 
81
+ #: includes/class-freemius.php:2598
82
  msgid "I can't pay for it anymore"
83
  msgstr "Я больше не могу оплачивать это. "
84
 
85
+ #: includes/class-freemius.php:2600
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Какая стоимость была бы для Вас приемлемой? "
88
 
89
+ #: includes/class-freemius.php:2606
90
  msgid "I don't like to share my information with you"
91
  msgstr "Я не хочу делиться личной информацией с Вами"
92
 
93
+ #: includes/class-freemius.php:2627
94
  msgid "The %s didn't work"
95
  msgstr "%s не сработала"
96
 
97
+ #: includes/class-freemius.php:2637
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Я не могу понять как сделать так, чтобы оно работало"
100
 
101
+ #: includes/class-freemius.php:2645
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
104
 
105
+ #: includes/class-freemius.php:2647
106
  msgid "What feature?"
107
  msgstr "Какой функционал?"
108
 
109
+ #: includes/class-freemius.php:2651
110
  msgid "The %s is not working"
111
  msgstr "%s не работает"
112
 
113
+ #: includes/class-freemius.php:2653
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
116
 
117
+ #: includes/class-freemius.php:2657
118
  msgid "It's not what I was looking for"
119
  msgstr "Это не то, что я искал. "
120
 
121
+ #: includes/class-freemius.php:2659
122
  msgid "What you've been looking for?"
123
  msgstr "Что именно Вы ищите? "
124
 
125
+ #: includes/class-freemius.php:2663
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s не сработала как ожидалось"
128
 
129
+ #: includes/class-freemius.php:2665
130
  msgid "What did you expect?"
131
  msgstr "Каковы были Ваши ожидания? "
132
 
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Исправление ошибок Freemius"
136
 
137
+ #: includes/class-freemius.php:4272
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
140
 
141
+ #: includes/class-freemius.php:4274
142
  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."
143
  msgstr "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
144
 
145
+ #: includes/class-freemius.php:4281
146
  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."
147
  msgstr "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
148
 
149
+ #: includes/class-freemius.php:4386
150
  msgid "Yes - do your thing"
151
  msgstr "Да, делайте то, что Вам нужно. "
152
 
153
+ #: includes/class-freemius.php:4391
154
  msgid "No - just deactivate"
155
  msgstr "Нет. Нужно деактивировать. "
156
 
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Упс!"
168
 
169
+ #: includes/class-freemius.php:4505
170
  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."
171
  msgstr "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
172
 
173
+ #: includes/class-freemius.php:4927
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s не работает без %s."
177
 
178
+ #: includes/class-freemius.php:4928
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s не может работать без плагина. "
182
 
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
187
 
188
+ #: includes/class-freemius.php:5857
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Премиум версия %s была успешно активирована. "
191
 
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Вау!"
196
 
197
+ #: includes/class-freemius.php:5884
198
  msgid "You have a %s license."
199
  msgstr "У Вас есть лицензия %s."
200
 
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Ура!"
208
 
209
+ #: includes/class-freemius.php:6174
210
  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."
211
  msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
212
 
213
+ #: includes/class-freemius.php:6178
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
216
 
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Больше информации о %s"
221
 
222
+ #: includes/class-freemius.php:6188
223
  msgid "Purchase License"
224
  msgstr "Купите лицензию "
225
 
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
229
 
230
+ #: includes/class-freemius.php:7129
231
  msgid "start the trial"
232
  msgstr "Начать тестовый период"
233
 
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "Закончить установку"
237
 
238
+ #: includes/class-freemius.php:7249
239
  msgid "You are just one step away - %s"
240
  msgstr "Вам осталось совсем немножко %s"
241
 
242
+ #: includes/class-freemius.php:7252
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Закончить активацию %s сейчас "
246
 
247
+ #: includes/class-freemius.php:7334
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
250
 
251
+ #: includes/class-freemius.php:7338
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
+ #: includes/class-freemius.php:7773
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "Обновление %s было успешно завершено"
258
 
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Функционал плагина "
265
 
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Плагин "
270
 
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Шаблон "
276
 
277
+ #: includes/class-freemius.php:13188
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
+ #: includes/class-freemius.php:13202
282
  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."
283
  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."
284
 
285
+ #: includes/class-freemius.php:13207
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
+ #: includes/class-freemius.php:13208
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
+ #: includes/class-freemius.php:13266
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
 
297
+ #: includes/class-freemius.php:13339
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
304
 
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
308
 
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
  msgid "Change Ownership"
311
  msgstr "Сменить владельца лицензии "
312
 
313
+ #: includes/class-freemius.php:13977
314
  msgid "Invalid site details collection."
315
  msgstr "Invalid site details collection."
316
 
317
+ #: includes/class-freemius.php:14097
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
320
 
321
+ #: includes/class-freemius.php:14099
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
324
 
325
+ #: includes/class-freemius.php:14373
326
  msgid "Account is pending activation."
327
  msgstr "Учетная запись в процессе активации"
328
 
329
+ #: includes/class-freemius.php14485,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "Buy a license now"
333
 
334
+ #: includes/class-freemius.php14497,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "Renew your license now"
338
 
339
+ #: includes/class-freemius.php:14501
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s to access version %s security & feature updates, and support."
342
 
343
+ #: includes/class-freemius.php:16929
344
  msgid "%s activation was successfully completed."
345
  msgstr "Активация %s была успешно завершена"
346
 
347
+ #: includes/class-freemius.php:16943
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
350
 
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
  msgid "Your trial has been successfully started."
353
  msgstr "Ваш тестовый период успешно начат"
354
 
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
  msgid "Couldn't activate %s."
358
  msgstr "Невозможно активировать %s"
359
 
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
  msgid "Please contact us with the following message:"
363
  msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
364
 
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "An unknown error has occurred."
368
 
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
  msgid "Upgrade"
371
  msgstr "Сделать апгрейд "
372
 
373
+ #: includes/class-freemius.php:18184
374
  msgid "Start Trial"
375
  msgstr "Начать тестовый период"
376
 
377
+ #: includes/class-freemius.php:18186
378
  msgid "Pricing"
379
  msgstr "Цены "
380
 
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
  msgid "Affiliation"
383
  msgstr "Партнерство "
384
 
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "Личный кабинет"
389
 
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "Контакты "
394
 
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "Настройки плагина "
400
 
401
+ #: includes/class-freemius.php:18361
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "Цены"
415
 
416
+ #: includes/class-freemius.php18576,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "Форум поддержки "
420
 
421
+ #: includes/class-freemius.php:19550
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
424
 
425
+ #: includes/class-freemius.php:19551
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Все верно!"
429
 
430
+ #: includes/class-freemius.php:20057
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
+ #: includes/class-freemius.php:20081
435
  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."
436
  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."
437
 
438
+ #: includes/class-freemius.php:20316
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "Ваш %s план был успешно обновлен"
441
 
442
+ #: includes/class-freemius.php:20318
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "Покупка %s плагина успешно состоялась"
445
 
446
+ #: includes/class-freemius.php:20321
447
  msgid "Download the latest version"
448
  msgstr "Скачай последнюю версию"
449
 
450
+ #: includes/class-freemius.php:20407
451
  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"
452
  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"
453
 
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
  msgid "Error received from the server:"
457
  msgstr "Ошибка сервера"
458
 
459
+ #: includes/class-freemius.php:20423
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
462
 
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Хм..."
468
 
469
+ #: includes/class-freemius.php:20664
470
  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."
471
  msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
472
 
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "Тестовый период"
478
 
479
+ #: includes/class-freemius.php:20670
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
482
 
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
  msgid "Please contact us here"
485
  msgstr "Пожалуйста, напишите нам сообщение здесь. "
486
 
487
+ #: includes/class-freemius.php:20685
488
  msgid "Your plan was successfully activated."
489
  msgstr "Your plan was successfully activated."
490
 
491
+ #: includes/class-freemius.php:20686
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "Ваш тарифный план был успешно изменен. "
494
 
495
+ #: includes/class-freemius.php:20703
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "Ваш тарифный план был успешно изменен на %s."
498
 
499
+ #: includes/class-freemius.php:20719
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
502
 
503
+ #: includes/class-freemius.php:20721
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
+ #: includes/class-freemius.php:20729
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
510
 
511
+ #: includes/class-freemius.php:20742
512
  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."
513
  msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
514
 
515
+ #: includes/class-freemius.php:20768
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "Your free trial has expired. You can still continue using all our free features."
518
 
519
+ #: includes/class-freemius.php:20770
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
 
523
+ #: includes/class-freemius.php:20885
524
  msgid "It looks like the license could not be activated."
525
  msgstr "Вероятно возникли трудности с активацией лицензии. "
526
 
527
+ #: includes/class-freemius.php:20927
528
  msgid "Your license was successfully activated."
529
  msgstr "Ваша лицензия была успешно активирована. "
530
 
531
+ #: includes/class-freemius.php:20953
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
534
 
535
+ #: includes/class-freemius.php:20977
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "Вероятно деактивация лицензии не состоялась. "
538
 
539
+ #: includes/class-freemius.php:21006
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
+ #: includes/class-freemius.php:21007
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
546
 
547
+ #: includes/class-freemius.php:21010
548
  msgid "O.K"
549
  msgstr "O.K."
550
 
551
+ #: includes/class-freemius.php:21063
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
 
555
+ #: includes/class-freemius.php:21072
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
 
559
+ #: includes/class-freemius.php:21114
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "Вы уже пользуетесь тестовой версией %s "
562
 
563
+ #: includes/class-freemius.php:21125
564
  msgid "You already utilized a trial before."
565
  msgstr "Вы уже использовали Ваш тестовый период"
566
 
567
+ #: includes/class-freemius.php:21139
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
570
 
571
+ #: includes/class-freemius.php:21150
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "Тарифный план % не предусматривает тестового периода. "
574
 
575
+ #: includes/class-freemius.php:21161
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "Тарифные планы %s не предусматривают тестовый период. "
578
 
579
+ #: includes/class-freemius.php:21211
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "Возможно, Ваш тестовый период уже закончился. "
582
 
583
+ #: includes/class-freemius.php:21247
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
586
 
587
+ #: includes/class-freemius.php:21266
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "Ваш бесплатный тестовый период был успешно отменен. "
590
 
591
+ #: includes/class-freemius.php:21582
592
  msgid "Version %s was released."
593
  msgstr "Релиз версии %s состоялся. "
594
 
595
+ #: includes/class-freemius.php:21582
596
  msgid "Please download %s."
597
  msgstr "Пожалуйста, скачайте %s"
598
 
599
+ #: includes/class-freemius.php:21589
600
  msgid "the latest %s version here"
601
  msgstr "Последняя версия %s здесь"
602
 
603
+ #: includes/class-freemius.php:21594
604
  msgid "New"
605
  msgstr "Новое "
606
 
607
+ #: includes/class-freemius.php:21599
608
  msgid "Seems like you got the latest release."
609
  msgstr "Вероятно, Вы пользуетесь последней версией"
610
 
611
+ #: includes/class-freemius.php:21600
612
  msgid "You are all good!"
613
  msgstr "Все прошло хорошо!"
614
 
615
+ #: includes/class-freemius.php:21903
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
618
 
619
+ #: includes/class-freemius.php:22043
620
  msgid "Site successfully opted in."
621
  msgstr "Site successfully opted in."
622
 
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
  msgid "Awesome"
625
  msgstr "Отлично!"
626
 
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
630
 
631
+ #: includes/class-freemius.php:22061
632
  msgid "Thank you!"
633
  msgstr "Thank you!"
634
 
635
+ #: includes/class-freemius.php:22068
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
638
 
639
+ #: includes/class-freemius.php:22226
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
642
 
643
+ #: includes/class-freemius.php:22232
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
646
 
647
+ #: includes/class-freemius.php:22237
648
  msgid "%s is the new owner of the account."
649
  msgstr "%я является новым владельцем аккаунта"
650
 
651
+ #: includes/class-freemius.php:22239
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "Поздравления! "
655
 
656
+ #: includes/class-freemius.php:22275
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
659
 
660
+ #: includes/class-freemius.php:22287
661
  msgid "Please provide your full name."
662
  msgstr "Пожалуйста, введите Ваше полное имя"
663
 
664
+ #: includes/class-freemius.php:22292
665
  msgid "Your name was successfully updated."
666
  msgstr "Ваше имя было успешно обновлено"
667
 
668
+ #: includes/class-freemius.php:22353
669
  msgid "You have successfully updated your %s."
670
  msgstr "Вы успешно обновили Ваш %s"
671
 
672
+ #: includes/class-freemius.php:22412
673
  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."
674
  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."
675
 
676
+ #: includes/class-freemius.php:22415
677
  msgid "Click here"
678
  msgstr "Click here"
679
 
680
+ #: includes/class-freemius.php:22513
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
683
 
684
+ #: includes/class-freemius.php:22514
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "Внимание!"
688
 
689
+ #: includes/class-freemius.php:23090
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "Привет!"
693
 
694
+ #: includes/class-freemius.php:23090
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
697
 
698
+ #: includes/class-freemius.php:23098
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
701
 
702
+ #: includes/class-freemius.php:23099
703
  msgid "No credit card required"
704
  msgstr "Не требуются данные платежной карты"
705
 
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "Начни тестовый период!"
710
 
711
+ #: includes/class-freemius.php:23183
712
  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!"
713
  msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
714
 
715
+ #: includes/class-freemius.php:23192
716
  msgid "Learn more"
717
  msgstr "Узнать больше"
718
 
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "Активировать лицензию"
725
 
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "Изменить лицензию "
731
 
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "Отказаться от использования"
735
 
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "Присоединиться"
741
 
742
+ #: includes/class-freemius.php:23738
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
 
746
+ #: includes/class-freemius.php:23746
747
  msgid "Activate %s features"
748
  msgstr "Activate %s features"
749
 
750
+ #: includes/class-freemius.php:23759
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
753
 
754
+ #: includes/class-freemius.php:23763
755
  msgid "Download the latest %s version"
756
  msgstr "Скачайте последнюю версию %s"
757
 
758
+ #: includes/class-freemius.php:23767
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "Загрузите и активируйте скачанную версию"
761
 
762
+ #: includes/class-freemius.php:23769
763
  msgid "How to upload and activate?"
764
  msgstr "Как загрузить и активировать?"
765
 
766
+ #: includes/class-freemius.php:23903
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
 
770
+ #: includes/class-freemius.php:24072
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "Авто установка работает только для зарегистрированных пользователей."
773
 
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
  msgid "Invalid module ID."
778
  msgstr "Неверный ID модуля"
779
 
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
  msgid "Premium version already active."
782
  msgstr "Премиум версия уже активирована"
783
 
784
+ #: includes/class-freemius.php:24098
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
787
 
788
+ #: includes/class-freemius.php:24105
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
791
 
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
  msgid "Premium add-on version already installed."
794
  msgstr "Премиум версия плагина была установлена"
795
 
796
+ #: includes/class-freemius.php:24473
797
  msgid "View paid features"
798
  msgstr "Просмотр платных возможностей"
799
 
800
+ #: includes/class-freemius.php:24795
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "Thank you so much for using %s and its add-ons!"
803
 
804
+ #: includes/class-freemius.php:24796
805
  msgid "Thank you so much for using %s!"
806
  msgstr "Thank you so much for using %s!"
807
 
808
+ #: includes/class-freemius.php:24802
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
 
812
+ #: includes/class-freemius.php:24806
813
  msgid "Thank you so much for using our products!"
814
  msgstr "Thank you so much for using our products!"
815
 
816
+ #: includes/class-freemius.php:24807
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
 
820
+ #: includes/class-freemius.php:24826
821
  msgid "%s and its add-ons"
822
  msgstr "%s and its add-ons"
823
 
824
+ #: includes/class-freemius.php:24835
825
  msgid "Products"
826
  msgstr "Products"
827
 
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
  msgid "Yes"
830
  msgstr "Yes"
831
 
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "send me security & feature updates, educational content and offers."
835
 
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
  msgid "No"
838
  msgstr "No"
839
 
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
 
844
+ #: includes/class-freemius.php:24856
845
  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 :-)"
846
  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 :-)"
847
 
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
 
852
+ #: includes/class-freemius.php:25140
853
  msgid "License key is empty."
854
  msgstr "License key is empty."
855
 
882
  msgid "Important Upgrade Notice:"
883
  msgstr "Important Upgrade Notice:"
884
 
885
+ #: includes/class-fs-plugin-updater.php:1326
886
  msgid "Installing plugin: %s"
887
  msgstr "Установка плагина: %s"
888
 
889
+ #: includes/class-fs-plugin-updater.php:1367
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
892
 
893
+ #: includes/class-fs-plugin-updater.php:1549
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
896
 
912
  msgid "Install Free Version Update Now"
913
  msgstr "Install Free Version Update Now"
914
 
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
  msgid "Install Update Now"
917
  msgstr "Провести обновления сейчас "
918
 
932
  msgid "Download Latest Free Version"
933
  msgstr "Download Latest Free Version"
934
 
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
944
  msgid "Activate this add-on"
945
  msgstr "Активируйте этот функционал "
946
 
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
  msgid "Activate Free Version"
949
  msgstr "Активировать бесплатную версию?"
950
 
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "Активировать "
1084
  msgid "Details"
1085
  msgstr "Детальней"
1086
 
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
1100
  msgid "Last Updated"
1101
  msgstr "Последнее обновление "
1102
 
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "% тому назад "
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Latest Free Version Installed"
1213
 
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "Downgrading your plan"
1219
 
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
 
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  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."
1238
 
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "Отказ от пользования тестовым периодом автоматически блокирует доступ ко всем премиум возможностям. Вы уверены, что хотите отказаться?"
1243
 
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
 
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "По окончанию срока действия Вашей лицензии, Вы сможете пользоваться бесплатной версией, но у Вас не будет доступа к возможностям %s. "
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "Активируйте план %s"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "Автоматическое продление в %s"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "Окончание срока пользования через %s"
1274
 
1275
+ #: templates/account.php:117
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "Синхронизация лицензии "
1279
 
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "Отменить тестовый период "
1283
 
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "Изменить план "
1287
 
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "Сделать апгрейд"
1292
 
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "Понизить план "
1298
 
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "Бесплатная "
1305
 
1306
+ #: templates/account.php126, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "Тарифный план "
1312
 
1313
+ #: templates/account.php:127
1314
  msgid "Bundle Plan"
1315
  msgstr "Bundle Plan"
1316
 
1317
+ #: templates/account.php:250
1318
  msgid "Free Trial"
1319
  msgstr "Бесплатный период пользования "
1320
 
1321
+ #: templates/account.php:261
1322
  msgid "Account Details"
1323
  msgstr " Детали"
1324
 
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "Start Debug"
1328
 
1329
+ #: templates/account.php:270
1330
  msgid "Stop Debug"
1331
  msgstr "Stop Debug"
1332
 
1333
+ #: templates/account.php:277
1334
  msgid "Billing & Invoices"
1335
  msgstr "Billing & Invoices"
1336
 
1337
+ #: templates/account.php:288
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "Удалив личный кабинет, Вы автоматически деактивируете лицензию на Ваш тарифный план %s, которую Вы можете использовать на других сайтах. Если Вы хотите также приостановить регулярные платежи, нажмите на кнопку \"Отмена\" и сначала измените свой тарифный план на бесплатный. Вы уверены, что хотите продолжить удаление?"
1340
 
1341
+ #: templates/account.php:290
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "Удаление личного кабинете не может быть произведено временно. Удалите только в случае если Вы больше не хотите пользоваться %s. Вы уверены, что хотите продолжить удаление? "
1344
 
1345
+ #: templates/account.php:293
1346
  msgid "Delete Account"
1347
  msgstr "Удалить личный кабинет"
1348
 
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "Деактивировать лицензию "
1353
 
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "Вы уверены, что хотите продолжить?"
1357
 
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "Отменить подписку "
1361
 
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "Синхронизировать "
1366
 
1367
+ #: templates/account.php372, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "Имя"
1370
 
1371
+ #: templates/account.php378, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "Электронный адрес "
1374
 
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "User ID "
1378
 
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "ID"
1386
 
1387
+ #: templates/account.php:410
1388
  msgid "Site ID"
1389
  msgstr "Site ID"
1390
 
1391
+ #: templates/account.php:413
1392
  msgid "No ID"
1393
  msgstr "No ID"
1394
 
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "Public Key "
1400
 
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "Secret Key "
1405
 
1406
+ #: templates/account.php:427
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "Нет секрета "
1410
 
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "Тестовый период "
1415
 
1416
+ #: templates/account.php481, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "Лицензионный ключ "
1420
 
1421
+ #: templates/account.php:512
1422
  msgid "Join the Beta program"
1423
  msgstr "Join the Beta program"
1424
 
1425
+ #: templates/account.php:518
1426
  msgid "not verified"
1427
  msgstr "не подтвержден "
1428
 
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "Срок действия закончился "
1432
 
1433
+ #: templates/account.php:587
1434
  msgid "Premium version"
1435
  msgstr "Премиум версия "
1436
 
1437
+ #: templates/account.php:589
1438
  msgid "Free version"
1439
  msgstr "Бесплатная версия "
1440
 
1441
+ #: templates/account.php:601
1442
  msgid "Verify Email"
1443
  msgstr "Подтвердите электронный адрес "
1444
 
1445
+ #: templates/account.php:615
1446
  msgid "Download %s Version"
1447
  msgstr "Скачайте версию %s"
1448
 
1449
+ #: templates/account.php:631
1450
  msgid "Download Paid Version"
1451
  msgstr "Download Paid Version"
1452
 
1453
+ #: templates/account.php649, templates/account.php892,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "Показать "
1459
 
1460
+ #: templates/account.php:664
1461
  msgid "What is your %s?"
1462
  msgstr "Какой Ваш %s?"
1463
 
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "Редактировать "
1468
 
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
  msgstr "Change User"
1472
 
1473
+ #: templates/account.php:700
1474
  msgid "Sites"
1475
  msgstr "Сайтов "
1476
 
1477
+ #: templates/account.php:713
1478
  msgid "Search by address"
1479
  msgstr "Search by address"
1480
 
1481
+ #: templates/account.php722, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "Address"
1484
 
1485
+ #: templates/account.php:723
1486
  msgid "License"
1487
  msgstr "Лицензия "
1488
 
1489
+ #: templates/account.php:724
1490
  msgid "Plan"
1491
  msgstr "Тарифный план "
1492
 
1493
+ #: templates/account.php:757
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "Лицензия "
1497
 
1498
+ #: templates/account.php:886
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "Спрятать "
1502
 
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "Обработка данных "
1506
 
1507
+ #: templates/account.php:911
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "Get updates for bleeding edge Beta versions of %s."
1510
 
1511
+ #: templates/account.php:969
1512
  msgid "Cancelling %s"
1513
  msgstr "Cancelling %s"
1514
 
1515
+ #: templates/account.php969, templates/account.php986,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "trial"
1520
 
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "Cancelling %s..."
1524
 
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "subscription"
1529
 
1530
+ #: templates/account.php:1001
1531
  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?"
1532
  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?"
1533
 
1534
+ #: templates/account.php:1075
1535
  msgid "Disabling white-label mode"
1536
  msgstr "Disabling white-label mode"
1537
 
1538
+ #: templates/account.php:1076
1539
  msgid "Enabling white-label mode"
1540
  msgstr "Enabling white-label mode"
1541
 
1561
  msgid "Installed"
1562
  msgstr "Installed"
1563
 
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
1617
  msgid "Agree & Activate License"
1618
  msgstr "Согласиться и активировать лицензию "
1619
 
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
 
1624
+ #: templates/connect.php:191
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
 
1628
+ #: templates/connect.php:192
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "Никогда не пропускайте важных оповещений - подпишитесь на наши уведомления о безопасности и новом функционале."
1631
 
1632
+ #: templates/connect.php:198
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
 
1636
+ #: templates/connect.php:199
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
 
1640
+ #: templates/connect.php:233
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "We're excited to introduce the Freemius network-level integration."
1643
 
1644
+ #: templates/connect.php:236
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
 
1648
+ #: templates/connect.php:238
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
 
1652
+ #: templates/connect.php:240
1653
  msgid "%s's paid features"
1654
  msgstr "%s's paid features"
1655
 
1656
+ #: templates/connect.php:245
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
 
1660
+ #: templates/connect.php:247
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
 
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "Лицензионный ключ"
1668
 
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "Не можете найти лицензионный ключ? "
1672
 
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "Пропустить"
1678
 
1679
+ #: templates/connect.php:321
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "Delegate to Site Admins"
1682
 
1683
+ #: templates/connect.php:321
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
 
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
  msgid "Your Profile Overview"
1693
  msgstr "Просмотр Вашего профиля "
1694
 
1695
+ #: templates/connect.php:363
1696
  msgid "Name and email address"
1697
  msgstr "Имя и электронный адрес "
1698
 
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
  msgid "Your Site Overview"
1705
  msgstr "Просмотр Вашего сайта "
1706
 
1707
+ #: templates/connect.php:372
1708
  msgid "Site URL, WP version, PHP info"
1709
  msgstr "Site URL, WP version, PHP info"
1710
 
1712
  msgid "Admin Notices"
1713
  msgstr "Админ заметки"
1714
 
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
  msgid "Updates, announcements, marketing, no spam"
1717
  msgstr "Новости, объявления, маркетинг, без спама"
1718
 
 
 
 
 
1719
  #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
 
1731
+ #: templates/connect.php:397
1732
  msgid "Newsletter"
1733
  msgstr "Рассылка "
1734
 
1735
+ #: templates/connect.php:405
1736
  msgid "Plugins & Themes"
1737
  msgstr "Plugins & Themes"
1738
 
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
  msgid "Title, slug, version, and is active"
1749
  msgstr "Title, slug, version, and is active"
1750
 
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
 
1755
  #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
  msgid "What permissions are being granted?"
1765
  msgstr "Какие предоставляются разрешения?"
1766
 
1767
+ #: templates/connect.php:457
1768
  msgid "Don't have a license key?"
1769
  msgstr "У Вас нет лицензионного ключа?"
1770
 
1771
+ #: templates/connect.php:460
1772
  msgid "Have a license key?"
1773
  msgstr "У Вас есть лицензионный ключ?"
1774
 
1775
+ #: templates/connect.php:468
1776
  msgid "Privacy Policy"
1777
  msgstr "Политика Конфиденциальности"
1778
 
1779
+ #: templates/connect.php:470
1780
  msgid "License Agreement"
1781
  msgstr "License Agreement"
1782
 
1783
+ #: templates/connect.php:470
1784
  msgid "Terms of Service"
1785
  msgstr "Пользовательское соглашение"
1786
 
1787
+ #: templates/connect.php:866
1788
  msgctxt "as in the process of sending an email"
1789
  msgid "Sending email"
1790
  msgstr "Электронное письмо отправляется Вам на почту "
1791
 
1792
+ #: templates/connect.php:867
1793
  msgctxt "as activating plugin"
1794
  msgid "Activating"
1795
  msgstr "Активация "
2392
  msgid "Update License"
2393
  msgstr "Обновить лицензию"
2394
 
2395
+ #: templates/forms/license-activation.php:41
2396
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2397
+ msgstr "%1$s будет периодически присылать информацию %2$s с целью проверки безопасности, сообщения об обновлении функционала и подтверждения действия Вашей лицензии. "
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
  msgid "Associate with the license owner's account."
2401
  msgstr "Associate with the license owner's account."
2402
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.po CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Sankar Srinivasan <petra.srini@gmail.com>, 2019
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: ta\n"
13
  "Language-Team: Tamil (http://www.transifex.com/freemius/wordpress-sdk/language/ta/)\n"
@@ -21,837 +21,837 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  msgstr "எச்சரிக்கை: %sன் முன்னோட்ட Beta பதிப்பின் மேம்பட்ட வடிவம் பழைய பதிப்பின் மீது நிறுவப்படுகிறது. "
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "மேம்படுத்தப்பட்ட பதிப்பில் தொடர விரும்புகிறீர்களா?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "ப்ளக்இன் முக்கிய கோப்பை Freemius SDKவால் கண்டறிய முடியவில்லை. தயவுசெய்து பின்வரும் செய்தியுடன் sdk@freemius.comக்கு மின்னஞ்சல் அனுப்பவும்"
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "தவறு"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "எனக்கு வேறு ஒரு நல்ல %s கிடைத்துவிட்டது"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "%sன் பெயர் என்ன?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "இது தற்காலிக %s. தவறை சரிசெய்ய முயற்சிக்கிறேன்"
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
  msgstr "செயல்நிறுத்து"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "தீம் மாற்றம்"
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "மற்றவை"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "இனி எனக்கு %s தேவையில்லை"
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "குறுகிய காலத்திற்கு மட்டும் %s போதும்"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "%s எனது இணையதளத்தை செயலிழக்க வைத்துவிட்டது"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s திடீரென நின்றுவிட்டது"
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "இதற்குமேல் பணம் செலுத்தமாட்டேன்"
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "என்ன விலை உங்களுக்கு வசதியாக இருக்கும்?"
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "என் தனிப்பட்ட தகவலை உங்களோடு பகிர விரும்பவில்லை."
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "%s வேலை செய்யவில்லை"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "இதை எப்படி உபயோகிப்பது என்று எனக்குப் புரியவில்லை"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s நல்லதுதான். ஆனால், எனக்கு தேவைப்படும் வசதி இதில் இல்லை"
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "என்ன வசதி?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "%s சரிவர வேலை செய்யவில்லை"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "என்ன வேலை செய்யவில்லை என்பதை விளக்கமாக சொன்னால், அதை நாங்கள் சரி செய்வோம்."
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "நான் எதிர்பார்த்தது இதுவல்ல."
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "நீங்கள் என்ன எதிர்பார்க்கிறீர்கள்?"
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s நான் எதிர்பார்த்தது போல் இல்லை"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "நீங்கள் என்ன எதிர்பார்த்தீர்கள்?"
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius தவறுநீக்கி Debug"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "cURL பற்றியோ, அதை நிறுவுவது பற்றியோ எனக்குத் தெரியாது. உதவுங்கள்."
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  msgstr "இந்தப் பிரச்சினை சீராக உங்கள் hosting நிறுவனத்தை தொடர்பு கொள்கிறோம். பதில் வந்ததும் %sக்கு மின்னஞ்சல் வரும்."
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  msgstr "அருமை, cURLஐ நிறுவி அதை php.ini கோப்பில் அழைக்கவும். அதோடு, disable_functionsஐ php.iniல் தேடி, 'curl' என்று துவங்கும் செயல்படா மாறிகளை அழிக்கவும். வெற்றிகரமாக செயல்படுவதை உறுதிசெய்ய 'phpinfo()' பயன்படுத்தவும். செயல்பாடு துவங்கியதும் , %sன் செயல்பாட்டை ஒருமுறை நிறுத்தி, மீண்டும் செயல்படுத்தவும்."
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
  msgstr "ம்... கிளப்புங்கள்"
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
  msgstr "வேணாம்பா... கண்ண கட்டுது"
156
 
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "அரே ஓ சம்போ!"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  msgstr "இதைச் சரிசெய்ய வாய்ப்பளித்ததற்கு நன்றி. எங்கள் தொழில்நுட்ப பணியாளருக்கு இதுகுறித்து செய்தி அனுப்பியுள்ளோம். %sக்கு தகவல் வந்ததும் தொடர்பு கொள்கிறோம். தங்கள் பொறுமைக்கு நன்றி."
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s இல்லாமல் %s இயங்காது"
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது"
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "எதிர்பாரா API தவறு. பின்வரும் செய்தியோடு %sன் ஆக்கியோரைத் தொடர்பு கொள்ளவும்"
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது."
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "உங்களிடம் %sன் உரிமம் உள்ளது"
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Yee-haw"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  msgstr "ஆட் ஆன் விலையுள்ளது என்பதால் %sன் விலையில்லா முன்னோட்டம் ரத்தானது. நீங்கள் உரிமம் வாங்கிப் பயன்பாட்டைத் தொடரலாம்."
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s ஒரு விலையுள்ள ஆட்ஆன். ப்ளக்இன் செயல்பட நீங்கள் உரிமம் வாங்கவேண்டும்"
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "%s குறித்த மேலதிக தகவல்"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "உரிமம் வாங்குங்கள்"
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "%s அஞ்சலகத்திற்கு %s குறித்த செயல்பாட்டு மின்னஞ்சல் வந்துசேரும். %sக்கு வந்துசேர மின்னஞ்சலின் ஆக்டிவேசன் பட்டனை அழுத்தவும்."
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "வெள்ளோட்டம் துவங்கலாம்"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "நிறுவுதலை முடிக்கவும்"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "இன்னும் ஒருபடி அருகில் - %s"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "\"%s\" செயல்படுத்தலை முடியுங்கள்"
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "%s, %sக்கு சில சுவாரஸ்யங்களை உருவாக்கியிருக்கிறோம்"
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு செய்யுங்கள்"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "%sன் மேம்படுத்தல் முடிந்தது"
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "ஆட் ஆன்"
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "ப்ளக்இன்"
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "தீம்"
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
  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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "உபயோகிப்பாளரின் பீட்டாவை செயல்படுத்துகையில், புதிய தவறு உருவாகியுள்ளது."
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு செய்திருக்கிறார்."
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை அழுத்தவும்."
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "உரிமை மாற்றம்"
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "தவறான தள விவர சேர்ப்பு"
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. "
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "இந்த மின்னஞ்சலின் பதிவில் எந்த உரிமமும் இல்லை. தங்கள் மின்னஞ்சல் சரியானதா?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "கணக்கு செயல்பாடு முடிவடையவில்லை."
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "புது உரிமம் வாங்குங்கள்"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "உரிமத்தை புதுப்பியுங்கள்"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s பாதுகாப்பு மேம்படுத்தல் மற்றும் உதவிக்கு %s"
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "%s செயல்படுத்தல் வெற்றிகரமாக முடிந்தது."
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது."
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது"
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "%sஐ செயல்படுத்த முடியவில்லை."
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "பின்வரும் செய்தியோடு எங்களைத் தொடர்பு கொள்ளுங்கள்"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது"
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "மேம்படுத்து"
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "வெள்ளோட்டம் துவக்கு"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "விலை விவரம்"
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "புரிந்துணர்வு"
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "கணக்கு"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "தொடர்பு கொள்ளுங்கள்"
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "ஆட்-ஆன்ஸ்"
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "விலை விவரம்"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "உதவி மையம்"
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கப்பட்டது - நன்றி!"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  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."
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "உங்கள் %s ஆட்-ஆன் திட்டம் மேம்படுத்தப்பட்டது."
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "%s ஆட்-ஆனை வாங்கிவிட்டீர்கள்."
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "புதிய பதிப்பை பதிவிறக்கலாம்"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  msgstr "%1$s சரியாகச் செயல்பட அவசியமான Freemius APIயை உங்கள் செர்வர் தடை செய்கிறது. %2$sயை செயல்பட வைக்க உங்கள் hosting நிறுவனத்தை அணுகவும்."
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது."
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்."
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  msgstr "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். "
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "வெள்ளோட்டம்"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது."
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "எங்களை இங்கு அணுகலாம்"
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது."
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது."
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது."
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் தொடரலாம். "
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை மேம்படுத்துங்கள்."
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை அணுகவும்."
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  msgstr "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்."
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்."
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$sஇவற்றை மேம்படுத்துங்கள்."
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது."
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது."
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது."
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது."
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்."
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "O.K"
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்."
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது."
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்."
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே."
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது."
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது."
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை."
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)"
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr ""
586
  "94%match\n"
587
  "உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்"
588
 
589
- #: includes/class-freemius.php:21236
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது."
592
 
593
- #: includes/class-freemius.php:21552
594
  msgid "Version %s was released."
595
  msgstr "%s பதிப்பு வெளியாகிவிட்டது."
596
 
597
- #: includes/class-freemius.php:21552
598
  msgid "Please download %s."
599
  msgstr "%sஐ பதிவிறக்கலாம்."
600
 
601
- #: includes/class-freemius.php:21559
602
  msgid "the latest %s version here"
603
  msgstr "%sன் அண்மைய பதிப்பு இதோ"
604
 
605
- #: includes/class-freemius.php:21564
606
  msgid "New"
607
  msgstr "புதியது"
608
 
609
- #: includes/class-freemius.php:21569
610
  msgid "Seems like you got the latest release."
611
  msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது."
612
 
613
- #: includes/class-freemius.php:21570
614
  msgid "You are all good!"
615
  msgstr "நல்லது... மகிழ்ச்சி"
616
 
617
- #: includes/class-freemius.php:21873
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்."
620
 
621
- #: includes/class-freemius.php:22013
622
  msgid "Site successfully opted in."
623
  msgstr "தளம் தெரிவு செய்யப்பட்டது."
624
 
625
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
626
  msgid "Awesome"
627
  msgstr "அடி தூள்"
628
 
629
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "%s மேலும் தரமானதாக்க உங்கள் பயன்பாட்டுத் தரவுகளை நாங்கள் பின்தொடர உதவுங்கள்."
632
 
633
- #: includes/class-freemius.php:22031
634
  msgid "Thank you!"
635
  msgstr "நன்றி!"
636
 
637
- #: includes/class-freemius.php:22038
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "%sன் %s மீதான பயன்பாட்டுத் தரவுகளை %sக்கு நாங்கள் அனுப்ப மாட்டோம்."
640
 
641
- #: includes/class-freemius.php:22196
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "உரிமை மாற்றம் குறித்து உறுதிப்படுத்தும் மின்னஞ்சல் %s வழியாக உங்களுக்கு வந்திருக்கும். பாதுகாப்பு காரங்களுக்காக அடுத்த 15 நிமிடங்களுக்குள் மின்னஞ்சலைத் திறந்து உறுதி செய்யவும். ஒருவேளை உள்பெட்டியில் மின்னஞ்சல் இல்லையென்றால் Spamல் பார்க்கவும்."
644
 
645
- #: includes/class-freemius.php:22202
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது."
648
 
649
- #: includes/class-freemius.php:22207
650
  msgid "%s is the new owner of the account."
651
  msgstr "கணக்கின் புதிய உரிமையாளர் %s."
652
 
653
- #: includes/class-freemius.php:22209
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "வாழ்த்துக்கள்"
657
 
658
- #: includes/class-freemius.php:22245
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "உங்கள் மின்னஞ்சல் விவரம் மேம்படுத்தப்பட்டது. அதை உறுதிப்படுத்தும் மின்னஞ்சல் இன்னும் சில கணங்களில் தங்களுக்கு வந்துசேரும்."
661
 
662
- #: includes/class-freemius.php:22257
663
  msgid "Please provide your full name."
664
  msgstr "உங்கள் முழுப் பெயரைத் தரவும்."
665
 
666
- #: includes/class-freemius.php:22262
667
  msgid "Your name was successfully updated."
668
  msgstr "உங்கள் பெயர் ஏற்றப்பட்டது."
669
 
670
- #: includes/class-freemius.php:22323
671
  msgid "You have successfully updated your %s."
672
  msgstr "உங்கள் %s மேம்படுத்தப்பட்டது."
673
 
674
- #: includes/class-freemius.php:22382
675
  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."
676
  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."
677
 
678
- #: includes/class-freemius.php:22385
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
- #: includes/class-freemius.php:22483
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்."
685
 
686
- #: includes/class-freemius.php:22484
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "Heads up"
690
 
691
- #: includes/class-freemius.php:23060
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "Hey"
695
 
696
- #: includes/class-freemius.php:23060
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்."
699
 
700
- #: includes/class-freemius.php:23068
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!"
703
 
704
- #: includes/class-freemius.php:23069
705
  msgid "No credit card required"
706
  msgstr "கடன் அட்டை தேவையில்லை"
707
 
708
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்"
712
 
713
- #: includes/class-freemius.php:23153
714
  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!"
715
  msgstr "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!"
716
 
717
- #: includes/class-freemius.php:23162
718
  msgid "Learn more"
719
  msgstr "மேலும் அறிய"
720
 
721
- #: includes/class-freemius.php23348, templates/account.php556,
722
- #: templates/account.php706, templates/connect.php179,
723
- #: templates/connect.php456, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "உரிமம் செயல்படுத்த"
727
 
728
- #: includes/class-freemius.php23349, templates/account.php650,
729
- #: templates/account.php705, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "உரிமம் மாற்ற"
733
 
734
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "தெரிவை அகற்று"
737
 
738
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "தெரிவு செய்"
743
 
744
- #: includes/class-freemius.php:23700
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த அதை செயல்படுத்தவும். %3$s"
747
 
748
- #: includes/class-freemius.php:23708
749
  msgid "Activate %s features"
750
  msgstr "%s வசதிகளை செயல்படுத்த"
751
 
752
- #: includes/class-freemius.php:23721
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்"
755
 
756
- #: includes/class-freemius.php:23725
757
  msgid "Download the latest %s version"
758
  msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்"
759
 
760
- #: includes/class-freemius.php:23729
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்"
763
 
764
- #: includes/class-freemius.php:23731
765
  msgid "How to upload and activate?"
766
  msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?"
767
 
768
- #: includes/class-freemius.php:23865
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s"
771
 
772
- #: includes/class-freemius.php:24034
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்."
775
 
776
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
777
- #: includes/class-fs-plugin-updater.php1273,
778
- #: includes/class-fs-plugin-updater.php:1287
779
  msgid "Invalid module ID."
780
  msgstr "module ID தவறானது."
781
 
782
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
783
  msgid "Premium version already active."
784
  msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது."
785
 
786
- #: includes/class-freemius.php:24060
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை."
789
 
790
- #: includes/class-freemius.php:24067
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்."
793
 
794
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
795
  msgid "Premium add-on version already installed."
796
  msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது."
797
 
798
- #: includes/class-freemius.php:24435
799
  msgid "View paid features"
800
  msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்"
801
 
802
- #: includes/class-freemius.php:24757
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!"
805
 
806
- #: includes/class-freemius.php:24758
807
  msgid "Thank you so much for using %s!"
808
  msgstr "%s பயன்படுத்துவதற்கு நன்றி!"
809
 
810
- #: includes/class-freemius.php:24764
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ மேம்படுத்த உதவும்."
813
 
814
- #: includes/class-freemius.php:24768
815
  msgid "Thank you so much for using our products!"
816
  msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!"
817
 
818
- #: includes/class-freemius.php:24769
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் உருவாக்கத்தை மேம்படுத்த உதவும்."
821
 
822
- #: includes/class-freemius.php:24788
823
  msgid "%s and its add-ons"
824
  msgstr "%sம் அதன் ஆட்-ஆன்களும்"
825
 
826
- #: includes/class-freemius.php:24797
827
  msgid "Products"
828
  msgstr "தயாரிப்புகள்"
829
 
830
- #: includes/class-freemius.php24804, templates/connect.php:280
831
  msgid "Yes"
832
  msgstr "ஆம்"
833
 
834
- #: includes/class-freemius.php24805, templates/connect.php:281
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும்."
837
 
838
- #: includes/class-freemius.php24806, templates/connect.php:286
839
  msgid "No"
840
  msgstr "இல்லை"
841
 
842
- #: includes/class-freemius.php24808, templates/connect.php:288
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும். %s செய்க, %s தேவையில்லை"
845
 
846
- #: includes/class-freemius.php:24818
847
  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 :-)"
848
  msgstr "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)"
849
 
850
- #: includes/class-freemius.php24820, templates/connect.php:295
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்."
853
 
854
- #: includes/class-freemius.php:25102
855
  msgid "License key is empty."
856
  msgstr "License key காலியாக உள்ளது."
857
 
@@ -884,15 +884,15 @@ msgstr "புதிய பதிப்பு"
884
  msgid "Important Upgrade Notice:"
885
  msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு"
886
 
887
- #: includes/class-fs-plugin-updater.php:1338
888
  msgid "Installing plugin: %s"
889
  msgstr "%s: பிளக்இன் நிறுவப்படுகிறது"
890
 
891
- #: includes/class-fs-plugin-updater.php:1379
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்."
894
 
895
- #: includes/class-fs-plugin-updater.php:1561
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "பெயர் மாற்றமுடியாது. Slug உடனான folder, பிளக்இன் பேக்கில் இல்லை."
898
 
@@ -914,7 +914,7 @@ msgstr "என் விலையில்லா %sஐ துவக்கவு
914
  msgid "Install Free Version Update Now"
915
  msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்"
916
 
917
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
918
  msgid "Install Update Now"
919
  msgstr "மேம்படுத்தலை நிறுவலாம்"
920
 
@@ -934,7 +934,7 @@ msgctxt "as download latest version"
934
  msgid "Download Latest Free Version"
935
  msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க"
936
 
937
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
@@ -946,11 +946,11 @@ msgstr "அண்மைய பதிப்பை பதிவிறக்க"
946
  msgid "Activate this add-on"
947
  msgstr "ஆட்-ஆன் செயல்படுத்த"
948
 
949
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
950
  msgid "Activate Free Version"
951
  msgstr "விலையில்லா பதிப்பை செயல்படுத்த"
952
 
953
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "செயல்படுத்து"
@@ -1086,7 +1086,7 @@ msgstr "விலையில்லா %sக்குப் பிறகு, க
1086
  msgid "Details"
1087
  msgstr "விபரங்கள்"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
@@ -1102,7 +1102,7 @@ msgstr "உருவாக்கியவர்"
1102
  msgid "Last Updated"
1103
  msgstr "கடைசி மேம்படுத்தல்"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s முன்பு"
@@ -1213,13 +1213,13 @@ msgstr "சமீபத்திய பதிப்பு நிறுவப்
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது"
1215
 
1216
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "உங்கள் திட்டம் கீழ்ப்படுத்தப்படுகிறது"
1221
 
1222
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
@@ -1227,317 +1227,317 @@ msgstr "சந்தா ரத்தாகிறது"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "வருகின்ற அனைத்து பணம் செலுத்துதல்களையும் %1$s உடன் நிறுத்துகிறது, மற்றும் உங்கள் %2$s திட்ட உரிமம் %3$sல் காலாவதியாகிறது."
1234
 
1235
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  msgstr "தயவுசெய்து கவனிக்கவும். ரத்துசெய்த பிறகு மீண்டும் புதிய சந்தா/புதுப்பித்தலுக்கு பழைய விலையை எங்களால் வசூலிக்க முடியாது. விலை ஆண்டுக்கொரு முறை உயரும். நீங்கள் இனி புதுப்பிக்க விரும்பினால் புதிய விலையை செலுத்தவேண்டும்."
1240
 
1241
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "வெள்ளோட்டத்தை ரத்து செய்தால் அனைத்து விலையுள்ள வசதிகளும் நிறுத்தப்படும். சரியா?"
1245
 
1246
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "நீங்கள் %sன் வசதிகளை பயன்படுத்த முடியும். ஆனால் %s பாதுகாப்பு & மேம்படுத்தல் மற்றும் உதவியை அணுக இயலாது."
1251
 
1252
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "உங்கள் உரிமம் முடிந்ததும் நீங்கள் அனைத்து விலையில்லா வசதிகளையும் பயன்படுத்திக் கொள்ள முடியும். ஆனால் %s வசதிகளை அணுக இயலாது."
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
- #: templates/account.php109,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "%s திட்டம் செயல்படுத்த"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
- #: templates/account.php112, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "%sல் தானாக புதுப்பிக்கிறது"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
- #: templates/account.php114, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "%sல் காலாவதியாகிறது"
1276
 
1277
- #: templates/account.php:115
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "Sync License"
1281
 
1282
- #: templates/account.php116, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "வெள்ளோட்டம் ரத்து செய்க"
1285
 
1286
- #: templates/account.php117, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "திட்டம் மாற்ற"
1289
 
1290
- #: templates/account.php118, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "மேம்படுத்து"
1294
 
1295
- #: templates/account.php120, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "தரமிறக்கு"
1300
 
1301
- #: templates/account.php122, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "விலையில்லை"
1307
 
1308
- #: templates/account.php124, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "திட்டம்"
1314
 
1315
- #: templates/account.php:125
1316
  msgid "Bundle Plan"
1317
  msgstr "கூட்டுத்திட்டம்"
1318
 
1319
- #: templates/account.php:248
1320
  msgid "Free Trial"
1321
  msgstr "விலையில்லா வெள்ளோட்டம்"
1322
 
1323
- #: templates/account.php:259
1324
  msgid "Account Details"
1325
  msgstr "கணக்கு விபரங்கள்"
1326
 
1327
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
- #: templates/account.php:268
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
- #: templates/account.php:275
1336
  msgid "Billing & Invoices"
1337
  msgstr "பில் & இன்வாய்ஸ்"
1338
 
1339
- #: templates/account.php:286
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "கணக்கை அழிப்பதானது உங்கள் %s உரிமத்தை உடனே செயல்நிறுத்தும் ஆனாலும் பிற தளங்களில் பயன்படுத்தலாம். இனிவரும் பணம் செலுத்துதல்களை நிறுத்த வேண்டுமானால் முதலில் கணக்கை தரமிறக்கி \"ரத்து செய்\" பட்டனை கிளிக் செய்யவும். கணக்கை அழிக்க விருப்பமா?"
1342
 
1343
- #: templates/account.php:288
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "கணக்கை அழிப்பது தற்காலிகமானல்ல. இந்த %s இனி உங்களுக்குத் தேவையில்லை என்றால் மட்டும் அழிக்கவும். கணக்கை அழிக்க விருப்பமா?"
1346
 
1347
- #: templates/account.php:291
1348
  msgid "Delete Account"
1349
  msgstr "கணக்கை அழிக்க"
1350
 
1351
- #: templates/account.php303, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "உரிமத்தை செயல்நிறுத்த"
1355
 
1356
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "மேலே தொடர விருப்பமா?"
1359
 
1360
- #: templates/account.php326, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "சந்தாவை ரத்து செய்"
1363
 
1364
- #: templates/account.php355, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "Sync"
1368
 
1369
- #: templates/account.php370, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "பெயர்"
1372
 
1373
- #: templates/account.php376, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "மின்னஞ்சல்"
1376
 
1377
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "உபயோகிப்பாளர் ஐடி"
1380
 
1381
- #: templates/account.php401, templates/account.php719,
1382
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ஐடி"
1388
 
1389
- #: templates/account.php:408
1390
  msgid "Site ID"
1391
  msgstr "இணையதள ஐடி"
1392
 
1393
- #: templates/account.php:411
1394
  msgid "No ID"
1395
  msgstr "ஐடி இல்லை"
1396
 
1397
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "Public Key"
1402
 
1403
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "Secret Key"
1407
 
1408
- #: templates/account.php:425
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "No Secret"
1412
 
1413
- #: templates/account.php452, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "வெள்ளோட்டம்"
1417
 
1418
- #: templates/account.php479, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "License Key"
1422
 
1423
- #: templates/account.php:510
1424
  msgid "Join the Beta program"
1425
  msgstr "பீட்டா பதிப்பு சோதனையில் சேரவும்"
1426
 
1427
- #: templates/account.php:516
1428
  msgid "not verified"
1429
  msgstr "உறுதிப்படுத்தப்படவில்லை"
1430
 
1431
- #: templates/account.php525, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "காலாவதியானது"
1434
 
1435
- #: templates/account.php:585
1436
  msgid "Premium version"
1437
  msgstr "விலையுள்ள பதிப்பு"
1438
 
1439
- #: templates/account.php:587
1440
  msgid "Free version"
1441
  msgstr "விலையில்லா பதிப்பு"
1442
 
1443
- #: templates/account.php:599
1444
  msgid "Verify Email"
1445
  msgstr "மின்னஞ்சல் சரிபார்த்திடுங்கள்"
1446
 
1447
- #: templates/account.php:613
1448
  msgid "Download %s Version"
1449
  msgstr "%s பதிப்பை பதிவிறக்கலாம்"
1450
 
1451
- #: templates/account.php:629
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
- #: templates/account.php647, templates/account.php890,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "காட்டு"
1461
 
1462
- #: templates/account.php:662
1463
  msgid "What is your %s?"
1464
  msgstr "உங்கள் %s என்ன?"
1465
 
1466
- #: templates/account.php670, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "திருத்து"
1470
 
1471
- #: templates/account.php674, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
- #: templates/account.php:698
1476
  msgid "Sites"
1477
  msgstr "தளங்கள்"
1478
 
1479
- #: templates/account.php:711
1480
  msgid "Search by address"
1481
  msgstr "முகவரி மூலம் தேட"
1482
 
1483
- #: templates/account.php720, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "முகவரி"
1486
 
1487
- #: templates/account.php:721
1488
  msgid "License"
1489
  msgstr "உரிமம்"
1490
 
1491
- #: templates/account.php:722
1492
  msgid "Plan"
1493
  msgstr "திட்டம்"
1494
 
1495
- #: templates/account.php:755
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "உரிமம்"
1499
 
1500
- #: templates/account.php:884
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "மறைத்திடு"
1504
 
1505
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "செயலில்"
1508
 
1509
- #: templates/account.php:909
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "%sன் பீட்டா பதிப்பு மேம்படுத்தலைப் பெறுங்கள்."
1512
 
1513
- #: templates/account.php:967
1514
  msgid "Cancelling %s"
1515
  msgstr "%s ரத்தாகிறது"
1516
 
1517
- #: templates/account.php967, templates/account.php984,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "வெள்ளோட்டம்"
1522
 
1523
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "%s ரத்தாகிறது..."
1526
 
1527
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "சந்தா"
1531
 
1532
- #: templates/account.php:999
1533
  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?"
1534
  msgstr "உரிமத்தை செயல்நிறுத்துவதானது, அனைத்து விலையுள்ள வசதிகளையும் நிறுத்திவிடும். ஆனாலும் பிற தளங்களில் செயல்படுத்தலாம். தொடரலாமா?"
1535
 
1536
- #: templates/account.php:1073
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
- #: templates/account.php:1074
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
@@ -1563,7 +1563,7 @@ msgctxt "installed add-on"
1563
  msgid "Installed"
1564
  msgstr "நிறுவப்பட்டது"
1565
 
1566
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
@@ -1619,86 +1619,94 @@ msgstr "நன்றி %s!"
1619
  msgid "Agree & Activate License"
1620
  msgstr "ஒப்புக்கொண்டு உரிமத்தை செயல்படுத்துக"
1621
 
1622
- #: templates/connect.php:189
1623
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1624
- msgstr "%s வாங்கியதற்கு நன்றி! License Key உள்ளிட்டு பயன்பாட்டைத் தொடர்க."
1625
 
1626
- #: templates/connect.php:196
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்."
1629
 
1630
- #: templates/connect.php:197
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்."
1633
 
1634
- #: templates/connect.php:203
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்."
1637
 
1638
- #: templates/connect.php:204
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்."
1641
 
1642
- #: templates/connect.php:238
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "Freemius network-level integrationஐ அறிமுகம் செய்வதில் பேருவகை அடைகிறோம்."
1645
 
1646
- #: templates/connect.php:241
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "மேம்படுத்தல் நடைபெறும்போதே இன்னும் %d தளங்களில் உரிமம் செயல்பாட்டில் இல்லை என்று அறிகிறோம்."
1649
 
1650
- #: templates/connect.php:243
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "அந்தத் தளங்களிலும் %sஐ உபயோகிக்க விரும்பினால், கீழே License Key உள்ளிட்டு செயல்படுத்தலை அழுத்தவும்."
1653
 
1654
- #: templates/connect.php:245
1655
  msgid "%s's paid features"
1656
  msgstr "%sன் விலையுள்ள வசதிகள்"
1657
 
1658
- #: templates/connect.php:250
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "இல்லாவிட்டால், Network-level கணக்குப் பக்கத்தில் எப்போது வேண்டுமானாலும் உரிமத்தை செயல்படுத்திக் கொள்ளலாம்."
1661
 
1662
- #: templates/connect.php:252
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "மேம்படுத்தல் நடைபெறும்போதே Networkல்லுள்ள %s தளங்கள் உங்கள் கவனிப்பைக் கோருகின்றன என்றறிகிறோம்."
1665
 
1666
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "License key"
1670
 
1671
- #: templates/connect.php264, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "License Key காணவில்லையா?"
1674
 
1675
- #: templates/connect.php323, templates/connect.php695,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "கடந்திடு"
1680
 
1681
- #: templates/connect.php:326
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "தள நிர்வாகிகளுக்கான சிறப்பாளர்"
1684
 
1685
- #: templates/connect.php:326
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "இதை கிளிக் செய்தால், இந்த முடிவு தள நிர்வாகிகளுக்கு அனுப்பப்படும்."
1688
 
1689
- #: templates/connect.php:364
 
 
 
 
1690
  msgid "Your Profile Overview"
1691
  msgstr "உங்கள் சுயவிவர சுருக்கம்"
1692
 
1693
- #: templates/connect.php:365
1694
  msgid "Name and email address"
1695
  msgstr "பெயரும், மின்னஞ்சல் முகவரியும்"
1696
 
1697
- #: templates/connect.php:372
 
 
 
 
1698
  msgid "Your Site Overview"
1699
  msgstr "உங்கள் தளவிவர சுருக்கம்"
1700
 
1701
- #: templates/connect.php:373
1702
  msgid "Site URL, WP version, PHP info"
1703
  msgstr "Site URL, WP version, PHP info"
1704
 
@@ -1706,64 +1714,84 @@ msgstr "Site URL, WP version, PHP info"
1706
  msgid "Admin Notices"
1707
  msgstr "நிர்வாக அறிவிப்புகள்"
1708
 
1709
- #: templates/connect.php380, templates/connect.php:396
1710
  msgid "Updates, announcements, marketing, no spam"
1711
  msgstr "மேம்படுத்தல், அறிவிப்புகள், வணிக செய்திகள். Spam இல்லை"
1712
 
1713
- #: templates/connect.php:386
1714
- msgid "Current %s Events"
1715
- msgstr "நடப்பு %s நிகழ்வுகள்"
1716
-
1717
  #: templates/connect.php:387
1718
- msgid "Activation, deactivation and uninstall"
1719
- msgstr "செயல்படுத்தல், செயல்நிறுத்தல் மற்றும் அகற்றுதல்"
 
 
 
 
 
 
 
 
1720
 
1721
- #: templates/connect.php:395
1722
  msgid "Newsletter"
1723
  msgstr "செய்திக்கடிதம்"
1724
 
1725
- #: templates/connect.php:403
1726
  msgid "Plugins & Themes"
1727
  msgstr "Plugins & Themes"
1728
 
1729
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1730
  msgid "Title, slug, version, and is active"
1731
  msgstr "Title, slug, version, and is active"
1732
 
1733
- #: templates/connect.php421, templates/forms/license-activation.php:41
1734
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1735
- msgstr "பாதுகாப்பு மற்றும் வசதி மேம்படுத்தலுக்காக %2$sக்கு %1$s தகவல் அனுப்பும், மற்றும் உங்கள் உரிமத்தின் செல்லுபடி காலத்தை சோதிக்கும்."
1736
 
1737
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1738
  msgid "What permissions are being granted?"
1739
  msgstr "என்னென்ன அனுமதிகள் கொடுக்கப்பட்டுள்ளது."
1740
 
1741
- #: templates/connect.php:452
1742
  msgid "Don't have a license key?"
1743
  msgstr "License Key இல்லையா?"
1744
 
1745
- #: templates/connect.php:455
1746
  msgid "Have a license key?"
1747
  msgstr "License key உள்ளதா?"
1748
 
1749
- #: templates/connect.php:463
1750
  msgid "Privacy Policy"
1751
  msgstr "தனியுரிமைக் கொள்கைகள்"
1752
 
1753
- #: templates/connect.php:465
1754
  msgid "License Agreement"
1755
  msgstr "உரிம ஒப்பந்தம்"
1756
 
1757
- #: templates/connect.php:465
1758
  msgid "Terms of Service"
1759
  msgstr "சேவை நிபந்தனைகள்"
1760
 
1761
- #: templates/connect.php:854
1762
  msgctxt "as in the process of sending an email"
1763
  msgid "Sending email"
1764
  msgstr "மின்னஞ்சல் அனுப்பப்படுகிறது"
1765
 
1766
- #: templates/connect.php:855
1767
  msgctxt "as activating plugin"
1768
  msgid "Activating"
1769
  msgstr "செயல்படுத்துகிறது"
@@ -2366,7 +2394,11 @@ msgstr "உங்கள் மின்னஞ்சலுக்கு வந்
2366
  msgid "Update License"
2367
  msgstr "உரிமம் மேம்படுத்த"
2368
 
2369
- #: templates/forms/license-activation.php:181
 
 
 
 
2370
  msgid "Associate with the license owner's account."
2371
  msgstr "Associate with the license owner's account."
2372
 
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Sankar Srinivasan <petra.srini@gmail.com>, 2019
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: ta\n"
13
  "Language-Team: Tamil (http://www.transifex.com/freemius/wordpress-sdk/language/ta/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php1919, templates/account.php:912
25
  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."
26
  msgstr "எச்சரிக்கை: %sன் முன்னோட்ட Beta பதிப்பின் மேம்பட்ட வடிவம் பழைய பதிப்பின் மீது நிறுவப்படுகிறது. "
27
 
28
+ #: includes/class-freemius.php:1926
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "மேம்படுத்தப்பட்ட பதிப்பில் தொடர விரும்புகிறீர்களா?"
31
 
32
+ #: includes/class-freemius.php:2138
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "ப்ளக்இன் முக்கிய கோப்பை Freemius SDKவால் கண்டறிய முடியவில்லை. தயவுசெய்து பின்வரும் செய்தியுடன் sdk@freemius.comக்கு மின்னஞ்சல் அனுப்பவும்"
35
 
36
+ #: includes/class-freemius.php:2140
37
  msgid "Error"
38
  msgstr "தவறு"
39
 
40
+ #: includes/class-freemius.php:2540
41
  msgid "I found a better %s"
42
  msgstr "எனக்கு வேறு ஒரு நல்ல %s கிடைத்துவிட்டது"
43
 
44
+ #: includes/class-freemius.php:2542
45
  msgid "What's the %s's name?"
46
  msgstr "%sன் பெயர் என்ன?"
47
 
48
+ #: includes/class-freemius.php:2548
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "இது தற்காலிக %s. தவறை சரிசெய்ய முயற்சிக்கிறேன்"
51
 
52
+ #: includes/class-freemius.php:2550
53
  msgid "Deactivation"
54
  msgstr "செயல்நிறுத்து"
55
 
56
+ #: includes/class-freemius.php:2551
57
  msgid "Theme Switch"
58
  msgstr "தீம் மாற்றம்"
59
 
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "மற்றவை"
64
 
65
+ #: includes/class-freemius.php:2568
66
  msgid "I no longer need the %s"
67
  msgstr "இனி எனக்கு %s தேவையில்லை"
68
 
69
+ #: includes/class-freemius.php:2575
70
  msgid "I only needed the %s for a short period"
71
  msgstr "குறுகிய காலத்திற்கு மட்டும் %s போதும்"
72
 
73
+ #: includes/class-freemius.php:2581
74
  msgid "The %s broke my site"
75
  msgstr "%s எனது இணையதளத்தை செயலிழக்க வைத்துவிட்டது"
76
 
77
+ #: includes/class-freemius.php:2588
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s திடீரென நின்றுவிட்டது"
80
 
81
+ #: includes/class-freemius.php:2598
82
  msgid "I can't pay for it anymore"
83
  msgstr "இதற்குமேல் பணம் செலுத்தமாட்டேன்"
84
 
85
+ #: includes/class-freemius.php:2600
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "என்ன விலை உங்களுக்கு வசதியாக இருக்கும்?"
88
 
89
+ #: includes/class-freemius.php:2606
90
  msgid "I don't like to share my information with you"
91
  msgstr "என் தனிப்பட்ட தகவலை உங்களோடு பகிர விரும்பவில்லை."
92
 
93
+ #: includes/class-freemius.php:2627
94
  msgid "The %s didn't work"
95
  msgstr "%s வேலை செய்யவில்லை"
96
 
97
+ #: includes/class-freemius.php:2637
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "இதை எப்படி உபயோகிப்பது என்று எனக்குப் புரியவில்லை"
100
 
101
+ #: includes/class-freemius.php:2645
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s நல்லதுதான். ஆனால், எனக்கு தேவைப்படும் வசதி இதில் இல்லை"
104
 
105
+ #: includes/class-freemius.php:2647
106
  msgid "What feature?"
107
  msgstr "என்ன வசதி?"
108
 
109
+ #: includes/class-freemius.php:2651
110
  msgid "The %s is not working"
111
  msgstr "%s சரிவர வேலை செய்யவில்லை"
112
 
113
+ #: includes/class-freemius.php:2653
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "என்ன வேலை செய்யவில்லை என்பதை விளக்கமாக சொன்னால், அதை நாங்கள் சரி செய்வோம்."
116
 
117
+ #: includes/class-freemius.php:2657
118
  msgid "It's not what I was looking for"
119
  msgstr "நான் எதிர்பார்த்தது இதுவல்ல."
120
 
121
+ #: includes/class-freemius.php:2659
122
  msgid "What you've been looking for?"
123
  msgstr "நீங்கள் என்ன எதிர்பார்க்கிறீர்கள்?"
124
 
125
+ #: includes/class-freemius.php:2663
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s நான் எதிர்பார்த்தது போல் இல்லை"
128
 
129
+ #: includes/class-freemius.php:2665
130
  msgid "What did you expect?"
131
  msgstr "நீங்கள் என்ன எதிர்பார்த்தீர்கள்?"
132
 
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius தவறுநீக்கி Debug"
136
 
137
+ #: includes/class-freemius.php:4272
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "cURL பற்றியோ, அதை நிறுவுவது பற்றியோ எனக்குத் தெரியாது. உதவுங்கள்."
140
 
141
+ #: includes/class-freemius.php:4274
142
  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."
143
  msgstr "இந்தப் பிரச்சினை சீராக உங்கள் hosting நிறுவனத்தை தொடர்பு கொள்கிறோம். பதில் வந்ததும் %sக்கு மின்னஞ்சல் வரும்."
144
 
145
+ #: includes/class-freemius.php:4281
146
  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."
147
  msgstr "அருமை, cURLஐ நிறுவி அதை php.ini கோப்பில் அழைக்கவும். அதோடு, disable_functionsஐ php.iniல் தேடி, 'curl' என்று துவங்கும் செயல்படா மாறிகளை அழிக்கவும். வெற்றிகரமாக செயல்படுவதை உறுதிசெய்ய 'phpinfo()' பயன்படுத்தவும். செயல்பாடு துவங்கியதும் , %sன் செயல்பாட்டை ஒருமுறை நிறுத்தி, மீண்டும் செயல்படுத்தவும்."
148
 
149
+ #: includes/class-freemius.php:4386
150
  msgid "Yes - do your thing"
151
  msgstr "ம்... கிளப்புங்கள்"
152
 
153
+ #: includes/class-freemius.php:4391
154
  msgid "No - just deactivate"
155
  msgstr "வேணாம்பா... கண்ண கட்டுது"
156
 
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "அரே ஓ சம்போ!"
168
 
169
+ #: includes/class-freemius.php:4505
170
  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."
171
  msgstr "இதைச் சரிசெய்ய வாய்ப்பளித்ததற்கு நன்றி. எங்கள் தொழில்நுட்ப பணியாளருக்கு இதுகுறித்து செய்தி அனுப்பியுள்ளோம். %sக்கு தகவல் வந்ததும் தொடர்பு கொள்கிறோம். தங்கள் பொறுமைக்கு நன்றி."
172
 
173
+ #: includes/class-freemius.php:4927
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s இல்லாமல் %s இயங்காது"
177
 
178
+ #: includes/class-freemius.php:4928
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது"
182
 
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "எதிர்பாரா API தவறு. பின்வரும் செய்தியோடு %sன் ஆக்கியோரைத் தொடர்பு கொள்ளவும்"
187
 
188
+ #: includes/class-freemius.php:5857
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது."
191
 
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
+ #: includes/class-freemius.php:5884
198
  msgid "You have a %s license."
199
  msgstr "உங்களிடம் %sன் உரிமம் உள்ளது"
200
 
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Yee-haw"
208
 
209
+ #: includes/class-freemius.php:6174
210
  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."
211
  msgstr "ஆட் ஆன் விலையுள்ளது என்பதால் %sன் விலையில்லா முன்னோட்டம் ரத்தானது. நீங்கள் உரிமம் வாங்கிப் பயன்பாட்டைத் தொடரலாம்."
212
 
213
+ #: includes/class-freemius.php:6178
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s ஒரு விலையுள்ள ஆட்ஆன். ப்ளக்இன் செயல்பட நீங்கள் உரிமம் வாங்கவேண்டும்"
216
 
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "%s குறித்த மேலதிக தகவல்"
221
 
222
+ #: includes/class-freemius.php:6188
223
  msgid "Purchase License"
224
  msgstr "உரிமம் வாங்குங்கள்"
225
 
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "%s அஞ்சலகத்திற்கு %s குறித்த செயல்பாட்டு மின்னஞ்சல் வந்துசேரும். %sக்கு வந்துசேர மின்னஞ்சலின் ஆக்டிவேசன் பட்டனை அழுத்தவும்."
229
 
230
+ #: includes/class-freemius.php:7129
231
  msgid "start the trial"
232
  msgstr "வெள்ளோட்டம் துவங்கலாம்"
233
 
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "நிறுவுதலை முடிக்கவும்"
237
 
238
+ #: includes/class-freemius.php:7249
239
  msgid "You are just one step away - %s"
240
  msgstr "இன்னும் ஒருபடி அருகில் - %s"
241
 
242
+ #: includes/class-freemius.php:7252
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "\"%s\" செயல்படுத்தலை முடியுங்கள்"
246
 
247
+ #: includes/class-freemius.php:7334
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "%s, %sக்கு சில சுவாரஸ்யங்களை உருவாக்கியிருக்கிறோம்"
250
 
251
+ #: includes/class-freemius.php:7338
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு செய்யுங்கள்"
254
 
255
+ #: includes/class-freemius.php:7773
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "%sன் மேம்படுத்தல் முடிந்தது"
258
 
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "ஆட் ஆன்"
265
 
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "ப்ளக்இன்"
270
 
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "தீம்"
276
 
277
+ #: includes/class-freemius.php:13188
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
  msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
+ #: includes/class-freemius.php:13202
282
  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."
283
  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."
284
 
285
+ #: includes/class-freemius.php:13207
286
  msgid "User Dashboard"
287
  msgstr "User Dashboard"
288
 
289
+ #: includes/class-freemius.php:13208
290
  msgid "revert it now"
291
  msgstr "revert it now"
292
 
293
+ #: includes/class-freemius.php:13266
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "உபயோகிப்பாளரின் பீட்டாவை செயல்படுத்துகையில், புதிய தவறு உருவாகியுள்ளது."
296
 
297
+ #: includes/class-freemius.php:13339
298
  msgid "Invalid new user ID or email address."
299
  msgstr "Invalid new user ID or email address."
300
 
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு செய்திருக்கிறார்."
304
 
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை அழுத்தவும்."
308
 
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
  msgid "Change Ownership"
311
  msgstr "உரிமை மாற்றம்"
312
 
313
+ #: includes/class-freemius.php:13977
314
  msgid "Invalid site details collection."
315
  msgstr "தவறான தள விவர சேர்ப்பு"
316
 
317
+ #: includes/class-freemius.php:14097
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. "
320
 
321
+ #: includes/class-freemius.php:14099
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "இந்த மின்னஞ்சலின் பதிவில் எந்த உரிமமும் இல்லை. தங்கள் மின்னஞ்சல் சரியானதா?"
324
 
325
+ #: includes/class-freemius.php:14373
326
  msgid "Account is pending activation."
327
  msgstr "கணக்கு செயல்பாடு முடிவடையவில்லை."
328
 
329
+ #: includes/class-freemius.php14485,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "புது உரிமம் வாங்குங்கள்"
333
 
334
+ #: includes/class-freemius.php14497,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "உரிமத்தை புதுப்பியுங்கள்"
338
 
339
+ #: includes/class-freemius.php:14501
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s பாதுகாப்பு மேம்படுத்தல் மற்றும் உதவிக்கு %s"
342
 
343
+ #: includes/class-freemius.php:16929
344
  msgid "%s activation was successfully completed."
345
  msgstr "%s செயல்படுத்தல் வெற்றிகரமாக முடிந்தது."
346
 
347
+ #: includes/class-freemius.php:16943
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது."
350
 
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
  msgid "Your trial has been successfully started."
353
  msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது"
354
 
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
  msgid "Couldn't activate %s."
358
  msgstr "%sஐ செயல்படுத்த முடியவில்லை."
359
 
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
  msgid "Please contact us with the following message:"
363
  msgstr "பின்வரும் செய்தியோடு எங்களைத் தொடர்பு கொள்ளுங்கள்"
364
 
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது"
368
 
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
  msgid "Upgrade"
371
  msgstr "மேம்படுத்து"
372
 
373
+ #: includes/class-freemius.php:18184
374
  msgid "Start Trial"
375
  msgstr "வெள்ளோட்டம் துவக்கு"
376
 
377
+ #: includes/class-freemius.php:18186
378
  msgid "Pricing"
379
  msgstr "விலை விவரம்"
380
 
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
  msgid "Affiliation"
383
  msgstr "புரிந்துணர்வு"
384
 
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "கணக்கு"
389
 
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "தொடர்பு கொள்ளுங்கள்"
394
 
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "ஆட்-ஆன்ஸ்"
400
 
401
+ #: includes/class-freemius.php:18361
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
  msgstr "&#x2190;"
405
 
406
+ #: includes/class-freemius.php:18361
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
  msgstr "&#x27a4;"
410
 
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "விலை விவரம்"
415
 
416
+ #: includes/class-freemius.php18576,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "உதவி மையம்"
420
 
421
+ #: includes/class-freemius.php:19550
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கப்பட்டது - நன்றி!"
424
 
425
+ #: includes/class-freemius.php:19551
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "Right on"
429
 
430
+ #: includes/class-freemius.php:20057
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "seems like the key you entered doesn't match our records."
433
 
434
+ #: includes/class-freemius.php:20081
435
  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."
436
  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."
437
 
438
+ #: includes/class-freemius.php:20316
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "உங்கள் %s ஆட்-ஆன் திட்டம் மேம்படுத்தப்பட்டது."
441
 
442
+ #: includes/class-freemius.php:20318
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "%s ஆட்-ஆனை வாங்கிவிட்டீர்கள்."
445
 
446
+ #: includes/class-freemius.php:20321
447
  msgid "Download the latest version"
448
  msgstr "புதிய பதிப்பை பதிவிறக்கலாம்"
449
 
450
+ #: includes/class-freemius.php:20407
451
  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"
452
  msgstr "%1$s சரியாகச் செயல்பட அவசியமான Freemius APIயை உங்கள் செர்வர் தடை செய்கிறது. %2$sயை செயல்பட வைக்க உங்கள் hosting நிறுவனத்தை அணுகவும்."
453
 
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
  msgid "Error received from the server:"
457
  msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது."
458
 
459
+ #: includes/class-freemius.php:20423
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்."
462
 
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "Hmm"
468
 
469
+ #: includes/class-freemius.php:20664
470
  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."
471
  msgstr "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். "
472
 
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "வெள்ளோட்டம்"
478
 
479
+ #: includes/class-freemius.php:20670
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது."
482
 
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
  msgid "Please contact us here"
485
  msgstr "எங்களை இங்கு அணுகலாம்"
486
 
487
+ #: includes/class-freemius.php:20685
488
  msgid "Your plan was successfully activated."
489
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது."
490
 
491
+ #: includes/class-freemius.php:20686
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது."
494
 
495
+ #: includes/class-freemius.php:20703
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது."
498
 
499
+ #: includes/class-freemius.php:20719
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் தொடரலாம். "
502
 
503
+ #: includes/class-freemius.php:20721
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை மேம்படுத்துங்கள்."
506
 
507
+ #: includes/class-freemius.php:20729
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை அணுகவும்."
510
 
511
+ #: includes/class-freemius.php:20742
512
  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."
513
  msgstr "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்."
514
 
515
+ #: includes/class-freemius.php:20768
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்."
518
 
519
+ #: includes/class-freemius.php:20770
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$sஇவற்றை மேம்படுத்துங்கள்."
522
 
523
+ #: includes/class-freemius.php:20885
524
  msgid "It looks like the license could not be activated."
525
  msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது."
526
 
527
+ #: includes/class-freemius.php:20927
528
  msgid "Your license was successfully activated."
529
  msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது."
530
 
531
+ #: includes/class-freemius.php:20953
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது."
534
 
535
+ #: includes/class-freemius.php:20977
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது."
538
 
539
+ #: includes/class-freemius.php:21006
540
  msgid "Your %s license was successfully deactivated."
541
  msgstr "Your %s license was successfully deactivated."
542
 
543
+ #: includes/class-freemius.php:21007
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்."
546
 
547
+ #: includes/class-freemius.php:21010
548
  msgid "O.K"
549
  msgstr "O.K"
550
 
551
+ #: includes/class-freemius.php:21063
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்."
554
 
555
+ #: includes/class-freemius.php:21072
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது."
558
 
559
+ #: includes/class-freemius.php:21114
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்."
562
 
563
+ #: includes/class-freemius.php:21125
564
  msgid "You already utilized a trial before."
565
  msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே."
566
 
567
+ #: includes/class-freemius.php:21139
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது."
570
 
571
+ #: includes/class-freemius.php:21150
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது."
574
 
575
+ #: includes/class-freemius.php:21161
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை."
578
 
579
+ #: includes/class-freemius.php:21211
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)"
582
 
583
+ #: includes/class-freemius.php:21247
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr ""
586
  "94%match\n"
587
  "உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்"
588
 
589
+ #: includes/class-freemius.php:21266
590
  msgid "Your %s free trial was successfully cancelled."
591
  msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது."
592
 
593
+ #: includes/class-freemius.php:21582
594
  msgid "Version %s was released."
595
  msgstr "%s பதிப்பு வெளியாகிவிட்டது."
596
 
597
+ #: includes/class-freemius.php:21582
598
  msgid "Please download %s."
599
  msgstr "%sஐ பதிவிறக்கலாம்."
600
 
601
+ #: includes/class-freemius.php:21589
602
  msgid "the latest %s version here"
603
  msgstr "%sன் அண்மைய பதிப்பு இதோ"
604
 
605
+ #: includes/class-freemius.php:21594
606
  msgid "New"
607
  msgstr "புதியது"
608
 
609
+ #: includes/class-freemius.php:21599
610
  msgid "Seems like you got the latest release."
611
  msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது."
612
 
613
+ #: includes/class-freemius.php:21600
614
  msgid "You are all good!"
615
  msgstr "நல்லது... மகிழ்ச்சி"
616
 
617
+ #: includes/class-freemius.php:21903
618
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
  msgstr "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்."
620
 
621
+ #: includes/class-freemius.php:22043
622
  msgid "Site successfully opted in."
623
  msgstr "தளம் தெரிவு செய்யப்பட்டது."
624
 
625
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
626
  msgid "Awesome"
627
  msgstr "அடி தூள்"
628
 
629
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
630
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
  msgstr "%s மேலும் தரமானதாக்க உங்கள் பயன்பாட்டுத் தரவுகளை நாங்கள் பின்தொடர உதவுங்கள்."
632
 
633
+ #: includes/class-freemius.php:22061
634
  msgid "Thank you!"
635
  msgstr "நன்றி!"
636
 
637
+ #: includes/class-freemius.php:22068
638
  msgid "We will no longer be sending any usage data of %s on %s to %s."
639
  msgstr "%sன் %s மீதான பயன்பாட்டுத் தரவுகளை %sக்கு நாங்கள் அனுப்ப மாட்டோம்."
640
 
641
+ #: includes/class-freemius.php:22226
642
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
643
  msgstr "உரிமை மாற்றம் குறித்து உறுதிப்படுத்தும் மின்னஞ்சல் %s வழியாக உங்களுக்கு வந்திருக்கும். பாதுகாப்பு காரங்களுக்காக அடுத்த 15 நிமிடங்களுக்குள் மின்னஞ்சலைத் திறந்து உறுதி செய்யவும். ஒருவேளை உள்பெட்டியில் மின்னஞ்சல் இல்லையென்றால் Spamல் பார்க்கவும்."
644
 
645
+ #: includes/class-freemius.php:22232
646
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
  msgstr "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது."
648
 
649
+ #: includes/class-freemius.php:22237
650
  msgid "%s is the new owner of the account."
651
  msgstr "கணக்கின் புதிய உரிமையாளர் %s."
652
 
653
+ #: includes/class-freemius.php:22239
654
  msgctxt "as congratulations"
655
  msgid "Congrats"
656
  msgstr "வாழ்த்துக்கள்"
657
 
658
+ #: includes/class-freemius.php:22275
659
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
  msgstr "உங்கள் மின்னஞ்சல் விவரம் மேம்படுத்தப்பட்டது. அதை உறுதிப்படுத்தும் மின்னஞ்சல் இன்னும் சில கணங்களில் தங்களுக்கு வந்துசேரும்."
661
 
662
+ #: includes/class-freemius.php:22287
663
  msgid "Please provide your full name."
664
  msgstr "உங்கள் முழுப் பெயரைத் தரவும்."
665
 
666
+ #: includes/class-freemius.php:22292
667
  msgid "Your name was successfully updated."
668
  msgstr "உங்கள் பெயர் ஏற்றப்பட்டது."
669
 
670
+ #: includes/class-freemius.php:22353
671
  msgid "You have successfully updated your %s."
672
  msgstr "உங்கள் %s மேம்படுத்தப்பட்டது."
673
 
674
+ #: includes/class-freemius.php:22412
675
  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."
676
  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."
677
 
678
+ #: includes/class-freemius.php:22415
679
  msgid "Click here"
680
  msgstr "Click here"
681
 
682
+ #: includes/class-freemius.php:22513
683
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
  msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்."
685
 
686
+ #: includes/class-freemius.php:22514
687
  msgctxt "advance notice of something that will need attention."
688
  msgid "Heads up"
689
  msgstr "Heads up"
690
 
691
+ #: includes/class-freemius.php:23090
692
  msgctxt "exclamation"
693
  msgid "Hey"
694
  msgstr "Hey"
695
 
696
+ #: includes/class-freemius.php:23090
697
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
  msgstr "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்."
699
 
700
+ #: includes/class-freemius.php:23098
701
  msgid "No commitment for %s days - cancel anytime!"
702
  msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!"
703
 
704
+ #: includes/class-freemius.php:23099
705
  msgid "No credit card required"
706
  msgstr "கடன் அட்டை தேவையில்லை"
707
 
708
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
709
  msgctxt "call to action"
710
  msgid "Start free trial"
711
  msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்"
712
 
713
+ #: includes/class-freemius.php:23183
714
  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!"
715
  msgstr "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!"
716
 
717
+ #: includes/class-freemius.php:23192
718
  msgid "Learn more"
719
  msgstr "மேலும் அறிய"
720
 
721
+ #: includes/class-freemius.php23378, templates/account.php558,
722
+ #: templates/account.php708, templates/connect.php179,
723
+ #: templates/connect.php461, templates/forms/license-activation.php27,
724
  #: templates/account/partials/addon.php:321
725
  msgid "Activate License"
726
  msgstr "உரிமம் செயல்படுத்த"
727
 
728
+ #: includes/class-freemius.php23379, templates/account.php652,
729
+ #: templates/account.php707, templates/account/partials/addon.php322,
730
  #: templates/account/partials/site.php:271
731
  msgid "Change License"
732
  msgstr "உரிமம் மாற்ற"
733
 
734
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
735
  msgid "Opt Out"
736
  msgstr "தெரிவை அகற்று"
737
 
738
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
739
  #: templates/account/partials/site.php49,
740
  #: templates/account/partials/site.php:169
741
  msgid "Opt In"
742
  msgstr "தெரிவு செய்"
743
 
744
+ #: includes/class-freemius.php:23738
745
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
  msgstr "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த அதை செயல்படுத்தவும். %3$s"
747
 
748
+ #: includes/class-freemius.php:23746
749
  msgid "Activate %s features"
750
  msgstr "%s வசதிகளை செயல்படுத்த"
751
 
752
+ #: includes/class-freemius.php:23759
753
  msgid "Please follow these steps to complete the upgrade"
754
  msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்"
755
 
756
+ #: includes/class-freemius.php:23763
757
  msgid "Download the latest %s version"
758
  msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்"
759
 
760
+ #: includes/class-freemius.php:23767
761
  msgid "Upload and activate the downloaded version"
762
  msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்"
763
 
764
+ #: includes/class-freemius.php:23769
765
  msgid "How to upload and activate?"
766
  msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?"
767
 
768
+ #: includes/class-freemius.php:23903
769
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
  msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s"
771
 
772
+ #: includes/class-freemius.php:24072
773
  msgid "Auto installation only works for opted-in users."
774
  msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்."
775
 
776
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
777
+ #: includes/class-fs-plugin-updater.php1261,
778
+ #: includes/class-fs-plugin-updater.php:1275
779
  msgid "Invalid module ID."
780
  msgstr "module ID தவறானது."
781
 
782
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
783
  msgid "Premium version already active."
784
  msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது."
785
 
786
+ #: includes/class-freemius.php:24098
787
  msgid "You do not have a valid license to access the premium version."
788
  msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை."
789
 
790
+ #: includes/class-freemius.php:24105
791
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
  msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்."
793
 
794
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
795
  msgid "Premium add-on version already installed."
796
  msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது."
797
 
798
+ #: includes/class-freemius.php:24473
799
  msgid "View paid features"
800
  msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்"
801
 
802
+ #: includes/class-freemius.php:24795
803
  msgid "Thank you so much for using %s and its add-ons!"
804
  msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!"
805
 
806
+ #: includes/class-freemius.php:24796
807
  msgid "Thank you so much for using %s!"
808
  msgstr "%s பயன்படுத்துவதற்கு நன்றி!"
809
 
810
+ #: includes/class-freemius.php:24802
811
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ மேம்படுத்த உதவும்."
813
 
814
+ #: includes/class-freemius.php:24806
815
  msgid "Thank you so much for using our products!"
816
  msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!"
817
 
818
+ #: includes/class-freemius.php:24807
819
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் உருவாக்கத்தை மேம்படுத்த உதவும்."
821
 
822
+ #: includes/class-freemius.php:24826
823
  msgid "%s and its add-ons"
824
  msgstr "%sம் அதன் ஆட்-ஆன்களும்"
825
 
826
+ #: includes/class-freemius.php:24835
827
  msgid "Products"
828
  msgstr "தயாரிப்புகள்"
829
 
830
+ #: includes/class-freemius.php24842, templates/connect.php:275
831
  msgid "Yes"
832
  msgstr "ஆம்"
833
 
834
+ #: includes/class-freemius.php24843, templates/connect.php:276
835
  msgid "send me security & feature updates, educational content and offers."
836
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும்."
837
 
838
+ #: includes/class-freemius.php24844, templates/connect.php:281
839
  msgid "No"
840
  msgstr "இல்லை"
841
 
842
+ #: includes/class-freemius.php24846, templates/connect.php:283
843
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும். %s செய்க, %s தேவையில்லை"
845
 
846
+ #: includes/class-freemius.php:24856
847
  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 :-)"
848
  msgstr "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)"
849
 
850
+ #: includes/class-freemius.php24858, templates/connect.php:290
851
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்."
853
 
854
+ #: includes/class-freemius.php:25140
855
  msgid "License key is empty."
856
  msgstr "License key காலியாக உள்ளது."
857
 
884
  msgid "Important Upgrade Notice:"
885
  msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு"
886
 
887
+ #: includes/class-fs-plugin-updater.php:1326
888
  msgid "Installing plugin: %s"
889
  msgstr "%s: பிளக்இன் நிறுவப்படுகிறது"
890
 
891
+ #: includes/class-fs-plugin-updater.php:1367
892
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
  msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்."
894
 
895
+ #: includes/class-fs-plugin-updater.php:1549
896
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
  msgstr "பெயர் மாற்றமுடியாது. Slug உடனான folder, பிளக்இன் பேக்கில் இல்லை."
898
 
914
  msgid "Install Free Version Update Now"
915
  msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்"
916
 
917
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
918
  msgid "Install Update Now"
919
  msgstr "மேம்படுத்தலை நிறுவலாம்"
920
 
934
  msgid "Download Latest Free Version"
935
  msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க"
936
 
937
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
938
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
  msgctxt "as download latest version"
940
  msgid "Download Latest"
946
  msgid "Activate this add-on"
947
  msgstr "ஆட்-ஆன் செயல்படுத்த"
948
 
949
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
950
  msgid "Activate Free Version"
951
  msgstr "விலையில்லா பதிப்பை செயல்படுத்த"
952
 
953
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
954
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
  msgid "Activate"
956
  msgstr "செயல்படுத்து"
1086
  msgid "Details"
1087
  msgstr "விபரங்கள்"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1090
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
  #: templates/account/partials/addon.php:36
1092
  msgctxt "product version"
1102
  msgid "Last Updated"
1103
  msgstr "கடைசி மேம்படுத்தல்"
1104
 
1105
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1106
  msgctxt "x-ago"
1107
  msgid "%s ago"
1108
  msgstr "%s முன்பு"
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது"
1215
 
1216
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1217
  #: templates/account/partials/addon.php26,
1218
  #: templates/account/partials/site.php:311
1219
  msgid "Downgrading your plan"
1220
  msgstr "உங்கள் திட்டம் கீழ்ப்படுத்தப்படுகிறது"
1221
 
1222
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1223
  #: templates/account/partials/addon.php27,
1224
  #: templates/account/partials/site.php:312
1225
  msgid "Cancelling the subscription"
1227
 
1228
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
  #. subscription'
1230
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1231
  #: templates/account/partials/site.php:314
1232
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
  msgstr "வருகின்ற அனைத்து பணம் செலுத்துதல்களையும் %1$s உடன் நிறுத்துகிறது, மற்றும் உங்கள் %2$s திட்ட உரிமம் %3$sல் காலாவதியாகிறது."
1234
 
1235
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1236
  #: templates/account/partials/addon.php30,
1237
  #: templates/account/partials/site.php:315
1238
  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."
1239
  msgstr "தயவுசெய்து கவனிக்கவும். ரத்துசெய்த பிறகு மீண்டும் புதிய சந்தா/புதுப்பித்தலுக்கு பழைய விலையை எங்களால் வசூலிக்க முடியாது. விலை ஆண்டுக்கொரு முறை உயரும். நீங்கள் இனி புதுப்பிக்க விரும்பினால் புதிய விலையை செலுத்தவேண்டும்."
1240
 
1241
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1242
  #: templates/account/partials/addon.php:31
1243
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
  msgstr "வெள்ளோட்டத்தை ரத்து செய்தால் அனைத்து விலையுள்ள வசதிகளும் நிறுத்தப்படும். சரியா?"
1245
 
1246
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1247
  #: templates/account/partials/addon.php32,
1248
  #: templates/account/partials/site.php:316
1249
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
  msgstr "நீங்கள் %sன் வசதிகளை பயன்படுத்த முடியும். ஆனால் %s பாதுகாப்பு & மேம்படுத்தல் மற்றும் உதவியை அணுக இயலாது."
1251
 
1252
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1253
  #: templates/account/partials/addon.php33,
1254
  #: templates/account/partials/site.php:317
1255
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
  msgstr "உங்கள் உரிமம் முடிந்ததும் நீங்கள் அனைத்து விலையில்லா வசதிகளையும் பயன்படுத்திக் கொள்ள முடியும். ஆனால் %s வசதிகளை அணுக இயலாது."
1257
 
1258
  #. translators: %s: Plan title (e.g. "Professional")
1259
+ #: templates/account.php111,
1260
  #: templates/account/partials/activate-license-button.php31,
1261
  #: templates/account/partials/addon.php:35
1262
  msgid "Activate %s Plan"
1263
  msgstr "%s திட்டம் செயல்படுத்த"
1264
 
1265
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
+ #: templates/account.php114, templates/account/partials/addon.php38,
1267
  #: templates/account/partials/site.php:291
1268
  msgid "Auto renews in %s"
1269
  msgstr "%sல் தானாக புதுப்பிக்கிறது"
1270
 
1271
  #. translators: %s: Time period (e.g. Expires in "2 months")
1272
+ #: templates/account.php116, templates/account/partials/addon.php40,
1273
  #: templates/account/partials/site.php:293
1274
  msgid "Expires in %s"
1275
  msgstr "%sல் காலாவதியாகிறது"
1276
 
1277
+ #: templates/account.php:117
1278
  msgctxt "as synchronize license"
1279
  msgid "Sync License"
1280
  msgstr "Sync License"
1281
 
1282
+ #: templates/account.php118, templates/account/partials/addon.php:41
1283
  msgid "Cancel Trial"
1284
  msgstr "வெள்ளோட்டம் ரத்து செய்க"
1285
 
1286
+ #: templates/account.php119, templates/account/partials/addon.php:42
1287
  msgid "Change Plan"
1288
  msgstr "திட்டம் மாற்ற"
1289
 
1290
+ #: templates/account.php120, templates/account/partials/addon.php:43
1291
  msgctxt "verb"
1292
  msgid "Upgrade"
1293
  msgstr "மேம்படுத்து"
1294
 
1295
+ #: templates/account.php122, templates/account/partials/addon.php45,
1296
  #: templates/account/partials/site.php:318
1297
  msgctxt "verb"
1298
  msgid "Downgrade"
1299
  msgstr "தரமிறக்கு"
1300
 
1301
+ #: templates/account.php124, templates/add-ons.php246,
1302
  #: templates/plugin-info/features.php72,
1303
  #: templates/account/partials/addon.php47,
1304
  #: templates/account/partials/site.php:33
1305
  msgid "Free"
1306
  msgstr "விலையில்லை"
1307
 
1308
+ #: templates/account.php126, templates/debug.php371,
1309
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
  #: templates/account/partials/addon.php:49
1311
  msgctxt "as product pricing plan"
1312
  msgid "Plan"
1313
  msgstr "திட்டம்"
1314
 
1315
+ #: templates/account.php:127
1316
  msgid "Bundle Plan"
1317
  msgstr "கூட்டுத்திட்டம்"
1318
 
1319
+ #: templates/account.php:250
1320
  msgid "Free Trial"
1321
  msgstr "விலையில்லா வெள்ளோட்டம்"
1322
 
1323
+ #: templates/account.php:261
1324
  msgid "Account Details"
1325
  msgstr "கணக்கு விபரங்கள்"
1326
 
1327
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1328
  msgid "Start Debug"
1329
  msgstr "Start Debug"
1330
 
1331
+ #: templates/account.php:270
1332
  msgid "Stop Debug"
1333
  msgstr "Stop Debug"
1334
 
1335
+ #: templates/account.php:277
1336
  msgid "Billing & Invoices"
1337
  msgstr "பில் & இன்வாய்ஸ்"
1338
 
1339
+ #: templates/account.php:288
1340
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1341
  msgstr "கணக்கை அழிப்பதானது உங்கள் %s உரிமத்தை உடனே செயல்நிறுத்தும் ஆனாலும் பிற தளங்களில் பயன்படுத்தலாம். இனிவரும் பணம் செலுத்துதல்களை நிறுத்த வேண்டுமானால் முதலில் கணக்கை தரமிறக்கி \"ரத்து செய்\" பட்டனை கிளிக் செய்யவும். கணக்கை அழிக்க விருப்பமா?"
1342
 
1343
+ #: templates/account.php:290
1344
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1345
  msgstr "கணக்கை அழிப்பது தற்காலிகமானல்ல. இந்த %s இனி உங்களுக்குத் தேவையில்லை என்றால் மட்டும் அழிக்கவும். கணக்கை அழிக்க விருப்பமா?"
1346
 
1347
+ #: templates/account.php:293
1348
  msgid "Delete Account"
1349
  msgstr "கணக்கை அழிக்க"
1350
 
1351
+ #: templates/account.php305, templates/account/partials/addon.php231,
1352
  #: templates/account/partials/deactivate-license-button.php:35
1353
  msgid "Deactivate License"
1354
  msgstr "உரிமத்தை செயல்நிறுத்த"
1355
 
1356
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1357
  msgid "Are you sure you want to proceed?"
1358
  msgstr "மேலே தொடர விருப்பமா?"
1359
 
1360
+ #: templates/account.php328, templates/account/partials/addon.php:255
1361
  msgid "Cancel Subscription"
1362
  msgstr "சந்தாவை ரத்து செய்"
1363
 
1364
+ #: templates/account.php357, templates/account/partials/addon.php:340
1365
  msgctxt "as synchronize"
1366
  msgid "Sync"
1367
  msgstr "Sync"
1368
 
1369
+ #: templates/account.php372, templates/debug.php:505
1370
  msgid "Name"
1371
  msgstr "பெயர்"
1372
 
1373
+ #: templates/account.php378, templates/debug.php:506
1374
  msgid "Email"
1375
  msgstr "மின்னஞ்சல்"
1376
 
1377
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1378
  msgid "User ID"
1379
  msgstr "உபயோகிப்பாளர் ஐடி"
1380
 
1381
+ #: templates/account.php403, templates/account.php721,
1382
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1383
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
  #: templates/debug.php632, templates/account/payments.php35,
1385
  #: templates/debug/logger.php:21
1386
  msgid "ID"
1387
  msgstr "ஐடி"
1388
 
1389
+ #: templates/account.php:410
1390
  msgid "Site ID"
1391
  msgstr "இணையதள ஐடி"
1392
 
1393
+ #: templates/account.php:413
1394
  msgid "No ID"
1395
  msgstr "ஐடி இல்லை"
1396
 
1397
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1398
  #: templates/debug.php456, templates/debug.php508,
1399
  #: templates/account/partials/site.php:227
1400
  msgid "Public Key"
1401
  msgstr "Public Key"
1402
 
1403
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1404
  #: templates/debug.php509, templates/account/partials/site.php:239
1405
  msgid "Secret Key"
1406
  msgstr "Secret Key"
1407
 
1408
+ #: templates/account.php:427
1409
  msgctxt "as secret encryption key missing"
1410
  msgid "No Secret"
1411
  msgstr "No Secret"
1412
 
1413
+ #: templates/account.php454, templates/account/partials/site.php120,
1414
  #: templates/account/partials/site.php:122
1415
  msgid "Trial"
1416
  msgstr "வெள்ளோட்டம்"
1417
 
1418
+ #: templates/account.php481, templates/debug.php561,
1419
  #: templates/account/partials/site.php:260
1420
  msgid "License Key"
1421
  msgstr "License Key"
1422
 
1423
+ #: templates/account.php:512
1424
  msgid "Join the Beta program"
1425
  msgstr "பீட்டா பதிப்பு சோதனையில் சேரவும்"
1426
 
1427
+ #: templates/account.php:518
1428
  msgid "not verified"
1429
  msgstr "உறுதிப்படுத்தப்படவில்லை"
1430
 
1431
+ #: templates/account.php527, templates/account/partials/addon.php:190
1432
  msgid "Expired"
1433
  msgstr "காலாவதியானது"
1434
 
1435
+ #: templates/account.php:587
1436
  msgid "Premium version"
1437
  msgstr "விலையுள்ள பதிப்பு"
1438
 
1439
+ #: templates/account.php:589
1440
  msgid "Free version"
1441
  msgstr "விலையில்லா பதிப்பு"
1442
 
1443
+ #: templates/account.php:601
1444
  msgid "Verify Email"
1445
  msgstr "மின்னஞ்சல் சரிபார்த்திடுங்கள்"
1446
 
1447
+ #: templates/account.php:615
1448
  msgid "Download %s Version"
1449
  msgstr "%s பதிப்பை பதிவிறக்கலாம்"
1450
 
1451
+ #: templates/account.php:631
1452
  msgid "Download Paid Version"
1453
  msgstr "Download Paid Version"
1454
 
1455
+ #: templates/account.php649, templates/account.php892,
1456
  #: templates/account/partials/site.php248,
1457
  #: templates/account/partials/site.php:270
1458
  msgctxt "verb"
1459
  msgid "Show"
1460
  msgstr "காட்டு"
1461
 
1462
+ #: templates/account.php:664
1463
  msgid "What is your %s?"
1464
  msgstr "உங்கள் %s என்ன?"
1465
 
1466
+ #: templates/account.php672, templates/account/billing.php:21
1467
  msgctxt "verb"
1468
  msgid "Edit"
1469
  msgstr "திருத்து"
1470
 
1471
+ #: templates/account.php676, templates/forms/user-change.php:27
1472
  msgid "Change User"
1473
  msgstr "Change User"
1474
 
1475
+ #: templates/account.php:700
1476
  msgid "Sites"
1477
  msgstr "தளங்கள்"
1478
 
1479
+ #: templates/account.php:713
1480
  msgid "Search by address"
1481
  msgstr "முகவரி மூலம் தேட"
1482
 
1483
+ #: templates/account.php722, templates/debug.php:366
1484
  msgid "Address"
1485
  msgstr "முகவரி"
1486
 
1487
+ #: templates/account.php:723
1488
  msgid "License"
1489
  msgstr "உரிமம்"
1490
 
1491
+ #: templates/account.php:724
1492
  msgid "Plan"
1493
  msgstr "திட்டம்"
1494
 
1495
+ #: templates/account.php:757
1496
  msgctxt "as software license"
1497
  msgid "License"
1498
  msgstr "உரிமம்"
1499
 
1500
+ #: templates/account.php:886
1501
  msgctxt "verb"
1502
  msgid "Hide"
1503
  msgstr "மறைத்திடு"
1504
 
1505
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1506
  msgid "Processing"
1507
  msgstr "செயலில்"
1508
 
1509
+ #: templates/account.php:911
1510
  msgid "Get updates for bleeding edge Beta versions of %s."
1511
  msgstr "%sன் பீட்டா பதிப்பு மேம்படுத்தலைப் பெறுங்கள்."
1512
 
1513
+ #: templates/account.php:969
1514
  msgid "Cancelling %s"
1515
  msgstr "%s ரத்தாகிறது"
1516
 
1517
+ #: templates/account.php969, templates/account.php986,
1518
  #: templates/forms/subscription-cancellation.php27,
1519
  #: templates/forms/deactivation/form.php:133
1520
  msgid "trial"
1521
  msgstr "வெள்ளோட்டம்"
1522
 
1523
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1524
  msgid "Cancelling %s..."
1525
  msgstr "%s ரத்தாகிறது..."
1526
 
1527
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1528
  #: templates/forms/deactivation/form.php:134
1529
  msgid "subscription"
1530
  msgstr "சந்தா"
1531
 
1532
+ #: templates/account.php:1001
1533
  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?"
1534
  msgstr "உரிமத்தை செயல்நிறுத்துவதானது, அனைத்து விலையுள்ள வசதிகளையும் நிறுத்திவிடும். ஆனாலும் பிற தளங்களில் செயல்படுத்தலாம். தொடரலாமா?"
1535
 
1536
+ #: templates/account.php:1075
1537
  msgid "Disabling white-label mode"
1538
  msgstr "Disabling white-label mode"
1539
 
1540
+ #: templates/account.php:1076
1541
  msgid "Enabling white-label mode"
1542
  msgstr "Enabling white-label mode"
1543
 
1563
  msgid "Installed"
1564
  msgstr "நிறுவப்பட்டது"
1565
 
1566
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1567
  #: templates/forms/resend-key.php:77
1568
  msgctxt "as close a window"
1569
  msgid "Dismiss"
1619
  msgid "Agree & Activate License"
1620
  msgstr "ஒப்புக்கொண்டு உரிமத்தை செயல்படுத்துக"
1621
 
1622
+ #: templates/connect.php:184
1623
+ msgid "Welcome to %s! To get started, please enter your license key:"
1624
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1625
 
1626
+ #: templates/connect.php:191
1627
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1628
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்."
1629
 
1630
+ #: templates/connect.php:192
1631
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்."
1633
 
1634
+ #: templates/connect.php:198
1635
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1636
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்."
1637
 
1638
+ #: templates/connect.php:199
1639
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1640
  msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்."
1641
 
1642
+ #: templates/connect.php:233
1643
  msgid "We're excited to introduce the Freemius network-level integration."
1644
  msgstr "Freemius network-level integrationஐ அறிமுகம் செய்வதில் பேருவகை அடைகிறோம்."
1645
 
1646
+ #: templates/connect.php:236
1647
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
  msgstr "மேம்படுத்தல் நடைபெறும்போதே இன்னும் %d தளங்களில் உரிமம் செயல்பாட்டில் இல்லை என்று அறிகிறோம்."
1649
 
1650
+ #: templates/connect.php:238
1651
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
  msgstr "அந்தத் தளங்களிலும் %sஐ உபயோகிக்க விரும்பினால், கீழே License Key உள்ளிட்டு செயல்படுத்தலை அழுத்தவும்."
1653
 
1654
+ #: templates/connect.php:240
1655
  msgid "%s's paid features"
1656
  msgstr "%sன் விலையுள்ள வசதிகள்"
1657
 
1658
+ #: templates/connect.php:245
1659
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
  msgstr "இல்லாவிட்டால், Network-level கணக்குப் பக்கத்தில் எப்போது வேண்டுமானாலும் உரிமத்தை செயல்படுத்திக் கொள்ளலாம்."
1661
 
1662
+ #: templates/connect.php:247
1663
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
  msgstr "மேம்படுத்தல் நடைபெறும்போதே Networkல்லுள்ள %s தளங்கள் உங்கள் கவனிப்பைக் கோருகின்றன என்றறிகிறோம்."
1665
 
1666
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1667
  #: templates/forms/license-activation.php:49
1668
  msgid "License key"
1669
  msgstr "License key"
1670
 
1671
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1672
  msgid "Can't find your license key?"
1673
  msgstr "License Key காணவில்லையா?"
1674
 
1675
+ #: templates/connect.php318, templates/connect.php700,
1676
  #: templates/forms/deactivation/retry-skip.php:20
1677
  msgctxt "verb"
1678
  msgid "Skip"
1679
  msgstr "கடந்திடு"
1680
 
1681
+ #: templates/connect.php:321
1682
  msgid "Delegate to Site Admins"
1683
  msgstr "தள நிர்வாகிகளுக்கான சிறப்பாளர்"
1684
 
1685
+ #: templates/connect.php:321
1686
  msgid "If you click it, this decision will be delegated to the sites administrators."
1687
  msgstr "இதை கிளிக் செய்தால், இந்த முடிவு தள நிர்வாகிகளுக்கு அனுப்பப்படும்."
1688
 
1689
+ #: templates/connect.php:346
1690
+ msgid "License issues?"
1691
+ msgstr "License issues?"
1692
+
1693
+ #: templates/connect.php:362
1694
  msgid "Your Profile Overview"
1695
  msgstr "உங்கள் சுயவிவர சுருக்கம்"
1696
 
1697
+ #: templates/connect.php:363
1698
  msgid "Name and email address"
1699
  msgstr "பெயரும், மின்னஞ்சல் முகவரியும்"
1700
 
1701
+ #: templates/connect.php:370
1702
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1703
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1704
+
1705
+ #: templates/connect.php:371
1706
  msgid "Your Site Overview"
1707
  msgstr "உங்கள் தளவிவர சுருக்கம்"
1708
 
1709
+ #: templates/connect.php:372
1710
  msgid "Site URL, WP version, PHP info"
1711
  msgstr "Site URL, WP version, PHP info"
1712
 
1714
  msgid "Admin Notices"
1715
  msgstr "நிர்வாக அறிவிப்புகள்"
1716
 
1717
+ #: templates/connect.php380, templates/connect.php:398
1718
  msgid "Updates, announcements, marketing, no spam"
1719
  msgstr "மேம்படுத்தல், அறிவிப்புகள், வணிக செய்திகள். Spam இல்லை"
1720
 
 
 
 
 
1721
  #: templates/connect.php:387
1722
+ msgid "So you can reuse the license when the %s is no longer active."
1723
+ msgstr "So you can reuse the license when the %s is no longer active."
1724
+
1725
+ #: templates/connect.php:388
1726
+ msgid "Current %s Status"
1727
+ msgstr "Current %s Status"
1728
+
1729
+ #: templates/connect.php:389
1730
+ msgid "Active, deactivated, or uninstalled"
1731
+ msgstr "Active, deactivated, or uninstalled"
1732
 
1733
+ #: templates/connect.php:397
1734
  msgid "Newsletter"
1735
  msgstr "செய்திக்கடிதம்"
1736
 
1737
+ #: templates/connect.php:405
1738
  msgid "Plugins & Themes"
1739
  msgstr "Plugins & Themes"
1740
 
1741
+ #: templates/connect.php:405
1742
+ msgid "optional"
1743
+ msgstr "optional"
1744
+
1745
+ #: templates/connect.php:406
1746
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1748
+
1749
+ #: templates/connect.php:407
1750
  msgid "Title, slug, version, and is active"
1751
  msgstr "Title, slug, version, and is active"
1752
 
1753
+ #: templates/connect.php:424
1754
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1756
 
1757
  #: templates/connect.php:426
1758
+ msgid "diagnostic data"
1759
+ msgstr "diagnostic data"
1760
+
1761
+ #: templates/connect.php:427
1762
+ msgid "Freemius is our licensing and software updates engine"
1763
+ msgstr "Freemius is our licensing and software updates engine"
1764
+
1765
+ #: templates/connect.php:430
1766
  msgid "What permissions are being granted?"
1767
  msgstr "என்னென்ன அனுமதிகள் கொடுக்கப்பட்டுள்ளது."
1768
 
1769
+ #: templates/connect.php:457
1770
  msgid "Don't have a license key?"
1771
  msgstr "License Key இல்லையா?"
1772
 
1773
+ #: templates/connect.php:460
1774
  msgid "Have a license key?"
1775
  msgstr "License key உள்ளதா?"
1776
 
1777
+ #: templates/connect.php:468
1778
  msgid "Privacy Policy"
1779
  msgstr "தனியுரிமைக் கொள்கைகள்"
1780
 
1781
+ #: templates/connect.php:470
1782
  msgid "License Agreement"
1783
  msgstr "உரிம ஒப்பந்தம்"
1784
 
1785
+ #: templates/connect.php:470
1786
  msgid "Terms of Service"
1787
  msgstr "சேவை நிபந்தனைகள்"
1788
 
1789
+ #: templates/connect.php:866
1790
  msgctxt "as in the process of sending an email"
1791
  msgid "Sending email"
1792
  msgstr "மின்னஞ்சல் அனுப்பப்படுகிறது"
1793
 
1794
+ #: templates/connect.php:867
1795
  msgctxt "as activating plugin"
1796
  msgid "Activating"
1797
  msgstr "செயல்படுத்துகிறது"
2394
  msgid "Update License"
2395
  msgstr "உரிமம் மேம்படுத்த"
2396
 
2397
+ #: templates/forms/license-activation.php:41
2398
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2399
+ msgstr "பாதுகாப்பு மற்றும் வசதி மேம்படுத்தலுக்காக %2$sக்கு %1$s தகவல் அனுப்பும், மற்றும் உங்கள் உரிமத்தின் செல்லுபடி காலத்தை சோதிக்கும்."
2400
+
2401
+ #: templates/forms/license-activation.php:183
2402
  msgid "Associate with the license owner's account."
2403
  msgstr "Associate with the license owner's account."
2404
 
includes/vendor/freemius/wordpress-sdk/languages/freemius-zh_CN.mo CHANGED
Binary file
includes/vendor/freemius/wordpress-sdk/languages/freemius-zh_CN.po CHANGED
@@ -1,13 +1,14 @@
1
- # Copyright (C) 2020 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Xiaheng Chen <futureman.tech@gmail.com>, 2020
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2020-10-16 08:46+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: zh_CN\n"
13
  "Language-Team: Chinese (China) (http://www.transifex.com/freemius/wordpress-sdk/language/zh_CN/)\n"
@@ -21,835 +22,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1912, templates/account.php:910
25
  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."
26
  msgstr "测试版的更新将用最新的测试版替换您安装的%s版本-请小心使用,不要在生产站点上使用。你被警告了。"
27
 
28
- #: includes/class-freemius.php:1919
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "是否继续更新?"
31
 
32
- #: includes/class-freemius.php:2131
33
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
  msgstr "Freemius SDK找不到插件的主文件。请关于当前错误与sdk@freemius.com联系。"
35
 
36
- #: includes/class-freemius.php:2133
37
  msgid "Error"
38
  msgstr "错误"
39
 
40
- #: includes/class-freemius.php:2533
41
  msgid "I found a better %s"
42
  msgstr "我找到了更好的%s"
43
 
44
- #: includes/class-freemius.php:2535
45
  msgid "What's the %s's name?"
46
  msgstr "%s的名字是什么?"
47
 
48
- #: includes/class-freemius.php:2541
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "这是临时的%s。我正在调试一个问题。"
51
 
52
- #: includes/class-freemius.php:2543
53
  msgid "Deactivation"
54
- msgstr "失活"
55
 
56
- #: includes/class-freemius.php:2544
57
  msgid "Theme Switch"
58
  msgstr "主题切换"
59
 
60
- #: includes/class-freemius.php2553, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "其他"
64
 
65
- #: includes/class-freemius.php:2561
66
  msgid "I no longer need the %s"
67
  msgstr "我不再需要%s"
68
 
69
- #: includes/class-freemius.php:2568
70
  msgid "I only needed the %s for a short period"
71
  msgstr "我只需要在短时间内使用%s"
72
 
73
- #: includes/class-freemius.php:2574
74
  msgid "The %s broke my site"
75
  msgstr "%s破坏了我的网站"
76
 
77
- #: includes/class-freemius.php:2581
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s突然停止工作"
80
 
81
- #: includes/class-freemius.php:2591
82
  msgid "I can't pay for it anymore"
83
  msgstr "我再也付不起了"
84
 
85
- #: includes/class-freemius.php:2593
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "你愿意付出什么价钱?"
88
 
89
- #: includes/class-freemius.php:2599
90
  msgid "I don't like to share my information with you"
91
  msgstr "我不想和你分享我的信息"
92
 
93
- #: includes/class-freemius.php:2620
94
  msgid "The %s didn't work"
95
  msgstr "%s不起作用"
96
 
97
- #: includes/class-freemius.php:2630
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "我不明白该怎么做"
100
 
101
- #: includes/class-freemius.php:2638
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s很好,但我需要您不支持的特定功能"
104
 
105
- #: includes/class-freemius.php:2640
106
  msgid "What feature?"
107
  msgstr "什么功能?"
108
 
109
- #: includes/class-freemius.php:2644
110
  msgid "The %s is not working"
111
  msgstr "%s不起作用"
112
 
113
- #: includes/class-freemius.php:2646
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
- msgstr "请分享什么地方出了错,以便我们可以为未来的用户修复它。。。"
116
 
117
- #: includes/class-freemius.php:2650
118
  msgid "It's not what I was looking for"
119
  msgstr "这不是我要找的"
120
 
121
- #: includes/class-freemius.php:2652
122
  msgid "What you've been looking for?"
123
  msgstr "你在找什么?"
124
 
125
- #: includes/class-freemius.php:2656
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s没有按预期工作"
128
 
129
- #: includes/class-freemius.php:2658
130
  msgid "What did you expect?"
131
  msgstr "你期望什么?"
132
 
133
- #: includes/class-freemius.php3513, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius 调试"
136
 
137
- #: includes/class-freemius.php:4265
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "我不知道cURL是什么,也不知道如何安装,帮帮我!"
140
 
141
- #: includes/class-freemius.php:4267
142
  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."
143
  msgstr "我们将确保与您的托管公司联系并解决问题。一旦我们有更新,您将收到一封%s的后续电子邮件。"
144
 
145
- #: includes/class-freemius.php:4274
146
  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."
147
  msgstr "很好,请安装cURL并在php.ini文件中启用它。此外,在php.ini文件中搜索\"disable_functions\"指令,并删除以\"curl_\"开头的所有禁用方法。要确保成功激活,请使用\"phpinfo()\"。一旦激活,停用%s并重新把它激活。"
148
 
149
- #: includes/class-freemius.php:4379
150
  msgid "Yes - do your thing"
151
- msgstr "是的-做你的事"
152
 
153
- #: includes/class-freemius.php:4384
154
  msgid "No - just deactivate"
155
- msgstr "不-取消激活"
156
-
157
- #: includes/class-freemius.php4429, includes/class-freemius.php4923,
158
- #: includes/class-freemius.php6182, includes/class-freemius.php13357,
159
- #: includes/class-freemius.php14075, includes/class-freemius.php17526,
160
- #: includes/class-freemius.php17631, includes/class-freemius.php17806,
161
- #: includes/class-freemius.php20040, includes/class-freemius.php20398,
162
- #: includes/class-freemius.php20408, includes/class-freemius.php21079,
163
- #: includes/class-freemius.php21985, includes/class-freemius.php22118,
164
- #: includes/class-freemius.php22274, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "哎呀"
168
 
169
- #: includes/class-freemius.php:4498
170
  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."
171
  msgstr "谢谢你给我们机会把它修好!刚刚给我们的技术人员发了一条信息。我们一有%s的更新就会给您回复。谢谢您的耐心。"
172
 
173
- #: includes/class-freemius.php:4920
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "没有%s,%s无法运行。"
177
 
178
- #: includes/class-freemius.php:4921
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "没有插件,%s无法运行。"
182
 
183
- #: includes/class-freemius.php5120, includes/class-freemius.php5145,
184
- #: includes/class-freemius.php:21150
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "意外的API错误。请与%s的作者联系,并举报出现的以下错误。"
187
 
188
- #: includes/class-freemius.php:5848
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "高级%s版本已成功激活。"
191
 
192
- #: includes/class-freemius.php5860, includes/class-freemius.php:7762
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
- #: includes/class-freemius.php:5875
198
  msgid "You have a %s license."
199
  msgstr "您有%s许可证。"
200
 
201
- #: includes/class-freemius.php5879, includes/class-freemius.php16925,
202
- #: includes/class-freemius.php16936, includes/class-freemius.php20309,
203
- #: includes/class-freemius.php20659, includes/class-freemius.php20728,
204
- #: includes/class-freemius.php:20900
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "哟哈"
208
 
209
- #: includes/class-freemius.php:6165
210
  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."
211
  msgstr "%s免费试用已成功取消。因为附加组件是高级的,所以它被自动停用。如果你想在将来使用它,你必须购买许可证。"
212
 
213
- #: includes/class-freemius.php:6169
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s是一款仅限高级的附加组件。在激活插件之前,必须先购买许可证。"
216
 
217
- #: includes/class-freemius.php6178, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "有关%s的详细信息"
221
 
222
- #: includes/class-freemius.php:6179
223
  msgid "Purchase License"
224
  msgstr "购买许可证"
225
 
226
- #: includes/class-freemius.php7118, templates/connect.php:171
227
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
228
  msgstr "您应该在%s的邮箱中收到一封%s的激活电子邮件。请确保单击发送到%s的该电子邮件中的激活按钮。"
229
 
230
- #: includes/class-freemius.php:7122
231
  msgid "start the trial"
232
  msgstr "开始试用"
233
 
234
- #: includes/class-freemius.php7123, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "完成安装"
237
 
238
- #: includes/class-freemius.php:7241
239
  msgid "You are just one step away - %s"
240
  msgstr "你离%s只差一步。"
241
 
242
- #: includes/class-freemius.php:7244
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "立即完成”%s“激活"
246
 
247
- #: includes/class-freemius.php:7322
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "我们对%s、%s做了一些调整"
250
 
251
- #: includes/class-freemius.php:7326
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "选择加入以使“%s”更好!"
254
 
255
- #: includes/class-freemius.php:7761
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "%s的升级已成功完成。"
258
 
259
- #: includes/class-freemius.php10243, includes/class-fs-plugin-updater.php1099,
260
- #: includes/class-fs-plugin-updater.php1294,
261
- #: includes/class-fs-plugin-updater.php1301,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "附加组件"
265
 
266
- #: includes/class-freemius.php10245, templates/account.php392,
267
- #: templates/account.php400, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "插件"
270
 
271
- #: includes/class-freemius.php10246, templates/account.php393,
272
- #: templates/account.php401, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "主题"
276
 
277
- #: includes/class-freemius.php:13176
278
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
- msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
 
281
- #: includes/class-freemius.php:13190
282
  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."
283
- 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."
284
 
285
- #: includes/class-freemius.php:13195
286
  msgid "User Dashboard"
287
- msgstr "User Dashboard"
288
 
289
- #: includes/class-freemius.php:13196
290
  msgid "revert it now"
291
- msgstr "revert it now"
292
 
293
- #: includes/class-freemius.php:13255
294
  msgid "An unknown error has occurred while trying to set the user's beta mode."
295
  msgstr "尝试设置用户的测试模式时发生了未知错误。"
296
 
297
- #: includes/class-freemius.php:13328
298
  msgid "Invalid new user ID or email address."
299
- msgstr "Invalid new user ID or email address."
300
 
301
- #: includes/class-freemius.php13358, includes/class-freemius.php:22229
302
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
  msgstr "对不起,我们无法完成电子邮件更新。具有相同电子邮件的另一个用户已注册。"
304
 
305
- #: includes/class-freemius.php13359, includes/class-freemius.php:22230
306
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
  msgstr "如果要将%s帐户的所有权放弃给%s,请单击“更改所有权”按钮。"
308
 
309
- #: includes/class-freemius.php13366, includes/class-freemius.php:22237
310
  msgid "Change Ownership"
311
  msgstr "变更所有权"
312
 
313
- #: includes/class-freemius.php:13942
314
  msgid "Invalid site details collection."
315
  msgstr "无效网站详细信息集合。"
316
 
317
- #: includes/class-freemius.php:14062
318
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
  msgstr "我们在系统中找不到您的电子邮件地址,您确定地址正确吗?"
320
 
321
- #: includes/class-freemius.php:14064
322
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
  msgstr "我们看不到与该电子邮件地址关联的任何活动许可证,您确定它是正确的地址吗?"
324
 
325
- #: includes/class-freemius.php:14338
326
  msgid "Account is pending activation."
327
  msgstr "帐户正在等待激活。"
328
 
329
- #: includes/class-freemius.php14450,
330
  #: templates/forms/premium-versions-upgrade-handler.php:47
331
  msgid "Buy a license now"
332
  msgstr "立即购买许可证"
333
 
334
- #: includes/class-freemius.php14462,
335
  #: templates/forms/premium-versions-upgrade-handler.php:46
336
  msgid "Renew your license now"
337
  msgstr "立即续订许可证"
338
 
339
- #: includes/class-freemius.php:14466
340
  msgid "%s to access version %s security & feature updates, and support."
341
  msgstr "%s以访问版本%s的安全和功能更新以及支持。"
342
 
343
- #: includes/class-freemius.php:16907
344
  msgid "%s activation was successfully completed."
345
  msgstr "%s激活已成功完成。"
346
 
347
- #: includes/class-freemius.php:16921
348
  msgid "Your account was successfully activated with the %s plan."
349
  msgstr "您的帐户已用%s计划成功激活。"
350
 
351
- #: includes/class-freemius.php16932, includes/class-freemius.php:20724
352
  msgid "Your trial has been successfully started."
353
  msgstr "您的试用已成功开始。"
354
 
355
- #: includes/class-freemius.php17524, includes/class-freemius.php17629,
356
- #: includes/class-freemius.php:17804
357
  msgid "Couldn't activate %s."
358
  msgstr "无法激活%s。"
359
 
360
- #: includes/class-freemius.php17525, includes/class-freemius.php17630,
361
- #: includes/class-freemius.php:17805
362
  msgid "Please contact us with the following message:"
363
  msgstr "请通过以下信息与我们联系:"
364
 
365
- #: includes/class-freemius.php17626, templates/forms/data-debug-mode.php:162
366
  msgid "An unknown error has occurred."
367
  msgstr "发生未知错误。"
368
 
369
- #: includes/class-freemius.php18162, includes/class-freemius.php:23310
370
  msgid "Upgrade"
371
  msgstr "升级"
372
 
373
- #: includes/class-freemius.php:18168
374
  msgid "Start Trial"
375
  msgstr "开始试用"
376
 
377
- #: includes/class-freemius.php:18170
378
  msgid "Pricing"
379
  msgstr "定价"
380
 
381
- #: includes/class-freemius.php18250, includes/class-freemius.php:18252
382
  msgid "Affiliation"
383
  msgstr "附属"
384
 
385
- #: includes/class-freemius.php18280, includes/class-freemius.php18282,
386
- #: templates/account.php240, templates/debug.php:324
387
  msgid "Account"
388
  msgstr "帐户"
389
 
390
- #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
  #: includes/customizer/class-fs-customizer-support-section.php:60
392
  msgid "Contact Us"
393
  msgstr "联系我们"
394
 
395
- #: includes/class-freemius.php18309, includes/class-freemius.php18311,
396
- #: includes/class-freemius.php23324, templates/account.php119,
397
  #: templates/account/partials/addon.php:44
398
  msgid "Add-Ons"
399
  msgstr "附加组件"
400
 
401
- #: includes/class-freemius.php:18345
402
  msgctxt "ASCII arrow left icon"
403
  msgid "&#x2190;"
404
- msgstr "&#x2190"
405
 
406
- #: includes/class-freemius.php:18345
407
  msgctxt "ASCII arrow right icon"
408
  msgid "&#x27a4;"
409
- msgstr "&#x27a4"
410
 
411
- #: includes/class-freemius.php18347, templates/pricing.php:109
412
  msgctxt "noun"
413
  msgid "Pricing"
414
  msgstr "定价"
415
 
416
- #: includes/class-freemius.php18560,
417
  #: includes/customizer/class-fs-customizer-support-section.php:67
418
  msgid "Support Forum"
419
  msgstr "支持论坛"
420
 
421
- #: includes/class-freemius.php:19534
422
  msgid "Your email has been successfully verified - you are AWESOME!"
423
  msgstr "你的电子邮件已被成功验证-你太棒了!"
424
 
425
- #: includes/class-freemius.php:19535
426
  msgctxt "a positive response"
427
  msgid "Right on"
428
  msgstr "就在"
429
 
430
- #: includes/class-freemius.php:20041
431
  msgid "seems like the key you entered doesn't match our records."
432
  msgstr "好像你输入的钥匙和我们的记录不符。"
433
 
434
- #: includes/class-freemius.php:20065
435
  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."
436
  msgstr "调试模式已成功启用,将在60分钟以内自动禁用。您也可以通过单击“停止调试”链接提前禁用。"
437
 
438
- #: includes/class-freemius.php:20300
439
  msgid "Your %s Add-on plan was successfully upgraded."
440
  msgstr "%s加载项计划已成功升级。"
441
 
442
- #: includes/class-freemius.php:20302
443
  msgid "%s Add-on was successfully purchased."
444
  msgstr "已成功购买%s加载项。"
445
 
446
- #: includes/class-freemius.php:20305
447
  msgid "Download the latest version"
448
  msgstr "下载最新版本"
449
 
450
- #: includes/class-freemius.php:20391
451
  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"
452
  msgstr "您的服务器正在阻止对Freemius API的访问,这对%1$s同步至关重要。请与您的主机联系以获取白名单%2$s"
453
 
454
- #: includes/class-freemius.php20397, includes/class-freemius.php20407,
455
- #: includes/class-freemius.php20859, includes/class-freemius.php:20948
456
  msgid "Error received from the server:"
457
  msgstr "从服务器收到错误:"
458
 
459
- #: includes/class-freemius.php:20407
460
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
  msgstr "似乎身份验证参数中的一个不正确。请更新您的公钥、密钥和用户ID,然后重试。"
462
 
463
- #: includes/class-freemius.php20621, includes/class-freemius.php20864,
464
- #: includes/class-freemius.php20919, includes/class-freemius.php:21026
465
  msgctxt ""
466
  msgid "Hmm"
467
  msgstr "嗯"
468
 
469
- #: includes/class-freemius.php:20634
470
  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."
471
  msgstr "看来你还在%s计划中。如果你确实升级或更改了计划,这可能是我们这边的问题-对不起。"
472
 
473
- #: includes/class-freemius.php20635, templates/account.php121,
474
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
  msgctxt "trial period"
476
  msgid "Trial"
477
  msgstr "试用"
478
 
479
- #: includes/class-freemius.php:20640
480
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
  msgstr "我已经升级了我的帐户,但是当我尝试同步许可证时,计划仍然是%s。"
482
 
483
- #: includes/class-freemius.php20644, includes/class-freemius.php:20703
484
  msgid "Please contact us here"
485
  msgstr "请在这里联系我们"
486
 
487
- #: includes/class-freemius.php:20655
488
  msgid "Your plan was successfully activated."
489
  msgstr "您的计划已成功激活。"
490
 
491
- #: includes/class-freemius.php:20656
492
  msgid "Your plan was successfully upgraded."
493
  msgstr "您的计划已成功升级。"
494
 
495
- #: includes/class-freemius.php:20673
496
  msgid "Your plan was successfully changed to %s."
497
  msgstr "您的计划已成功更改为%s。"
498
 
499
- #: includes/class-freemius.php:20689
500
  msgid "Your license has expired. You can still continue using the free %s forever."
501
  msgstr "您的许可证过期了。您仍然可以继续永远使用免费的%s。"
502
 
503
- #: includes/class-freemius.php:20691
504
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "您的许可证过期了。%1$s立即升级%2$s以继续使用%3$s而不中断。"
506
 
507
- #: includes/class-freemius.php:20699
508
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
  msgstr "你的许可证被取消了。如果您认为这是一个错误,请联系支持人员。"
510
 
511
- #: includes/class-freemius.php:20712
512
  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."
513
  msgstr "您的许可证过期了。您仍然可以继续使用所有%s功能,但您需要续订许可证才能继续获取更新和支持。"
514
 
515
- #: includes/class-freemius.php:20738
516
  msgid "Your free trial has expired. You can still continue using all our free features."
517
  msgstr "您的免费试用已过期。您仍然可以继续使用我们所有的免费功能。"
518
 
519
- #: includes/class-freemius.php:20740
520
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
  msgstr "您的免费试用已过期。%1$s立即升级%2$s以继续使用%3$s而不中断。"
522
 
523
- #: includes/class-freemius.php:20855
524
  msgid "It looks like the license could not be activated."
525
  msgstr "似乎无法激活许可证。"
526
 
527
- #: includes/class-freemius.php:20897
528
  msgid "Your license was successfully activated."
529
  msgstr "您的许可证已成功激活。"
530
 
531
- #: includes/class-freemius.php:20923
532
  msgid "It looks like your site currently doesn't have an active license."
533
  msgstr "您的站点当前似乎没有活动许可证。"
534
 
535
- #: includes/class-freemius.php:20947
536
  msgid "It looks like the license deactivation failed."
537
  msgstr "许可证停用似乎失败。"
538
 
539
- #: includes/class-freemius.php:20976
540
  msgid "Your %s license was successfully deactivated."
541
- msgstr "Your %s license was successfully deactivated."
542
 
543
- #: includes/class-freemius.php:20977
544
  msgid "Your license was successfully deactivated, you are back to the %s plan."
545
  msgstr "您的许可证已成功停用,您回到了%s计划。"
546
 
547
- #: includes/class-freemius.php:20980
548
  msgid "O.K"
549
  msgstr "好"
550
 
551
- #: includes/class-freemius.php:21033
552
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
  msgstr "似乎关于您的订阅取消发生了一些暂时的问题。请过几分钟再试一次。"
554
 
555
- #: includes/class-freemius.php:21042
556
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
  msgstr "您的订阅已成功取消。您的%s计划许可证将在%s后过期。"
558
 
559
- #: includes/class-freemius.php:21084
560
  msgid "You are already running the %s in a trial mode."
561
  msgstr "您已经在试用模式下运行%s。"
562
 
563
- #: includes/class-freemius.php:21095
564
  msgid "You already utilized a trial before."
565
  msgstr "您以前已经试用过。"
566
 
567
- #: includes/class-freemius.php:21109
568
  msgid "Plan %s do not exist, therefore, can't start a trial."
569
  msgstr "计划%s不存在,因此无法启动试用。"
570
 
571
- #: includes/class-freemius.php:21120
572
  msgid "Plan %s does not support a trial period."
573
  msgstr "计划%s不支持试用期。"
574
 
575
- #: includes/class-freemius.php:21131
576
  msgid "None of the %s's plans supports a trial period."
577
  msgstr "%s的任何计划都不支持试用期。"
578
 
579
- #: includes/class-freemius.php:21181
580
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
  msgstr "看起来您不再处于试用模式,所以没有什么需要取消的:)"
582
 
583
- #: includes/class-freemius.php:21217
584
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
  msgstr "看来关于您的试用取消发生了一些暂时的问题。请过几分钟再试一次。"
586
 
587
- #: includes/class-freemius.php:21236
588
  msgid "Your %s free trial was successfully cancelled."
589
  msgstr "您的%s免费试用已成功取消。"
590
 
591
- #: includes/class-freemius.php:21552
592
  msgid "Version %s was released."
593
  msgstr "版本%s已发布。"
594
 
595
- #: includes/class-freemius.php:21552
596
  msgid "Please download %s."
597
  msgstr "请下载%s。"
598
 
599
- #: includes/class-freemius.php:21559
600
  msgid "the latest %s version here"
601
  msgstr "这儿有最新的%s版本"
602
 
603
- #: includes/class-freemius.php:21564
604
  msgid "New"
605
  msgstr "新的"
606
 
607
- #: includes/class-freemius.php:21569
608
  msgid "Seems like you got the latest release."
609
  msgstr "好像你得到了最新的版本。"
610
 
611
- #: includes/class-freemius.php:21570
612
  msgid "You are all good!"
613
  msgstr "你们都很好!"
614
 
615
- #: includes/class-freemius.php:21873
616
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
  msgstr "验证邮件刚刚发送到%s。如果5分钟后找不到,请检查垃圾邮件框。"
618
 
619
- #: includes/class-freemius.php:22013
620
  msgid "Site successfully opted in."
621
  msgstr "站点已成功选择加入。"
622
 
623
- #: includes/class-freemius.php22014, includes/class-freemius.php:23020
624
  msgid "Awesome"
625
  msgstr "真棒"
626
 
627
- #: includes/class-freemius.php22030, templates/forms/optout.php:41
628
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
  msgstr "感谢您让我们跟踪一些使用数据,帮助我们改进%s。"
630
 
631
- #: includes/class-freemius.php:22031
632
  msgid "Thank you!"
633
  msgstr "谢谢您!"
634
 
635
- #: includes/class-freemius.php:22038
636
  msgid "We will no longer be sending any usage data of %s on %s to %s."
637
  msgstr "我们不会再将%s在%s上的任何使用数据发送到%s。"
638
 
639
- #: includes/class-freemius.php:22196
640
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
641
  msgstr "请检查您的邮箱,您应该通过%s收到电子邮件以确认所有权更改。出于安全原因,您必须在15分钟以内确认更改。如果找不到电子邮件,请检查垃圾邮件文件夹。"
642
 
643
- #: includes/class-freemius.php:22202
644
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
  msgstr "感谢您确认所有权变更。刚刚向%s发送了一封电子邮件以获得最终批准。"
646
 
647
- #: includes/class-freemius.php:22207
648
  msgid "%s is the new owner of the account."
649
  msgstr "%s是帐户的新主人。"
650
 
651
- #: includes/class-freemius.php:22209
652
  msgctxt "as congratulations"
653
  msgid "Congrats"
654
  msgstr "恭喜"
655
 
656
- #: includes/class-freemius.php:22245
657
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
  msgstr "您的电子邮件已成功更新。你应该在几分钟内收到一封带有确认说明的电子邮件。"
659
 
660
- #: includes/class-freemius.php:22257
661
  msgid "Please provide your full name."
662
  msgstr "请提供您的全名。"
663
 
664
- #: includes/class-freemius.php:22262
665
  msgid "Your name was successfully updated."
666
  msgstr "您的姓名已成功更新。"
667
 
668
- #: includes/class-freemius.php:22323
669
  msgid "You have successfully updated your %s."
670
  msgstr "您已成功更新%s。"
671
 
672
- #: includes/class-freemius.php:22382
673
  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."
674
- 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."
675
 
676
- #: includes/class-freemius.php:22385
677
  msgid "Click here"
678
- msgstr "Click here"
679
 
680
- #: includes/class-freemius.php:22483
681
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
  msgstr "只是让您知道%s的加载项信息是从外部服务器提取的。"
683
 
684
- #: includes/class-freemius.php:22484
685
  msgctxt "advance notice of something that will need attention."
686
  msgid "Heads up"
687
  msgstr "抬头"
688
 
689
- #: includes/class-freemius.php:23060
690
  msgctxt "exclamation"
691
  msgid "Hey"
692
  msgstr "嘿"
693
 
694
- #: includes/class-freemius.php:23060
695
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
  msgstr "到目前为止,您觉得%s怎么样?使用%d天免费试用来测试我们所有的%s高级功能。"
697
 
698
- #: includes/class-freemius.php:23068
699
  msgid "No commitment for %s days - cancel anytime!"
700
  msgstr "%s天没有承诺-随时取消!"
701
 
702
- #: includes/class-freemius.php:23069
703
  msgid "No credit card required"
704
  msgstr "不需要信用卡"
705
 
706
- #: includes/class-freemius.php23076, templates/forms/trial-start.php:53
707
  msgctxt "call to action"
708
  msgid "Start free trial"
709
  msgstr "开始免费试用"
710
 
711
- #: includes/class-freemius.php:23153
712
  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!"
713
  msgstr "嘿,你知道%s有会员计划吗?如果您喜欢%s,您可以成为我们的大使并赚取一些现金!"
714
 
715
- #: includes/class-freemius.php:23162
716
  msgid "Learn more"
717
  msgstr "了解更多"
718
 
719
- #: includes/class-freemius.php23348, templates/account.php556,
720
- #: templates/account.php706, templates/connect.php179,
721
- #: templates/connect.php456, templates/forms/license-activation.php27,
722
  #: templates/account/partials/addon.php:321
723
  msgid "Activate License"
724
  msgstr "激活许可证"
725
 
726
- #: includes/class-freemius.php23349, templates/account.php650,
727
- #: templates/account.php705, templates/account/partials/addon.php322,
728
  #: templates/account/partials/site.php:271
729
  msgid "Change License"
730
  msgstr "更改许可证"
731
 
732
- #: includes/class-freemius.php23462, templates/account/partials/site.php:169
733
  msgid "Opt Out"
734
  msgstr "选择退出"
735
 
736
- #: includes/class-freemius.php23464, includes/class-freemius.php23470,
737
  #: templates/account/partials/site.php49,
738
  #: templates/account/partials/site.php:169
739
  msgid "Opt In"
740
  msgstr "选择加入"
741
 
742
- #: includes/class-freemius.php:23700
743
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
  msgstr "已安装%1$s的付费版本。请激活它以开始使用%2$s功能。%3$s公司"
745
 
746
- #: includes/class-freemius.php:23708
747
  msgid "Activate %s features"
748
  msgstr "激活%s功能"
749
 
750
- #: includes/class-freemius.php:23721
751
  msgid "Please follow these steps to complete the upgrade"
752
  msgstr "请按照以下步骤完成升级"
753
 
754
- #: includes/class-freemius.php:23725
755
  msgid "Download the latest %s version"
756
  msgstr "下载最新的%s版本"
757
 
758
- #: includes/class-freemius.php:23729
759
  msgid "Upload and activate the downloaded version"
760
  msgstr "上传并激活下载的版本"
761
 
762
- #: includes/class-freemius.php:23731
763
  msgid "How to upload and activate?"
764
  msgstr "如何上传和激活?"
765
 
766
- #: includes/class-freemius.php:23865
767
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
  msgstr "%s单击此处%s可选择要激活许可证的站点。"
769
 
770
- #: includes/class-freemius.php:24034
771
  msgid "Auto installation only works for opted-in users."
772
  msgstr "自动安装仅适用于已选择的用户。"
773
 
774
- #: includes/class-freemius.php24044, includes/class-freemius.php24077,
775
- #: includes/class-fs-plugin-updater.php1273,
776
- #: includes/class-fs-plugin-updater.php:1287
777
  msgid "Invalid module ID."
778
  msgstr "模块ID无效。"
779
 
780
- #: includes/class-freemius.php24053, includes/class-fs-plugin-updater.php:1309
781
  msgid "Premium version already active."
782
  msgstr "高级版本已激活。"
783
 
784
- #: includes/class-freemius.php:24060
785
  msgid "You do not have a valid license to access the premium version."
786
  msgstr "您没有访问高级版本的有效许可证。"
787
 
788
- #: includes/class-freemius.php:24067
789
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
  msgstr "插件是一个“服务软件”,这意味着它没有高级代码版本。"
791
 
792
- #: includes/class-freemius.php24085, includes/class-fs-plugin-updater.php:1308
793
  msgid "Premium add-on version already installed."
794
  msgstr "已安装高级加载项版本。"
795
 
796
- #: includes/class-freemius.php:24435
797
  msgid "View paid features"
798
  msgstr "查看付费功能"
799
 
800
- #: includes/class-freemius.php:24757
801
  msgid "Thank you so much for using %s and its add-ons!"
802
  msgstr "非常感谢您使用%s及其附加组件!"
803
 
804
- #: includes/class-freemius.php:24758
805
  msgid "Thank you so much for using %s!"
806
  msgstr "非常感谢您使用%s!"
807
 
808
- #: includes/class-freemius.php:24764
809
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
  msgstr "您已经选择加入我们的使用情况跟踪,这有助于我们不断改进%s。"
811
 
812
- #: includes/class-freemius.php:24768
813
  msgid "Thank you so much for using our products!"
814
  msgstr "非常感谢您使用我们的产品!"
815
 
816
- #: includes/class-freemius.php:24769
817
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
  msgstr "您已经选择了我们的使用情况跟踪,这有助于我们不断改进它们。"
819
 
820
- #: includes/class-freemius.php:24788
821
  msgid "%s and its add-ons"
822
  msgstr "%s及其附加组件"
823
 
824
- #: includes/class-freemius.php:24797
825
  msgid "Products"
826
  msgstr "产品"
827
 
828
- #: includes/class-freemius.php24804, templates/connect.php:280
829
  msgid "Yes"
830
  msgstr "是"
831
 
832
- #: includes/class-freemius.php24805, templates/connect.php:281
833
  msgid "send me security & feature updates, educational content and offers."
834
  msgstr "请给我发送安全和功能更新,教育内容和优惠。"
835
 
836
- #: includes/class-freemius.php24806, templates/connect.php:286
837
  msgid "No"
838
  msgstr "不"
839
 
840
- #: includes/class-freemius.php24808, templates/connect.php:288
841
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
  msgstr "不%s要%s向我发送安全和功能更新、教育内容和服务。"
843
 
844
- #: includes/class-freemius.php:24818
845
  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 :-)"
846
  msgstr "由于新的%sEU通用数据保护条例(GDPR)%s的合规性要求,要求您再次明确表示同意,确认您已经加入:-)"
847
 
848
- #: includes/class-freemius.php24820, templates/connect.php:295
849
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
  msgstr "如果您希望我们与您联系以获取安全和功能更新、教育内容和偶尔的优惠,请告知我们:"
851
 
852
- #: includes/class-freemius.php:25102
853
  msgid "License key is empty."
854
  msgstr "许可证密钥为空。"
855
 
@@ -882,15 +883,15 @@ msgstr "新版本"
882
  msgid "Important Upgrade Notice:"
883
  msgstr "重要升级通知:"
884
 
885
- #: includes/class-fs-plugin-updater.php:1338
886
  msgid "Installing plugin: %s"
887
  msgstr "正在安装插件:%s"
888
 
889
- #: includes/class-fs-plugin-updater.php:1379
890
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
  msgstr "无法连接到文件系统。请确认您的凭据。"
892
 
893
- #: includes/class-fs-plugin-updater.php:1561
894
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
  msgstr "远程插件包不包含具有所需段塞的文件夹,重命名失败。"
896
 
@@ -912,7 +913,7 @@ msgstr "开始我的免费%s"
912
  msgid "Install Free Version Update Now"
913
  msgstr "立即安装免费版本更新"
914
 
915
- #: includes/fs-plugin-info-dialog.php745, templates/account.php:639
916
  msgid "Install Update Now"
917
  msgstr "立即安装更新"
918
 
@@ -932,7 +933,7 @@ msgctxt "as download latest version"
932
  msgid "Download Latest Free Version"
933
  msgstr "下载最新免费版本"
934
 
935
- #: includes/fs-plugin-info-dialog.php772, templates/account.php99,
936
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
  msgctxt "as download latest version"
938
  msgid "Download Latest"
@@ -944,11 +945,11 @@ msgstr "下载最新版本"
944
  msgid "Activate this add-on"
945
  msgstr "激活此加载项"
946
 
947
- #: includes/fs-plugin-info-dialog.php789, templates/connect.php:453
948
  msgid "Activate Free Version"
949
  msgstr "激活免费版本"
950
 
951
- #: includes/fs-plugin-info-dialog.php790, templates/account.php123,
952
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
  msgid "Activate"
954
  msgstr "激活"
@@ -1084,7 +1085,7 @@ msgstr "免费%s后,只需支付%s"
1084
  msgid "Details"
1085
  msgstr "细节"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php1318, templates/account.php110,
1088
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
  #: templates/account/partials/addon.php:36
1090
  msgctxt "product version"
@@ -1100,7 +1101,7 @@ msgstr "作者"
1100
  msgid "Last Updated"
1101
  msgstr "上次更新时间"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php1337, templates/account.php:525
1104
  msgctxt "x-ago"
1105
  msgid "%s ago"
1106
  msgstr "%s以前"
@@ -1211,13 +1212,13 @@ msgstr "已安装最新版本"
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "已安装最新的免费版本"
1213
 
1214
- #: templates/account.php100, templates/forms/subscription-cancellation.php96,
1215
  #: templates/account/partials/addon.php26,
1216
  #: templates/account/partials/site.php:311
1217
  msgid "Downgrading your plan"
1218
  msgstr "降低您的计划"
1219
 
1220
- #: templates/account.php101, templates/forms/subscription-cancellation.php97,
1221
  #: templates/account/partials/addon.php27,
1222
  #: templates/account/partials/site.php:312
1223
  msgid "Cancelling the subscription"
@@ -1225,319 +1226,319 @@ msgstr "取消订阅"
1225
 
1226
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
  #. subscription'
1228
- #: templates/account.php103, templates/forms/subscription-cancellation.php99,
1229
  #: templates/account/partials/site.php:314
1230
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
  msgstr "%1$s将立即停止所有未来的定期付款,并且您的%2$s计划许可证将在%3$s过期。"
1232
 
1233
- #: templates/account.php104, templates/forms/subscription-cancellation.php100,
1234
  #: templates/account/partials/addon.php30,
1235
  #: templates/account/partials/site.php:315
1236
  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."
1237
  msgstr "请注意,取消后,我们将无法获取更新/新订阅的过期定价。如果您选择在未来手动续订,在价格上涨后,将向您收取更新后的价格。"
1238
 
1239
- #: templates/account.php105, templates/forms/subscription-cancellation.php106,
1240
  #: templates/account/partials/addon.php:31
1241
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
  msgstr "取消试用将立即阻止使用所有高级功能。你确定吗?"
1243
 
1244
- #: templates/account.php106, templates/forms/subscription-cancellation.php101,
1245
  #: templates/account/partials/addon.php32,
1246
  #: templates/account/partials/site.php:316
1247
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
  msgstr "您仍然可以享受所有%s功能,但您将无法获得%s安全和功能更新以及支持服务。"
1249
 
1250
- #: templates/account.php107, templates/forms/subscription-cancellation.php102,
1251
  #: templates/account/partials/addon.php33,
1252
  #: templates/account/partials/site.php:317
1253
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
  msgstr "许可证过期后,您仍然可以使用免费版本,但您将无法使用%s功能。"
1255
 
1256
  #. translators: %s: Plan title (e.g. "Professional")
1257
- #: templates/account.php109,
1258
  #: templates/account/partials/activate-license-button.php31,
1259
  #: templates/account/partials/addon.php:35
1260
  msgid "Activate %s Plan"
1261
  msgstr "激活%s计划"
1262
 
1263
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
- #: templates/account.php112, templates/account/partials/addon.php38,
1265
  #: templates/account/partials/site.php:291
1266
  msgid "Auto renews in %s"
1267
  msgstr "在%s中自动续订"
1268
 
1269
  #. translators: %s: Time period (e.g. Expires in "2 months")
1270
- #: templates/account.php114, templates/account/partials/addon.php40,
1271
  #: templates/account/partials/site.php:293
1272
  msgid "Expires in %s"
1273
  msgstr "%s后过期"
1274
 
1275
- #: templates/account.php:115
1276
  msgctxt "as synchronize license"
1277
  msgid "Sync License"
1278
  msgstr "同步许可证"
1279
 
1280
- #: templates/account.php116, templates/account/partials/addon.php:41
1281
  msgid "Cancel Trial"
1282
  msgstr "取消试用"
1283
 
1284
- #: templates/account.php117, templates/account/partials/addon.php:42
1285
  msgid "Change Plan"
1286
  msgstr "变更计划"
1287
 
1288
- #: templates/account.php118, templates/account/partials/addon.php:43
1289
  msgctxt "verb"
1290
  msgid "Upgrade"
1291
  msgstr "升级"
1292
 
1293
- #: templates/account.php120, templates/account/partials/addon.php45,
1294
  #: templates/account/partials/site.php:318
1295
  msgctxt "verb"
1296
  msgid "Downgrade"
1297
  msgstr "降级"
1298
 
1299
- #: templates/account.php122, templates/add-ons.php246,
1300
  #: templates/plugin-info/features.php72,
1301
  #: templates/account/partials/addon.php47,
1302
  #: templates/account/partials/site.php:33
1303
  msgid "Free"
1304
  msgstr "免费的"
1305
 
1306
- #: templates/account.php124, templates/debug.php371,
1307
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
  #: templates/account/partials/addon.php:49
1309
  msgctxt "as product pricing plan"
1310
  msgid "Plan"
1311
  msgstr "计划"
1312
 
1313
- #: templates/account.php:125
1314
  msgid "Bundle Plan"
1315
  msgstr "捆绑计划"
1316
 
1317
- #: templates/account.php:248
1318
  msgid "Free Trial"
1319
  msgstr "免费试用"
1320
 
1321
- #: templates/account.php:259
1322
  msgid "Account Details"
1323
  msgstr "帐户详细信息"
1324
 
1325
- #: templates/account.php266, templates/forms/data-debug-mode.php:33
1326
  msgid "Start Debug"
1327
  msgstr "开始调试"
1328
 
1329
- #: templates/account.php:268
1330
  msgid "Stop Debug"
1331
  msgstr "停止调试"
1332
 
1333
- #: templates/account.php:275
1334
  msgid "Billing & Invoices"
1335
  msgstr "账单和发票"
1336
 
1337
- #: templates/account.php:286
1338
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1339
  msgstr "删除帐户将自动停用您的%s计划许可证,以便您可以在其他网站上使用。如果您想终止定期付款,点击“取消”按钮,并首先“降级”你的帐户。确实要继续删除吗?"
1340
 
1341
- #: templates/account.php:288
1342
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1343
  msgstr "删除不是临时的。只有当您不再想使用此%s时才删除。确实要继续删除吗?"
1344
 
1345
- #: templates/account.php:291
1346
  msgid "Delete Account"
1347
  msgstr "删除帐户"
1348
 
1349
- #: templates/account.php303, templates/account/partials/addon.php231,
1350
  #: templates/account/partials/deactivate-license-button.php:35
1351
  msgid "Deactivate License"
1352
  msgstr "停用许可证"
1353
 
1354
- #: templates/account.php326, templates/forms/subscription-cancellation.php:125
1355
  msgid "Are you sure you want to proceed?"
1356
  msgstr "确定要继续吗?"
1357
 
1358
- #: templates/account.php326, templates/account/partials/addon.php:255
1359
  msgid "Cancel Subscription"
1360
  msgstr "取消订阅"
1361
 
1362
- #: templates/account.php355, templates/account/partials/addon.php:340
1363
  msgctxt "as synchronize"
1364
  msgid "Sync"
1365
  msgstr "同步"
1366
 
1367
- #: templates/account.php370, templates/debug.php:505
1368
  msgid "Name"
1369
  msgstr "姓名"
1370
 
1371
- #: templates/account.php376, templates/debug.php:506
1372
  msgid "Email"
1373
  msgstr "电子邮件"
1374
 
1375
- #: templates/account.php383, templates/debug.php369, templates/debug.php:555
1376
  msgid "User ID"
1377
  msgstr "用户身份证"
1378
 
1379
- #: templates/account.php401, templates/account.php719,
1380
- #: templates/account.php752, templates/debug.php236, templates/debug.php363,
1381
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
  #: templates/debug.php632, templates/account/payments.php35,
1383
  #: templates/debug/logger.php:21
1384
  msgid "ID"
1385
  msgstr "身份证件"
1386
 
1387
- #: templates/account.php:408
1388
  msgid "Site ID"
1389
  msgstr "站点身份证"
1390
 
1391
- #: templates/account.php:411
1392
  msgid "No ID"
1393
  msgstr "没有身份证"
1394
 
1395
- #: templates/account.php416, templates/debug.php243, templates/debug.php372,
1396
  #: templates/debug.php456, templates/debug.php508,
1397
  #: templates/account/partials/site.php:227
1398
  msgid "Public Key"
1399
  msgstr "公钥"
1400
 
1401
- #: templates/account.php422, templates/debug.php373, templates/debug.php457,
1402
  #: templates/debug.php509, templates/account/partials/site.php:239
1403
  msgid "Secret Key"
1404
  msgstr "密钥"
1405
 
1406
- #: templates/account.php:425
1407
  msgctxt "as secret encryption key missing"
1408
  msgid "No Secret"
1409
  msgstr "没有秘密"
1410
 
1411
- #: templates/account.php452, templates/account/partials/site.php120,
1412
  #: templates/account/partials/site.php:122
1413
  msgid "Trial"
1414
  msgstr "审判"
1415
 
1416
- #: templates/account.php479, templates/debug.php561,
1417
  #: templates/account/partials/site.php:260
1418
  msgid "License Key"
1419
  msgstr "许可证密钥"
1420
 
1421
- #: templates/account.php:510
1422
  msgid "Join the Beta program"
1423
  msgstr "加入测试计划"
1424
 
1425
- #: templates/account.php:516
1426
  msgid "not verified"
1427
  msgstr "未验证"
1428
 
1429
- #: templates/account.php525, templates/account/partials/addon.php:190
1430
  msgid "Expired"
1431
  msgstr "期满"
1432
 
1433
- #: templates/account.php:585
1434
  msgid "Premium version"
1435
  msgstr "高级版"
1436
 
1437
- #: templates/account.php:587
1438
  msgid "Free version"
1439
  msgstr "免费版本"
1440
 
1441
- #: templates/account.php:599
1442
  msgid "Verify Email"
1443
  msgstr "验证电子邮件"
1444
 
1445
- #: templates/account.php:613
1446
  msgid "Download %s Version"
1447
  msgstr "下载%s版本"
1448
 
1449
- #: templates/account.php:629
1450
  msgid "Download Paid Version"
1451
- msgstr "Download Paid Version"
1452
 
1453
- #: templates/account.php647, templates/account.php890,
1454
  #: templates/account/partials/site.php248,
1455
  #: templates/account/partials/site.php:270
1456
  msgctxt "verb"
1457
  msgid "Show"
1458
  msgstr "显示"
1459
 
1460
- #: templates/account.php:662
1461
  msgid "What is your %s?"
1462
  msgstr "你的%s是什么?"
1463
 
1464
- #: templates/account.php670, templates/account/billing.php:21
1465
  msgctxt "verb"
1466
  msgid "Edit"
1467
  msgstr "编辑"
1468
 
1469
- #: templates/account.php674, templates/forms/user-change.php:27
1470
  msgid "Change User"
1471
- msgstr "Change User"
1472
 
1473
- #: templates/account.php:698
1474
  msgid "Sites"
1475
  msgstr "站点"
1476
 
1477
- #: templates/account.php:711
1478
  msgid "Search by address"
1479
  msgstr "按地址搜索"
1480
 
1481
- #: templates/account.php720, templates/debug.php:366
1482
  msgid "Address"
1483
  msgstr "地址"
1484
 
1485
- #: templates/account.php:721
1486
  msgid "License"
1487
  msgstr "许可证"
1488
 
1489
- #: templates/account.php:722
1490
  msgid "Plan"
1491
  msgstr "计划"
1492
 
1493
- #: templates/account.php:755
1494
  msgctxt "as software license"
1495
  msgid "License"
1496
  msgstr "许可证"
1497
 
1498
- #: templates/account.php:884
1499
  msgctxt "verb"
1500
  msgid "Hide"
1501
  msgstr "隐藏"
1502
 
1503
- #: templates/account.php906, templates/forms/data-debug-mode.php:31
1504
  msgid "Processing"
1505
  msgstr "处理"
1506
 
1507
- #: templates/account.php:909
1508
  msgid "Get updates for bleeding edge Beta versions of %s."
1509
  msgstr "获取%s的前沿测试版本的更新。"
1510
 
1511
- #: templates/account.php:967
1512
  msgid "Cancelling %s"
1513
  msgstr "正在取消%s"
1514
 
1515
- #: templates/account.php967, templates/account.php984,
1516
  #: templates/forms/subscription-cancellation.php27,
1517
  #: templates/forms/deactivation/form.php:133
1518
  msgid "trial"
1519
  msgstr "试用"
1520
 
1521
- #: templates/account.php982, templates/forms/deactivation/form.php:150
1522
  msgid "Cancelling %s..."
1523
  msgstr "正在取消%s。。。"
1524
 
1525
- #: templates/account.php985, templates/forms/subscription-cancellation.php28,
1526
  #: templates/forms/deactivation/form.php:134
1527
  msgid "subscription"
1528
  msgstr "订阅"
1529
 
1530
- #: templates/account.php:999
1531
  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?"
1532
  msgstr "停用许可证将阻止所有高级功能,但将在其他站点上激活许可证。确定要继续吗?"
1533
 
1534
- #: templates/account.php:1073
1535
  msgid "Disabling white-label mode"
1536
- msgstr "Disabling white-label mode"
1537
 
1538
- #: templates/account.php:1074
1539
  msgid "Enabling white-label mode"
1540
- msgstr "Enabling white-label mode"
1541
 
1542
  #: templates/add-ons.php:38
1543
  msgid "View details"
@@ -1561,7 +1562,7 @@ msgctxt "installed add-on"
1561
  msgid "Installed"
1562
  msgstr "安装"
1563
 
1564
- #: templates/admin-notice.php13, templates/forms/license-activation.php220,
1565
  #: templates/forms/resend-key.php:77
1566
  msgctxt "as close a window"
1567
  msgid "Dismiss"
@@ -1617,151 +1618,179 @@ msgstr "谢谢%s!"
1617
  msgid "Agree & Activate License"
1618
  msgstr "同意并激活许可证"
1619
 
1620
- #: templates/connect.php:189
1621
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1622
- msgstr "感谢您购买%s!要开始,请输入许可证密钥:"
1623
 
1624
- #: templates/connect.php:196
1625
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1626
  msgstr "千万不要错过一个重要的更新-使用%4$s选择加入我们的安全和功能更新通知、教育内容、服务和非敏感诊断跟踪。"
1627
 
1628
- #: templates/connect.php:197
1629
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
  msgstr "千万不要错过重要的更新-使用%4$s选择加入我们的安全和功能更新通知,以及非敏感诊断跟踪。"
1631
 
1632
- #: templates/connect.php:203
1633
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1634
  msgstr "千万不要错过重要的更新-使用%14$s选择加入我们的安全和功能更新通知、教育内容、服务和非敏感诊断跟踪。如果您跳过这一步,没关系!%1$s仍然可以正常工作。"
1635
 
1636
- #: templates/connect.php:204
1637
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1638
  msgstr "千万不要错过重要的更新-选择加入我们的安全和功能更新通知,并使用%4$s进行非敏感诊断跟踪。如果您跳过这一步,没关系!%1$s仍然可以正常工作。"
1639
 
1640
- #: templates/connect.php:238
1641
  msgid "We're excited to introduce the Freemius network-level integration."
1642
  msgstr "我们很高兴介绍Freemius网络级集成。"
1643
 
1644
- #: templates/connect.php:241
1645
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
  msgstr "在更新过程中,我们检测到%d个网站仍在等待许可证激活。"
1647
 
1648
- #: templates/connect.php:243
1649
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
  msgstr "如果要在这些站点上使用%s,请在下面输入许可证密钥,然后单击“激活”按钮。"
1651
 
1652
- #: templates/connect.php:245
1653
  msgid "%s's paid features"
1654
  msgstr "%s的付费功能"
1655
 
1656
- #: templates/connect.php:250
1657
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
  msgstr "或者,您可以暂时跳过它,稍后在%s的网络级帐户页中激活许可证。"
1659
 
1660
- #: templates/connect.php:252
1661
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
  msgstr "在更新过程中,我们在网络中检测到%s个网站仍然需要您的注意。"
1663
 
1664
- #: templates/connect.php261, templates/forms/data-debug-mode.php35,
1665
  #: templates/forms/license-activation.php:49
1666
  msgid "License key"
1667
  msgstr "许可证密钥"
1668
 
1669
- #: templates/connect.php264, templates/forms/license-activation.php:22
1670
  msgid "Can't find your license key?"
1671
  msgstr "找不到您的许可证密钥?"
1672
 
1673
- #: templates/connect.php323, templates/connect.php695,
1674
  #: templates/forms/deactivation/retry-skip.php:20
1675
  msgctxt "verb"
1676
  msgid "Skip"
1677
  msgstr "跳过"
1678
 
1679
- #: templates/connect.php:326
1680
  msgid "Delegate to Site Admins"
1681
  msgstr "委派给站点管理员"
1682
 
1683
- #: templates/connect.php:326
1684
  msgid "If you click it, this decision will be delegated to the sites administrators."
1685
  msgstr "如果单击它,此决定将委派给站点管理员。"
1686
 
1687
- #: templates/connect.php:364
 
 
 
 
1688
  msgid "Your Profile Overview"
1689
  msgstr "您的个人资料概述"
1690
 
1691
- #: templates/connect.php:365
1692
  msgid "Name and email address"
1693
  msgstr "姓名和电子邮件地址"
1694
 
1695
- #: templates/connect.php:372
 
 
 
 
1696
  msgid "Your Site Overview"
1697
  msgstr "您的网站概述"
1698
 
1699
- #: templates/connect.php:373
1700
  msgid "Site URL, WP version, PHP info"
1701
- msgstr "Site URL, WP version, PHP info"
1702
 
1703
  #: templates/connect.php:379
1704
  msgid "Admin Notices"
1705
  msgstr "管理通知"
1706
 
1707
- #: templates/connect.php380, templates/connect.php:396
1708
  msgid "Updates, announcements, marketing, no spam"
1709
  msgstr "更新、公告、营销,无垃圾邮件"
1710
 
1711
- #: templates/connect.php:386
1712
- msgid "Current %s Events"
1713
- msgstr "当前%s事件"
1714
-
1715
  #: templates/connect.php:387
1716
- msgid "Activation, deactivation and uninstall"
1717
- msgstr "激活、停用和卸载"
 
 
 
 
 
 
 
 
1718
 
1719
- #: templates/connect.php:395
1720
  msgid "Newsletter"
1721
  msgstr "新闻稿"
1722
 
1723
- #: templates/connect.php:403
1724
  msgid "Plugins & Themes"
1725
- msgstr "Plugins & Themes"
1726
 
1727
- #: templates/connect.php:404
 
 
 
 
 
 
 
 
1728
  msgid "Title, slug, version, and is active"
1729
- msgstr "Title, slug, version, and is active"
1730
 
1731
- #: templates/connect.php421, templates/forms/license-activation.php:41
1732
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1733
- msgstr "%1$s将定期向%2$s发送数据,以检查安全性和功能更新,并验证许可证的有效性。"
1734
 
1735
  #: templates/connect.php:426
 
 
 
 
 
 
 
 
1736
  msgid "What permissions are being granted?"
1737
  msgstr "正在授予哪些权限?"
1738
 
1739
- #: templates/connect.php:452
1740
  msgid "Don't have a license key?"
1741
  msgstr "没有许可证密钥?"
1742
 
1743
- #: templates/connect.php:455
1744
  msgid "Have a license key?"
1745
  msgstr "有许可证密钥吗?"
1746
 
1747
- #: templates/connect.php:463
1748
  msgid "Privacy Policy"
1749
  msgstr "隐私政策"
1750
 
1751
- #: templates/connect.php:465
1752
  msgid "License Agreement"
1753
  msgstr "许可协议"
1754
 
1755
- #: templates/connect.php:465
1756
  msgid "Terms of Service"
1757
  msgstr "服务条款"
1758
 
1759
- #: templates/connect.php:854
1760
  msgctxt "as in the process of sending an email"
1761
  msgid "Sending email"
1762
  msgstr "发送电子邮件"
1763
 
1764
- #: templates/connect.php:855
1765
  msgctxt "as activating plugin"
1766
  msgid "Activating"
1767
  msgstr "正在激活"
@@ -2230,7 +2259,7 @@ msgstr "由于违反我们的会员条款,我们决定暂时阻止您的会员
2230
 
2231
  #: templates/forms/affiliation.php:144
2232
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2233
- msgstr "喜欢%s吗?成为我们的大使并赚取现金;-)"
2234
 
2235
  #: templates/forms/affiliation.php:145
2236
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
@@ -2364,9 +2393,13 @@ msgstr "请输入购买后在电子邮件中收到的许可证密钥:"
2364
  msgid "Update License"
2365
  msgstr "更新许可证"
2366
 
2367
- #: templates/forms/license-activation.php:181
 
 
 
 
2368
  msgid "Associate with the license owner's account."
2369
- msgstr "Associate with the license owner's account."
2370
 
2371
  #: templates/forms/optout.php:30
2372
  msgctxt "verb"
@@ -2380,19 +2413,19 @@ msgstr "选择加入"
2380
 
2381
  #: templates/forms/optout.php:34
2382
  msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2383
- msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2384
 
2385
  #: templates/forms/optout.php:36
2386
  msgid "Warning: Opting out will block automatic updates"
2387
- msgstr "Warning: Opting out will block automatic updates"
2388
 
2389
  #: templates/forms/optout.php:37
2390
  msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2391
- msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2392
 
2393
  #: templates/forms/optout.php:39
2394
  msgid "I'd like to keep automatic updates"
2395
- msgstr "I'd like to keep automatic updates"
2396
 
2397
  #: templates/forms/optout.php:44
2398
  msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider lettin
1
+ # Copyright (C) 2021 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Xiaheng Chen <futureman.tech@gmail.com>, 2020
5
+ # Yulinn <melittleloli@gmail.com>, 2021
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: zh_CN\n"
14
  "Language-Team: Chinese (China) (http://www.transifex.com/freemius/wordpress-sdk/language/zh_CN/)\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
  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."
27
  msgstr "测试版的更新将用最新的测试版替换您安装的%s版本-请小心使用,不要在生产站点上使用。你被警告了。"
28
 
29
+ #: includes/class-freemius.php:1926
30
  msgid "Would you like to proceed with the update?"
31
  msgstr "是否继续更新?"
32
 
33
+ #: includes/class-freemius.php:2138
34
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
  msgstr "Freemius SDK找不到插件的主文件。请关于当前错误与sdk@freemius.com联系。"
36
 
37
+ #: includes/class-freemius.php:2140
38
  msgid "Error"
39
  msgstr "错误"
40
 
41
+ #: includes/class-freemius.php:2540
42
  msgid "I found a better %s"
43
  msgstr "我找到了更好的%s"
44
 
45
+ #: includes/class-freemius.php:2542
46
  msgid "What's the %s's name?"
47
  msgstr "%s的名字是什么?"
48
 
49
+ #: includes/class-freemius.php:2548
50
  msgid "It's a temporary %s. I'm just debugging an issue."
51
  msgstr "这是临时的%s。我正在调试一个问题。"
52
 
53
+ #: includes/class-freemius.php:2550
54
  msgid "Deactivation"
55
+ msgstr "停用"
56
 
57
+ #: includes/class-freemius.php:2551
58
  msgid "Theme Switch"
59
  msgstr "主题切换"
60
 
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "其他"
65
 
66
+ #: includes/class-freemius.php:2568
67
  msgid "I no longer need the %s"
68
  msgstr "我不再需要%s"
69
 
70
+ #: includes/class-freemius.php:2575
71
  msgid "I only needed the %s for a short period"
72
  msgstr "我只需要在短时间内使用%s"
73
 
74
+ #: includes/class-freemius.php:2581
75
  msgid "The %s broke my site"
76
  msgstr "%s破坏了我的网站"
77
 
78
+ #: includes/class-freemius.php:2588
79
  msgid "The %s suddenly stopped working"
80
  msgstr "%s突然停止工作"
81
 
82
+ #: includes/class-freemius.php:2598
83
  msgid "I can't pay for it anymore"
84
  msgstr "我再也付不起了"
85
 
86
+ #: includes/class-freemius.php:2600
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "你愿意付出什么价钱?"
89
 
90
+ #: includes/class-freemius.php:2606
91
  msgid "I don't like to share my information with you"
92
  msgstr "我不想和你分享我的信息"
93
 
94
+ #: includes/class-freemius.php:2627
95
  msgid "The %s didn't work"
96
  msgstr "%s不起作用"
97
 
98
+ #: includes/class-freemius.php:2637
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "我不明白该怎么做"
101
 
102
+ #: includes/class-freemius.php:2645
103
  msgid "The %s is great, but I need specific feature that you don't support"
104
  msgstr "%s很好,但我需要您不支持的特定功能"
105
 
106
+ #: includes/class-freemius.php:2647
107
  msgid "What feature?"
108
  msgstr "什么功能?"
109
 
110
+ #: includes/class-freemius.php:2651
111
  msgid "The %s is not working"
112
  msgstr "%s不起作用"
113
 
114
+ #: includes/class-freemius.php:2653
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
+ msgstr "请分享什么地方出了错,以便我们可以为未来的用户修复它..."
117
 
118
+ #: includes/class-freemius.php:2657
119
  msgid "It's not what I was looking for"
120
  msgstr "这不是我要找的"
121
 
122
+ #: includes/class-freemius.php:2659
123
  msgid "What you've been looking for?"
124
  msgstr "你在找什么?"
125
 
126
+ #: includes/class-freemius.php:2663
127
  msgid "The %s didn't work as expected"
128
  msgstr "%s没有按预期工作"
129
 
130
+ #: includes/class-freemius.php:2665
131
  msgid "What did you expect?"
132
  msgstr "你期望什么?"
133
 
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Freemius 调试"
137
 
138
+ #: includes/class-freemius.php:4272
139
  msgid "I don't know what is cURL or how to install it, help me!"
140
  msgstr "我不知道cURL是什么,也不知道如何安装,帮帮我!"
141
 
142
+ #: includes/class-freemius.php:4274
143
  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."
144
  msgstr "我们将确保与您的托管公司联系并解决问题。一旦我们有更新,您将收到一封%s的后续电子邮件。"
145
 
146
+ #: includes/class-freemius.php:4281
147
  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."
148
  msgstr "很好,请安装cURL并在php.ini文件中启用它。此外,在php.ini文件中搜索\"disable_functions\"指令,并删除以\"curl_\"开头的所有禁用方法。要确保成功激活,请使用\"phpinfo()\"。一旦激活,停用%s并重新把它激活。"
149
 
150
+ #: includes/class-freemius.php:4386
151
  msgid "Yes - do your thing"
152
+ msgstr "是 - 做你该做的"
153
 
154
+ #: includes/class-freemius.php:4391
155
  msgid "No - just deactivate"
156
+ msgstr "否 - 只需停用"
157
+
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "哎呀"
169
 
170
+ #: includes/class-freemius.php:4505
171
  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."
172
  msgstr "谢谢你给我们机会把它修好!刚刚给我们的技术人员发了一条信息。我们一有%s的更新就会给您回复。谢谢您的耐心。"
173
 
174
+ #: includes/class-freemius.php:4927
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "没有%s,%s无法运行。"
178
 
179
+ #: includes/class-freemius.php:4928
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "没有插件,%s无法运行。"
183
 
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
  msgid "Unexpected API error. Please contact the %s's author with the following error."
187
  msgstr "意外的API错误。请与%s的作者联系,并举报出现的以下错误。"
188
 
189
+ #: includes/class-freemius.php:5857
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "高级%s版本已成功激活。"
192
 
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
+ #: includes/class-freemius.php:5884
199
  msgid "You have a %s license."
200
  msgstr "您有%s许可证。"
201
 
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "哟哈"
209
 
210
+ #: includes/class-freemius.php:6174
211
  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."
212
  msgstr "%s免费试用已成功取消。因为附加组件是高级的,所以它被自动停用。如果你想在将来使用它,你必须购买许可证。"
213
 
214
+ #: includes/class-freemius.php:6178
215
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
  msgstr "%s是一款仅限高级的附加组件。在激活插件之前,必须先购买许可证。"
217
 
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
  #: templates/account/partials/addon.php:381
220
  msgid "More information about %s"
221
  msgstr "有关%s的详细信息"
222
 
223
+ #: includes/class-freemius.php:6188
224
  msgid "Purchase License"
225
  msgstr "购买许可证"
226
 
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
229
  msgstr "您应该在%s的邮箱中收到一封%s的激活电子邮件。请确保单击发送到%s的该电子邮件中的激活按钮。"
230
 
231
+ #: includes/class-freemius.php:7129
232
  msgid "start the trial"
233
  msgstr "开始试用"
234
 
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "完成安装"
238
 
239
+ #: includes/class-freemius.php:7249
240
  msgid "You are just one step away - %s"
241
  msgstr "你离%s只差一步。"
242
 
243
+ #: includes/class-freemius.php:7252
244
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
  msgid "Complete \"%s\" Activation Now"
246
  msgstr "立即完成”%s“激活"
247
 
248
+ #: includes/class-freemius.php:7334
249
  msgid "We made a few tweaks to the %s, %s"
250
  msgstr "我们对%s、%s做了一些调整"
251
 
252
+ #: includes/class-freemius.php:7338
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "选择加入以使“%s”更好!"
255
 
256
+ #: includes/class-freemius.php:7773
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "%s的升级已成功完成。"
259
 
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "附加组件"
266
 
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "插件"
271
 
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "主题"
277
 
278
+ #: includes/class-freemius.php:13188
279
  msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+ msgstr "尝试切换许可证的白标模式时发生未知错误。"
281
 
282
+ #: includes/class-freemius.php:13202
283
  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."
284
+ msgstr "您的%s许可证被标记为白标,以对WP管理员隐藏敏感信息(例如,您的电子邮件,许可证密钥,价格,账单地址和发票)。如果您希望将其还原,则可以通过%s轻松完成。如果这是一个错误,您也可以%s"
285
 
286
+ #: includes/class-freemius.php:13207
287
  msgid "User Dashboard"
288
+ msgstr "用户仪表盘"
289
 
290
+ #: includes/class-freemius.php:13208
291
  msgid "revert it now"
292
+ msgstr "现在还原"
293
 
294
+ #: includes/class-freemius.php:13266
295
  msgid "An unknown error has occurred while trying to set the user's beta mode."
296
  msgstr "尝试设置用户的测试模式时发生了未知错误。"
297
 
298
+ #: includes/class-freemius.php:13339
299
  msgid "Invalid new user ID or email address."
300
+ msgstr "无效的新用户ID或电子邮件地址。"
301
 
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
  msgstr "对不起,我们无法完成电子邮件更新。具有相同电子邮件的另一个用户已注册。"
305
 
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
  msgstr "如果要将%s帐户的所有权放弃给%s,请单击“更改所有权”按钮。"
309
 
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
  msgid "Change Ownership"
312
  msgstr "变更所有权"
313
 
314
+ #: includes/class-freemius.php:13977
315
  msgid "Invalid site details collection."
316
  msgstr "无效网站详细信息集合。"
317
 
318
+ #: includes/class-freemius.php:14097
319
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
  msgstr "我们在系统中找不到您的电子邮件地址,您确定地址正确吗?"
321
 
322
+ #: includes/class-freemius.php:14099
323
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
  msgstr "我们看不到与该电子邮件地址关联的任何活动许可证,您确定它是正确的地址吗?"
325
 
326
+ #: includes/class-freemius.php:14373
327
  msgid "Account is pending activation."
328
  msgstr "帐户正在等待激活。"
329
 
330
+ #: includes/class-freemius.php14485,
331
  #: templates/forms/premium-versions-upgrade-handler.php:47
332
  msgid "Buy a license now"
333
  msgstr "立即购买许可证"
334
 
335
+ #: includes/class-freemius.php14497,
336
  #: templates/forms/premium-versions-upgrade-handler.php:46
337
  msgid "Renew your license now"
338
  msgstr "立即续订许可证"
339
 
340
+ #: includes/class-freemius.php:14501
341
  msgid "%s to access version %s security & feature updates, and support."
342
  msgstr "%s以访问版本%s的安全和功能更新以及支持。"
343
 
344
+ #: includes/class-freemius.php:16929
345
  msgid "%s activation was successfully completed."
346
  msgstr "%s激活已成功完成。"
347
 
348
+ #: includes/class-freemius.php:16943
349
  msgid "Your account was successfully activated with the %s plan."
350
  msgstr "您的帐户已用%s计划成功激活。"
351
 
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
  msgid "Your trial has been successfully started."
354
  msgstr "您的试用已成功开始。"
355
 
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
  msgid "Couldn't activate %s."
359
  msgstr "无法激活%s。"
360
 
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
  msgid "Please contact us with the following message:"
364
  msgstr "请通过以下信息与我们联系:"
365
 
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
  msgid "An unknown error has occurred."
368
  msgstr "发生未知错误。"
369
 
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
  msgid "Upgrade"
372
  msgstr "升级"
373
 
374
+ #: includes/class-freemius.php:18184
375
  msgid "Start Trial"
376
  msgstr "开始试用"
377
 
378
+ #: includes/class-freemius.php:18186
379
  msgid "Pricing"
380
  msgstr "定价"
381
 
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
  msgid "Affiliation"
384
  msgstr "附属"
385
 
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
  msgid "Account"
389
  msgstr "帐户"
390
 
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
  #: includes/customizer/class-fs-customizer-support-section.php:60
393
  msgid "Contact Us"
394
  msgstr "联系我们"
395
 
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
  #: templates/account/partials/addon.php:44
399
  msgid "Add-Ons"
400
  msgstr "附加组件"
401
 
402
+ #: includes/class-freemius.php:18361
403
  msgctxt "ASCII arrow left icon"
404
  msgid "&#x2190;"
405
+ msgstr "&#x2190;"
406
 
407
+ #: includes/class-freemius.php:18361
408
  msgctxt "ASCII arrow right icon"
409
  msgid "&#x27a4;"
410
+ msgstr "&#x27a4;"
411
 
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
  msgctxt "noun"
414
  msgid "Pricing"
415
  msgstr "定价"
416
 
417
+ #: includes/class-freemius.php18576,
418
  #: includes/customizer/class-fs-customizer-support-section.php:67
419
  msgid "Support Forum"
420
  msgstr "支持论坛"
421
 
422
+ #: includes/class-freemius.php:19550
423
  msgid "Your email has been successfully verified - you are AWESOME!"
424
  msgstr "你的电子邮件已被成功验证-你太棒了!"
425
 
426
+ #: includes/class-freemius.php:19551
427
  msgctxt "a positive response"
428
  msgid "Right on"
429
  msgstr "就在"
430
 
431
+ #: includes/class-freemius.php:20057
432
  msgid "seems like the key you entered doesn't match our records."
433
  msgstr "好像你输入的钥匙和我们的记录不符。"
434
 
435
+ #: includes/class-freemius.php:20081
436
  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."
437
  msgstr "调试模式已成功启用,将在60分钟以内自动禁用。您也可以通过单击“停止调试”链接提前禁用。"
438
 
439
+ #: includes/class-freemius.php:20316
440
  msgid "Your %s Add-on plan was successfully upgraded."
441
  msgstr "%s加载项计划已成功升级。"
442
 
443
+ #: includes/class-freemius.php:20318
444
  msgid "%s Add-on was successfully purchased."
445
  msgstr "已成功购买%s加载项。"
446
 
447
+ #: includes/class-freemius.php:20321
448
  msgid "Download the latest version"
449
  msgstr "下载最新版本"
450
 
451
+ #: includes/class-freemius.php:20407
452
  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"
453
  msgstr "您的服务器正在阻止对Freemius API的访问,这对%1$s同步至关重要。请与您的主机联系以获取白名单%2$s"
454
 
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
  msgid "Error received from the server:"
458
  msgstr "从服务器收到错误:"
459
 
460
+ #: includes/class-freemius.php:20423
461
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
  msgstr "似乎身份验证参数中的一个不正确。请更新您的公钥、密钥和用户ID,然后重试。"
463
 
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
  msgctxt ""
467
  msgid "Hmm"
468
  msgstr "嗯"
469
 
470
+ #: includes/class-freemius.php:20664
471
  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."
472
  msgstr "看来你还在%s计划中。如果你确实升级或更改了计划,这可能是我们这边的问题-对不起。"
473
 
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
  msgctxt "trial period"
477
  msgid "Trial"
478
  msgstr "试用"
479
 
480
+ #: includes/class-freemius.php:20670
481
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
  msgstr "我已经升级了我的帐户,但是当我尝试同步许可证时,计划仍然是%s。"
483
 
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
  msgid "Please contact us here"
486
  msgstr "请在这里联系我们"
487
 
488
+ #: includes/class-freemius.php:20685
489
  msgid "Your plan was successfully activated."
490
  msgstr "您的计划已成功激活。"
491
 
492
+ #: includes/class-freemius.php:20686
493
  msgid "Your plan was successfully upgraded."
494
  msgstr "您的计划已成功升级。"
495
 
496
+ #: includes/class-freemius.php:20703
497
  msgid "Your plan was successfully changed to %s."
498
  msgstr "您的计划已成功更改为%s。"
499
 
500
+ #: includes/class-freemius.php:20719
501
  msgid "Your license has expired. You can still continue using the free %s forever."
502
  msgstr "您的许可证过期了。您仍然可以继续永远使用免费的%s。"
503
 
504
+ #: includes/class-freemius.php:20721
505
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "您的许可证过期了。%1$s立即升级%2$s以继续使用%3$s而不中断。"
507
 
508
+ #: includes/class-freemius.php:20729
509
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
  msgstr "你的许可证被取消了。如果您认为这是一个错误,请联系支持人员。"
511
 
512
+ #: includes/class-freemius.php:20742
513
  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."
514
  msgstr "您的许可证过期了。您仍然可以继续使用所有%s功能,但您需要续订许可证才能继续获取更新和支持。"
515
 
516
+ #: includes/class-freemius.php:20768
517
  msgid "Your free trial has expired. You can still continue using all our free features."
518
  msgstr "您的免费试用已过期。您仍然可以继续使用我们所有的免费功能。"
519
 
520
+ #: includes/class-freemius.php:20770
521
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
  msgstr "您的免费试用已过期。%1$s立即升级%2$s以继续使用%3$s而不中断。"
523
 
524
+ #: includes/class-freemius.php:20885
525
  msgid "It looks like the license could not be activated."
526
  msgstr "似乎无法激活许可证。"
527
 
528
+ #: includes/class-freemius.php:20927
529
  msgid "Your license was successfully activated."
530
  msgstr "您的许可证已成功激活。"
531
 
532
+ #: includes/class-freemius.php:20953
533
  msgid "It looks like your site currently doesn't have an active license."
534
  msgstr "您的站点当前似乎没有活动许可证。"
535
 
536
+ #: includes/class-freemius.php:20977
537
  msgid "It looks like the license deactivation failed."
538
  msgstr "许可证停用似乎失败。"
539
 
540
+ #: includes/class-freemius.php:21006
541
  msgid "Your %s license was successfully deactivated."
542
+ msgstr "您的%s许可证已成功停用。"
543
 
544
+ #: includes/class-freemius.php:21007
545
  msgid "Your license was successfully deactivated, you are back to the %s plan."
546
  msgstr "您的许可证已成功停用,您回到了%s计划。"
547
 
548
+ #: includes/class-freemius.php:21010
549
  msgid "O.K"
550
  msgstr "好"
551
 
552
+ #: includes/class-freemius.php:21063
553
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
  msgstr "似乎关于您的订阅取消发生了一些暂时的问题。请过几分钟再试一次。"
555
 
556
+ #: includes/class-freemius.php:21072
557
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
  msgstr "您的订阅已成功取消。您的%s计划许可证将在%s后过期。"
559
 
560
+ #: includes/class-freemius.php:21114
561
  msgid "You are already running the %s in a trial mode."
562
  msgstr "您已经在试用模式下运行%s。"
563
 
564
+ #: includes/class-freemius.php:21125
565
  msgid "You already utilized a trial before."
566
  msgstr "您以前已经试用过。"
567
 
568
+ #: includes/class-freemius.php:21139
569
  msgid "Plan %s do not exist, therefore, can't start a trial."
570
  msgstr "计划%s不存在,因此无法启动试用。"
571
 
572
+ #: includes/class-freemius.php:21150
573
  msgid "Plan %s does not support a trial period."
574
  msgstr "计划%s不支持试用期。"
575
 
576
+ #: includes/class-freemius.php:21161
577
  msgid "None of the %s's plans supports a trial period."
578
  msgstr "%s的任何计划都不支持试用期。"
579
 
580
+ #: includes/class-freemius.php:21211
581
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
  msgstr "看起来您不再处于试用模式,所以没有什么需要取消的:)"
583
 
584
+ #: includes/class-freemius.php:21247
585
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
  msgstr "看来关于您的试用取消发生了一些暂时的问题。请过几分钟再试一次。"
587
 
588
+ #: includes/class-freemius.php:21266
589
  msgid "Your %s free trial was successfully cancelled."
590
  msgstr "您的%s免费试用已成功取消。"
591
 
592
+ #: includes/class-freemius.php:21582
593
  msgid "Version %s was released."
594
  msgstr "版本%s已发布。"
595
 
596
+ #: includes/class-freemius.php:21582
597
  msgid "Please download %s."
598
  msgstr "请下载%s。"
599
 
600
+ #: includes/class-freemius.php:21589
601
  msgid "the latest %s version here"
602
  msgstr "这儿有最新的%s版本"
603
 
604
+ #: includes/class-freemius.php:21594
605
  msgid "New"
606
  msgstr "新的"
607
 
608
+ #: includes/class-freemius.php:21599
609
  msgid "Seems like you got the latest release."
610
  msgstr "好像你得到了最新的版本。"
611
 
612
+ #: includes/class-freemius.php:21600
613
  msgid "You are all good!"
614
  msgstr "你们都很好!"
615
 
616
+ #: includes/class-freemius.php:21903
617
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
  msgstr "验证邮件刚刚发送到%s。如果5分钟后找不到,请检查垃圾邮件框。"
619
 
620
+ #: includes/class-freemius.php:22043
621
  msgid "Site successfully opted in."
622
  msgstr "站点已成功选择加入。"
623
 
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
  msgid "Awesome"
626
  msgstr "真棒"
627
 
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
  msgstr "感谢您让我们跟踪一些使用数据,帮助我们改进%s。"
631
 
632
+ #: includes/class-freemius.php:22061
633
  msgid "Thank you!"
634
  msgstr "谢谢您!"
635
 
636
+ #: includes/class-freemius.php:22068
637
  msgid "We will no longer be sending any usage data of %s on %s to %s."
638
  msgstr "我们不会再将%s在%s上的任何使用数据发送到%s。"
639
 
640
+ #: includes/class-freemius.php:22226
641
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
642
  msgstr "请检查您的邮箱,您应该通过%s收到电子邮件以确认所有权更改。出于安全原因,您必须在15分钟以内确认更改。如果找不到电子邮件,请检查垃圾邮件文件夹。"
643
 
644
+ #: includes/class-freemius.php:22232
645
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
  msgstr "感谢您确认所有权变更。刚刚向%s发送了一封电子邮件以获得最终批准。"
647
 
648
+ #: includes/class-freemius.php:22237
649
  msgid "%s is the new owner of the account."
650
  msgstr "%s是帐户的新主人。"
651
 
652
+ #: includes/class-freemius.php:22239
653
  msgctxt "as congratulations"
654
  msgid "Congrats"
655
  msgstr "恭喜"
656
 
657
+ #: includes/class-freemius.php:22275
658
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
  msgstr "您的电子邮件已成功更新。你应该在几分钟内收到一封带有确认说明的电子邮件。"
660
 
661
+ #: includes/class-freemius.php:22287
662
  msgid "Please provide your full name."
663
  msgstr "请提供您的全名。"
664
 
665
+ #: includes/class-freemius.php:22292
666
  msgid "Your name was successfully updated."
667
  msgstr "您的姓名已成功更新。"
668
 
669
+ #: includes/class-freemius.php:22353
670
  msgid "You have successfully updated your %s."
671
  msgstr "您已成功更新%s。"
672
 
673
+ #: includes/class-freemius.php:22412
674
  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."
675
+ msgstr "这是您客户的网站吗?如果您希望从WP管理员那里隐藏敏感信息,例如电子邮件,许可证密钥,价格,账单地址和发票,则为%s"
676
 
677
+ #: includes/class-freemius.php:22415
678
  msgid "Click here"
679
+ msgstr "点击这里"
680
 
681
+ #: includes/class-freemius.php:22513
682
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
  msgstr "只是让您知道%s的加载项信息是从外部服务器提取的。"
684
 
685
+ #: includes/class-freemius.php:22514
686
  msgctxt "advance notice of something that will need attention."
687
  msgid "Heads up"
688
  msgstr "抬头"
689
 
690
+ #: includes/class-freemius.php:23090
691
  msgctxt "exclamation"
692
  msgid "Hey"
693
  msgstr "嘿"
694
 
695
+ #: includes/class-freemius.php:23090
696
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
  msgstr "到目前为止,您觉得%s怎么样?使用%d天免费试用来测试我们所有的%s高级功能。"
698
 
699
+ #: includes/class-freemius.php:23098
700
  msgid "No commitment for %s days - cancel anytime!"
701
  msgstr "%s天没有承诺-随时取消!"
702
 
703
+ #: includes/class-freemius.php:23099
704
  msgid "No credit card required"
705
  msgstr "不需要信用卡"
706
 
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
  msgctxt "call to action"
709
  msgid "Start free trial"
710
  msgstr "开始免费试用"
711
 
712
+ #: includes/class-freemius.php:23183
713
  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!"
714
  msgstr "嘿,你知道%s有会员计划吗?如果您喜欢%s,您可以成为我们的大使并赚取一些现金!"
715
 
716
+ #: includes/class-freemius.php:23192
717
  msgid "Learn more"
718
  msgstr "了解更多"
719
 
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
  #: templates/account/partials/addon.php:321
724
  msgid "Activate License"
725
  msgstr "激活许可证"
726
 
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
  #: templates/account/partials/site.php:271
730
  msgid "Change License"
731
  msgstr "更改许可证"
732
 
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
  msgid "Opt Out"
735
  msgstr "选择退出"
736
 
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
  #: templates/account/partials/site.php49,
739
  #: templates/account/partials/site.php:169
740
  msgid "Opt In"
741
  msgstr "选择加入"
742
 
743
+ #: includes/class-freemius.php:23738
744
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
  msgstr "已安装%1$s的付费版本。请激活它以开始使用%2$s功能。%3$s公司"
746
 
747
+ #: includes/class-freemius.php:23746
748
  msgid "Activate %s features"
749
  msgstr "激活%s功能"
750
 
751
+ #: includes/class-freemius.php:23759
752
  msgid "Please follow these steps to complete the upgrade"
753
  msgstr "请按照以下步骤完成升级"
754
 
755
+ #: includes/class-freemius.php:23763
756
  msgid "Download the latest %s version"
757
  msgstr "下载最新的%s版本"
758
 
759
+ #: includes/class-freemius.php:23767
760
  msgid "Upload and activate the downloaded version"
761
  msgstr "上传并激活下载的版本"
762
 
763
+ #: includes/class-freemius.php:23769
764
  msgid "How to upload and activate?"
765
  msgstr "如何上传和激活?"
766
 
767
+ #: includes/class-freemius.php:23903
768
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
  msgstr "%s单击此处%s可选择要激活许可证的站点。"
770
 
771
+ #: includes/class-freemius.php:24072
772
  msgid "Auto installation only works for opted-in users."
773
  msgstr "自动安装仅适用于已选择的用户。"
774
 
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
  msgid "Invalid module ID."
779
  msgstr "模块ID无效。"
780
 
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
  msgid "Premium version already active."
783
  msgstr "高级版本已激活。"
784
 
785
+ #: includes/class-freemius.php:24098
786
  msgid "You do not have a valid license to access the premium version."
787
  msgstr "您没有访问高级版本的有效许可证。"
788
 
789
+ #: includes/class-freemius.php:24105
790
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
  msgstr "插件是一个“服务软件”,这意味着它没有高级代码版本。"
792
 
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
  msgid "Premium add-on version already installed."
795
  msgstr "已安装高级加载项版本。"
796
 
797
+ #: includes/class-freemius.php:24473
798
  msgid "View paid features"
799
  msgstr "查看付费功能"
800
 
801
+ #: includes/class-freemius.php:24795
802
  msgid "Thank you so much for using %s and its add-ons!"
803
  msgstr "非常感谢您使用%s及其附加组件!"
804
 
805
+ #: includes/class-freemius.php:24796
806
  msgid "Thank you so much for using %s!"
807
  msgstr "非常感谢您使用%s!"
808
 
809
+ #: includes/class-freemius.php:24802
810
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
  msgstr "您已经选择加入我们的使用情况跟踪,这有助于我们不断改进%s。"
812
 
813
+ #: includes/class-freemius.php:24806
814
  msgid "Thank you so much for using our products!"
815
  msgstr "非常感谢您使用我们的产品!"
816
 
817
+ #: includes/class-freemius.php:24807
818
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
  msgstr "您已经选择了我们的使用情况跟踪,这有助于我们不断改进它们。"
820
 
821
+ #: includes/class-freemius.php:24826
822
  msgid "%s and its add-ons"
823
  msgstr "%s及其附加组件"
824
 
825
+ #: includes/class-freemius.php:24835
826
  msgid "Products"
827
  msgstr "产品"
828
 
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
  msgid "Yes"
831
  msgstr "是"
832
 
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
  msgid "send me security & feature updates, educational content and offers."
835
  msgstr "请给我发送安全和功能更新,教育内容和优惠。"
836
 
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
  msgid "No"
839
  msgstr "不"
840
 
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
  msgstr "不%s要%s向我发送安全和功能更新、教育内容和服务。"
844
 
845
+ #: includes/class-freemius.php:24856
846
  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 :-)"
847
  msgstr "由于新的%sEU通用数据保护条例(GDPR)%s的合规性要求,要求您再次明确表示同意,确认您已经加入:-)"
848
 
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
  msgstr "如果您希望我们与您联系以获取安全和功能更新、教育内容和偶尔的优惠,请告知我们:"
852
 
853
+ #: includes/class-freemius.php:25140
854
  msgid "License key is empty."
855
  msgstr "许可证密钥为空。"
856
 
883
  msgid "Important Upgrade Notice:"
884
  msgstr "重要升级通知:"
885
 
886
+ #: includes/class-fs-plugin-updater.php:1326
887
  msgid "Installing plugin: %s"
888
  msgstr "正在安装插件:%s"
889
 
890
+ #: includes/class-fs-plugin-updater.php:1367
891
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
  msgstr "无法连接到文件系统。请确认您的凭据。"
893
 
894
+ #: includes/class-fs-plugin-updater.php:1549
895
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
  msgstr "远程插件包不包含具有所需段塞的文件夹,重命名失败。"
897
 
913
  msgid "Install Free Version Update Now"
914
  msgstr "立即安装免费版本更新"
915
 
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
  msgid "Install Update Now"
918
  msgstr "立即安装更新"
919
 
933
  msgid "Download Latest Free Version"
934
  msgstr "下载最新免费版本"
935
 
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
  msgctxt "as download latest version"
939
  msgid "Download Latest"
945
  msgid "Activate this add-on"
946
  msgstr "激活此加载项"
947
 
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
  msgid "Activate Free Version"
950
  msgstr "激活免费版本"
951
 
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
  msgid "Activate"
955
  msgstr "激活"
1085
  msgid "Details"
1086
  msgstr "细节"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
  #: templates/account/partials/addon.php:36
1091
  msgctxt "product version"
1101
  msgid "Last Updated"
1102
  msgstr "上次更新时间"
1103
 
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
  msgctxt "x-ago"
1106
  msgid "%s ago"
1107
  msgstr "%s以前"
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "已安装最新的免费版本"
1214
 
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
  #: templates/account/partials/addon.php26,
1217
  #: templates/account/partials/site.php:311
1218
  msgid "Downgrading your plan"
1219
  msgstr "降低您的计划"
1220
 
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
  #: templates/account/partials/addon.php27,
1223
  #: templates/account/partials/site.php:312
1224
  msgid "Cancelling the subscription"
1226
 
1227
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
  #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
  #: templates/account/partials/site.php:314
1231
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
  msgstr "%1$s将立即停止所有未来的定期付款,并且您的%2$s计划许可证将在%3$s过期。"
1233
 
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
  #: templates/account/partials/addon.php30,
1236
  #: templates/account/partials/site.php:315
1237
  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."
1238
  msgstr "请注意,取消后,我们将无法获取更新/新订阅的过期定价。如果您选择在未来手动续订,在价格上涨后,将向您收取更新后的价格。"
1239
 
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
  #: templates/account/partials/addon.php:31
1242
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
  msgstr "取消试用将立即阻止使用所有高级功能。你确定吗?"
1244
 
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
  #: templates/account/partials/addon.php32,
1247
  #: templates/account/partials/site.php:316
1248
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
  msgstr "您仍然可以享受所有%s功能,但您将无法获得%s安全和功能更新以及支持服务。"
1250
 
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
  #: templates/account/partials/addon.php33,
1253
  #: templates/account/partials/site.php:317
1254
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
  msgstr "许可证过期后,您仍然可以使用免费版本,但您将无法使用%s功能。"
1256
 
1257
  #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
  #: templates/account/partials/activate-license-button.php31,
1260
  #: templates/account/partials/addon.php:35
1261
  msgid "Activate %s Plan"
1262
  msgstr "激活%s计划"
1263
 
1264
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
  #: templates/account/partials/site.php:291
1267
  msgid "Auto renews in %s"
1268
  msgstr "在%s中自动续订"
1269
 
1270
  #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
  #: templates/account/partials/site.php:293
1273
  msgid "Expires in %s"
1274
  msgstr "%s后过期"
1275
 
1276
+ #: templates/account.php:117
1277
  msgctxt "as synchronize license"
1278
  msgid "Sync License"
1279
  msgstr "同步许可证"
1280
 
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
  msgid "Cancel Trial"
1283
  msgstr "取消试用"
1284
 
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
  msgid "Change Plan"
1287
  msgstr "变更计划"
1288
 
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
  msgctxt "verb"
1291
  msgid "Upgrade"
1292
  msgstr "升级"
1293
 
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
  #: templates/account/partials/site.php:318
1296
  msgctxt "verb"
1297
  msgid "Downgrade"
1298
  msgstr "降级"
1299
 
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
  #: templates/plugin-info/features.php72,
1302
  #: templates/account/partials/addon.php47,
1303
  #: templates/account/partials/site.php:33
1304
  msgid "Free"
1305
  msgstr "免费的"
1306
 
1307
+ #: templates/account.php126, templates/debug.php371,
1308
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
  #: templates/account/partials/addon.php:49
1310
  msgctxt "as product pricing plan"
1311
  msgid "Plan"
1312
  msgstr "计划"
1313
 
1314
+ #: templates/account.php:127
1315
  msgid "Bundle Plan"
1316
  msgstr "捆绑计划"
1317
 
1318
+ #: templates/account.php:250
1319
  msgid "Free Trial"
1320
  msgstr "免费试用"
1321
 
1322
+ #: templates/account.php:261
1323
  msgid "Account Details"
1324
  msgstr "帐户详细信息"
1325
 
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
  msgid "Start Debug"
1328
  msgstr "开始调试"
1329
 
1330
+ #: templates/account.php:270
1331
  msgid "Stop Debug"
1332
  msgstr "停止调试"
1333
 
1334
+ #: templates/account.php:277
1335
  msgid "Billing & Invoices"
1336
  msgstr "账单和发票"
1337
 
1338
+ #: templates/account.php:288
1339
  msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1340
  msgstr "删除帐户将自动停用您的%s计划许可证,以便您可以在其他网站上使用。如果您想终止定期付款,点击“取消”按钮,并首先“降级”你的帐户。确实要继续删除吗?"
1341
 
1342
+ #: templates/account.php:290
1343
  msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1344
  msgstr "删除不是临时的。只有当您不再想使用此%s时才删除。确实要继续删除吗?"
1345
 
1346
+ #: templates/account.php:293
1347
  msgid "Delete Account"
1348
  msgstr "删除帐户"
1349
 
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
  #: templates/account/partials/deactivate-license-button.php:35
1352
  msgid "Deactivate License"
1353
  msgstr "停用许可证"
1354
 
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
  msgid "Are you sure you want to proceed?"
1357
  msgstr "确定要继续吗?"
1358
 
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
  msgid "Cancel Subscription"
1361
  msgstr "取消订阅"
1362
 
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
  msgctxt "as synchronize"
1365
  msgid "Sync"
1366
  msgstr "同步"
1367
 
1368
+ #: templates/account.php372, templates/debug.php:505
1369
  msgid "Name"
1370
  msgstr "姓名"
1371
 
1372
+ #: templates/account.php378, templates/debug.php:506
1373
  msgid "Email"
1374
  msgstr "电子邮件"
1375
 
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
  msgid "User ID"
1378
  msgstr "用户身份证"
1379
 
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
  #: templates/debug.php632, templates/account/payments.php35,
1384
  #: templates/debug/logger.php:21
1385
  msgid "ID"
1386
  msgstr "身份证件"
1387
 
1388
+ #: templates/account.php:410
1389
  msgid "Site ID"
1390
  msgstr "站点身份证"
1391
 
1392
+ #: templates/account.php:413
1393
  msgid "No ID"
1394
  msgstr "没有身份证"
1395
 
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
  #: templates/debug.php456, templates/debug.php508,
1398
  #: templates/account/partials/site.php:227
1399
  msgid "Public Key"
1400
  msgstr "公钥"
1401
 
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
  #: templates/debug.php509, templates/account/partials/site.php:239
1404
  msgid "Secret Key"
1405
  msgstr "密钥"
1406
 
1407
+ #: templates/account.php:427
1408
  msgctxt "as secret encryption key missing"
1409
  msgid "No Secret"
1410
  msgstr "没有秘密"
1411
 
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
  #: templates/account/partials/site.php:122
1414
  msgid "Trial"
1415
  msgstr "审判"
1416
 
1417
+ #: templates/account.php481, templates/debug.php561,
1418
  #: templates/account/partials/site.php:260
1419
  msgid "License Key"
1420
  msgstr "许可证密钥"
1421
 
1422
+ #: templates/account.php:512
1423
  msgid "Join the Beta program"
1424
  msgstr "加入测试计划"
1425
 
1426
+ #: templates/account.php:518
1427
  msgid "not verified"
1428
  msgstr "未验证"
1429
 
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
  msgid "Expired"
1432
  msgstr "期满"
1433
 
1434
+ #: templates/account.php:587
1435
  msgid "Premium version"
1436
  msgstr "高级版"
1437
 
1438
+ #: templates/account.php:589
1439
  msgid "Free version"
1440
  msgstr "免费版本"
1441
 
1442
+ #: templates/account.php:601
1443
  msgid "Verify Email"
1444
  msgstr "验证电子邮件"
1445
 
1446
+ #: templates/account.php:615
1447
  msgid "Download %s Version"
1448
  msgstr "下载%s版本"
1449
 
1450
+ #: templates/account.php:631
1451
  msgid "Download Paid Version"
1452
+ msgstr "下载付费版本"
1453
 
1454
+ #: templates/account.php649, templates/account.php892,
1455
  #: templates/account/partials/site.php248,
1456
  #: templates/account/partials/site.php:270
1457
  msgctxt "verb"
1458
  msgid "Show"
1459
  msgstr "显示"
1460
 
1461
+ #: templates/account.php:664
1462
  msgid "What is your %s?"
1463
  msgstr "你的%s是什么?"
1464
 
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
  msgctxt "verb"
1467
  msgid "Edit"
1468
  msgstr "编辑"
1469
 
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
  msgid "Change User"
1472
+ msgstr "更改用户"
1473
 
1474
+ #: templates/account.php:700
1475
  msgid "Sites"
1476
  msgstr "站点"
1477
 
1478
+ #: templates/account.php:713
1479
  msgid "Search by address"
1480
  msgstr "按地址搜索"
1481
 
1482
+ #: templates/account.php722, templates/debug.php:366
1483
  msgid "Address"
1484
  msgstr "地址"
1485
 
1486
+ #: templates/account.php:723
1487
  msgid "License"
1488
  msgstr "许可证"
1489
 
1490
+ #: templates/account.php:724
1491
  msgid "Plan"
1492
  msgstr "计划"
1493
 
1494
+ #: templates/account.php:757
1495
  msgctxt "as software license"
1496
  msgid "License"
1497
  msgstr "许可证"
1498
 
1499
+ #: templates/account.php:886
1500
  msgctxt "verb"
1501
  msgid "Hide"
1502
  msgstr "隐藏"
1503
 
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
  msgid "Processing"
1506
  msgstr "处理"
1507
 
1508
+ #: templates/account.php:911
1509
  msgid "Get updates for bleeding edge Beta versions of %s."
1510
  msgstr "获取%s的前沿测试版本的更新。"
1511
 
1512
+ #: templates/account.php:969
1513
  msgid "Cancelling %s"
1514
  msgstr "正在取消%s"
1515
 
1516
+ #: templates/account.php969, templates/account.php986,
1517
  #: templates/forms/subscription-cancellation.php27,
1518
  #: templates/forms/deactivation/form.php:133
1519
  msgid "trial"
1520
  msgstr "试用"
1521
 
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
  msgid "Cancelling %s..."
1524
  msgstr "正在取消%s。。。"
1525
 
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
  #: templates/forms/deactivation/form.php:134
1528
  msgid "subscription"
1529
  msgstr "订阅"
1530
 
1531
+ #: templates/account.php:1001
1532
  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?"
1533
  msgstr "停用许可证将阻止所有高级功能,但将在其他站点上激活许可证。确定要继续吗?"
1534
 
1535
+ #: templates/account.php:1075
1536
  msgid "Disabling white-label mode"
1537
+ msgstr "禁用白标模式"
1538
 
1539
+ #: templates/account.php:1076
1540
  msgid "Enabling white-label mode"
1541
+ msgstr "启用白标模式"
1542
 
1543
  #: templates/add-ons.php:38
1544
  msgid "View details"
1562
  msgid "Installed"
1563
  msgstr "安装"
1564
 
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
  #: templates/forms/resend-key.php:77
1567
  msgctxt "as close a window"
1568
  msgid "Dismiss"
1618
  msgid "Agree & Activate License"
1619
  msgstr "同意并激活许可证"
1620
 
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
 
1625
+ #: templates/connect.php:191
1626
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
1627
  msgstr "千万不要错过一个重要的更新-使用%4$s选择加入我们的安全和功能更新通知、教育内容、服务和非敏感诊断跟踪。"
1628
 
1629
+ #: templates/connect.php:192
1630
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
  msgstr "千万不要错过重要的更新-使用%4$s选择加入我们的安全和功能更新通知,以及非敏感诊断跟踪。"
1632
 
1633
+ #: templates/connect.php:198
1634
  msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1635
  msgstr "千万不要错过重要的更新-使用%14$s选择加入我们的安全和功能更新通知、教育内容、服务和非敏感诊断跟踪。如果您跳过这一步,没关系!%1$s仍然可以正常工作。"
1636
 
1637
+ #: templates/connect.php:199
1638
  msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
1639
  msgstr "千万不要错过重要的更新-选择加入我们的安全和功能更新通知,并使用%4$s进行非敏感诊断跟踪。如果您跳过这一步,没关系!%1$s仍然可以正常工作。"
1640
 
1641
+ #: templates/connect.php:233
1642
  msgid "We're excited to introduce the Freemius network-level integration."
1643
  msgstr "我们很高兴介绍Freemius网络级集成。"
1644
 
1645
+ #: templates/connect.php:236
1646
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
  msgstr "在更新过程中,我们检测到%d个网站仍在等待许可证激活。"
1648
 
1649
+ #: templates/connect.php:238
1650
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
  msgstr "如果要在这些站点上使用%s,请在下面输入许可证密钥,然后单击“激活”按钮。"
1652
 
1653
+ #: templates/connect.php:240
1654
  msgid "%s's paid features"
1655
  msgstr "%s的付费功能"
1656
 
1657
+ #: templates/connect.php:245
1658
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
  msgstr "或者,您可以暂时跳过它,稍后在%s的网络级帐户页中激活许可证。"
1660
 
1661
+ #: templates/connect.php:247
1662
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
  msgstr "在更新过程中,我们在网络中检测到%s个网站仍然需要您的注意。"
1664
 
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
  #: templates/forms/license-activation.php:49
1667
  msgid "License key"
1668
  msgstr "许可证密钥"
1669
 
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
  msgid "Can't find your license key?"
1672
  msgstr "找不到您的许可证密钥?"
1673
 
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
  #: templates/forms/deactivation/retry-skip.php:20
1676
  msgctxt "verb"
1677
  msgid "Skip"
1678
  msgstr "跳过"
1679
 
1680
+ #: templates/connect.php:321
1681
  msgid "Delegate to Site Admins"
1682
  msgstr "委派给站点管理员"
1683
 
1684
+ #: templates/connect.php:321
1685
  msgid "If you click it, this decision will be delegated to the sites administrators."
1686
  msgstr "如果单击它,此决定将委派给站点管理员。"
1687
 
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
  msgid "Your Profile Overview"
1694
  msgstr "您的个人资料概述"
1695
 
1696
+ #: templates/connect.php:363
1697
  msgid "Name and email address"
1698
  msgstr "姓名和电子邮件地址"
1699
 
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
  msgid "Your Site Overview"
1706
  msgstr "您的网站概述"
1707
 
1708
+ #: templates/connect.php:372
1709
  msgid "Site URL, WP version, PHP info"
1710
+ msgstr "网站网址,WP版本,PHP信息"
1711
 
1712
  #: templates/connect.php:379
1713
  msgid "Admin Notices"
1714
  msgstr "管理通知"
1715
 
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
  msgid "Updates, announcements, marketing, no spam"
1718
  msgstr "更新、公告、营销,无垃圾邮件"
1719
 
 
 
 
 
1720
  #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
 
1732
+ #: templates/connect.php:397
1733
  msgid "Newsletter"
1734
  msgstr "新闻稿"
1735
 
1736
+ #: templates/connect.php:405
1737
  msgid "Plugins & Themes"
1738
+ msgstr "插件和主题"
1739
 
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
  msgid "Title, slug, version, and is active"
1750
+ msgstr "标题、slug、版本,并且处于激活状态"
1751
 
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
 
1756
  #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
  msgid "What permissions are being granted?"
1766
  msgstr "正在授予哪些权限?"
1767
 
1768
+ #: templates/connect.php:457
1769
  msgid "Don't have a license key?"
1770
  msgstr "没有许可证密钥?"
1771
 
1772
+ #: templates/connect.php:460
1773
  msgid "Have a license key?"
1774
  msgstr "有许可证密钥吗?"
1775
 
1776
+ #: templates/connect.php:468
1777
  msgid "Privacy Policy"
1778
  msgstr "隐私政策"
1779
 
1780
+ #: templates/connect.php:470
1781
  msgid "License Agreement"
1782
  msgstr "许可协议"
1783
 
1784
+ #: templates/connect.php:470
1785
  msgid "Terms of Service"
1786
  msgstr "服务条款"
1787
 
1788
+ #: templates/connect.php:866
1789
  msgctxt "as in the process of sending an email"
1790
  msgid "Sending email"
1791
  msgstr "发送电子邮件"
1792
 
1793
+ #: templates/connect.php:867
1794
  msgctxt "as activating plugin"
1795
  msgid "Activating"
1796
  msgstr "正在激活"
2259
 
2260
  #: templates/forms/affiliation.php:144
2261
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2262
+ msgstr "喜欢%s吗?成为我们的大使并赚取现金 ;-)"
2263
 
2264
  #: templates/forms/affiliation.php:145
2265
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2393
  msgid "Update License"
2394
  msgstr "更新许可证"
2395
 
2396
+ #: templates/forms/license-activation.php:41
2397
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2398
+ msgstr "%1$s将定期向%2$s发送数据,以检查安全性和功能更新,并验证许可证的有效性。"
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
  msgid "Associate with the license owner's account."
2402
+ msgstr "与许可证所有者的帐户关联。"
2403
 
2404
  #: templates/forms/optout.php:30
2405
  msgctxt "verb"
2413
 
2414
  #: templates/forms/optout.php:34
2415
  msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+ msgstr "与授权引擎的连接已成功重新建立。现在可以通过WP 管理仪表板进行自动安全性和功能更新。"
2417
 
2418
  #: templates/forms/optout.php:36
2419
  msgid "Warning: Opting out will block automatic updates"
2420
+ msgstr "警告:选择退出会阻止自动更新"
2421
 
2422
  #: templates/forms/optout.php:37
2423
  msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+ msgstr "与授权引擎的持续连接对于接收付费产品的自动安全性和功能更新至关重要。要接收这些更新,诸如许可证密钥,%1$s版本和WordPress版本之类的数据会定期发送到服务器以检查更新。通过选择退出,您了解您的网站将不会从WP 管理仪表板内收到%2$s的自动更新。这可能会使您的网站面临风险,我们强烈建议保持此连接处于活动状态。如果您选择退出,则需要检查%1$s更新并手动安装。"
2425
 
2426
  #: templates/forms/optout.php:39
2427
  msgid "I'd like to keep automatic updates"
2428
+ msgstr "我想保持自动更新"
2429
 
2430
  #: templates/forms/optout.php:44
2431
  msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider lettin