Stop User Enumeration - Version 1.3.28

Version Description

Download this release

Release Info

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

Code changes from version 1.3.27 to 1.3.28

Files changed (31) hide show
  1. frontend/js/frontend.js +1 -1
  2. includes/vendor/freemius/wordpress-sdk/config.php +4 -1
  3. includes/vendor/freemius/wordpress-sdk/includes/class-freemius.php +107 -6
  4. includes/vendor/freemius/wordpress-sdk/includes/class-fs-plugin-updater.php +49 -6
  5. includes/vendor/freemius/wordpress-sdk/includes/fs-plugin-info-dialog.php +16 -10
  6. includes/vendor/freemius/wordpress-sdk/includes/i18n.php +2 -0
  7. includes/vendor/freemius/wordpress-sdk/includes/sdk/FreemiusWordPress.php +5 -1
  8. includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.mo +0 -0
  9. includes/vendor/freemius/wordpress-sdk/languages/freemius-cs_CZ.po +628 -521
  10. includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.mo +0 -0
  11. includes/vendor/freemius/wordpress-sdk/languages/freemius-da_DK.po +430 -398
  12. includes/vendor/freemius/wordpress-sdk/languages/freemius-en.mo +0 -0
  13. includes/vendor/freemius/wordpress-sdk/languages/freemius-en.po +390 -358
  14. includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.mo +0 -0
  15. includes/vendor/freemius/wordpress-sdk/languages/freemius-es_ES.po +455 -422
  16. includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.mo +0 -0
  17. includes/vendor/freemius/wordpress-sdk/languages/freemius-fr_FR.po +424 -392
  18. includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.mo +0 -0
  19. includes/vendor/freemius/wordpress-sdk/languages/freemius-he_IL.po +424 -392
  20. includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.mo +0 -0
  21. includes/vendor/freemius/wordpress-sdk/languages/freemius-hu_HU.po +424 -392
  22. includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.mo +0 -0
  23. includes/vendor/freemius/wordpress-sdk/languages/freemius-it_IT.po +437 -405
  24. includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.mo +0 -0
  25. includes/vendor/freemius/wordpress-sdk/languages/freemius-ja.po +424 -392
  26. includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.mo +0 -0
  27. includes/vendor/freemius/wordpress-sdk/languages/freemius-nl_NL.po +426 -394
  28. includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.mo +0 -0
  29. includes/vendor/freemius/wordpress-sdk/languages/freemius-ru_RU.po +424 -392
  30. includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.mo +0 -0
  31. includes/vendor/freemius/wordpress-sdk/languages/freemius-ta.po +352 -328
frontend/js/frontend.js CHANGED
@@ -4,7 +4,7 @@ Remove numbers from comment author
4
 
5
  document.addEventListener('DOMContentLoaded', function (event) {
6
  var commentForm = document.getElementById("commentform");
7
- if ( null === commentForm ) {
8
  return;
9
  }
10
  commentForm.querySelector("#author").addEventListener(
4
 
5
  document.addEventListener('DOMContentLoaded', function (event) {
6
  var commentForm = document.getElementById("commentform");
7
+ if (null === commentForm) {
8
  return;
9
  }
10
  commentForm.querySelector("#author").addEventListener(
includes/vendor/freemius/wordpress-sdk/config.php CHANGED
@@ -385,4 +385,7 @@
385
 
386
  if ( ! defined( 'WP_FS__DEMO_MODE' ) ) {
387
  define( 'WP_FS__DEMO_MODE', false );
388
- }
 
 
 
385
 
386
  if ( ! defined( 'WP_FS__DEMO_MODE' ) ) {
387
  define( 'WP_FS__DEMO_MODE', false );
388
+ }
389
+ if ( ! defined( 'FS_SDK__SSLVERIFY' ) ) {
390
+ define( 'FS_SDK__SSLVERIFY', false );
391
+ }
includes/vendor/freemius/wordpress-sdk/includes/class-freemius.php CHANGED
@@ -1674,6 +1674,7 @@
1674
  $this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
1675
  $this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
1676
  $this->add_ajax_action( 'set_data_debug_mode', array( &$this, '_set_data_debug_mode' ) );
 
1677
 
1678
  if ( $this->_is_network_active && fs_is_network_admin() ) {
1679
  $this->add_ajax_action( 'network_activate', array( &$this, '_network_activate_ajax_action' ) );
@@ -7736,7 +7737,10 @@
7736
  * @author Leo Fajardo (@leorw)
7737
  * @since 1.2.2
7738
  */
7739
- if ( is_plugin_active( $other_version_basename ) ) {
 
 
 
7740
  deactivate_plugins( $other_version_basename );
7741
  }
7742
  }
@@ -9021,12 +9025,25 @@
9021
  'is_uninstalled' => false,
9022
  );
9023
 
9024
- $plugins_update_data[] = $new_plugin;
9025
  $network_plugins_cache->plugins[ $basename ] = $new_plugin;
9026
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9027
  if ( isset( $site_active_plugins[ $basename ] ) ) {
9028
  $site_active_plugins_cache->plugins[ $basename ] = $new_plugin;
9029
- $site_active_plugins_cache->plugins[ $basename ]['is_active'] = true;
9030
  }
9031
  }
9032
  }
@@ -13130,6 +13147,61 @@
13130
  }
13131
  }
13132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13133
  /**
13134
  * @author Leo Fajardo (@leorw)
13135
  * @since 2.3.0
@@ -20679,6 +20751,13 @@
20679
  }
20680
 
20681
  if ( 'none' !== $plan_change ) {
 
 
 
 
 
 
 
20682
  $this->do_action( 'after_license_change', $plan_change, $this->get_plan() );
20683
  }
20684
  }
@@ -22293,6 +22372,26 @@
22293
 
22294
  $this->_handle_account_edits();
22295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22296
  $this->do_action( 'account_page_load_before_departure' );
22297
  }
22298
 
@@ -23453,10 +23552,12 @@
23453
  * @since 1.0.3
23454
  */
23455
  function _redirect_on_activation_hook() {
23456
- $url = $this->get_after_plugin_activation_redirect_url();
 
23457
 
23458
- if ( is_string( $url ) ) {
23459
- fs_redirect( $url );
 
23460
  }
23461
  }
23462
 
1674
  $this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) );
1675
  $this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) );
1676
  $this->add_ajax_action( 'set_data_debug_mode', array( &$this, '_set_data_debug_mode' ) );
1677
+ $this->add_ajax_action( 'toggle_whitelabel_mode', array( &$this, '_toggle_whitelabel_mode_ajax_handler' ) );
1678
 
1679
  if ( $this->_is_network_active && fs_is_network_admin() ) {
1680
  $this->add_ajax_action( 'network_activate', array( &$this, '_network_activate_ajax_action' ) );
7737
  * @author Leo Fajardo (@leorw)
7738
  * @since 1.2.2
7739
  */
7740
+ if (
7741
+ is_plugin_active( $other_version_basename ) &&
7742
+ $this->apply_filters( 'deactivate_on_activation', true )
7743
+ ) {
7744
  deactivate_plugins( $other_version_basename );
7745
  }
7746
  }
9025
  'is_uninstalled' => false,
9026
  );
9027
 
 
9028
  $network_plugins_cache->plugins[ $basename ] = $new_plugin;
9029
 
9030
+ $is_site_level_active = (
9031
+ isset( $site_active_plugins[ $basename ] ) &&
9032
+ $site_active_plugins[ $basename ]['is_active']
9033
+ );
9034
+
9035
+ /**
9036
+ * If not network active, set the activity status based on the site-level plugin status.
9037
+ */
9038
+ if ( ! $new_plugin['is_active'] ) {
9039
+ $new_plugin['is_active'] = $is_site_level_active;
9040
+ }
9041
+
9042
+ $plugins_update_data[] = $new_plugin;
9043
+
9044
  if ( isset( $site_active_plugins[ $basename ] ) ) {
9045
  $site_active_plugins_cache->plugins[ $basename ] = $new_plugin;
9046
+ $site_active_plugins_cache->plugins[ $basename ]['is_active'] = $is_site_level_active;
9047
  }
9048
  }
9049
  }
13147
  }
13148
  }
13149
 
13150
+ /**
13151
+ * @author Edgar Melkonyan
13152
+ * @since 2.4.1
13153
+ *
13154
+ * @throws Freemius_Exception
13155
+ */
13156
+ function _toggle_whitelabel_mode_ajax_handler() {
13157
+ $this->_logger->entrance();
13158
+
13159
+ $this->check_ajax_referer( 'toggle_whitelabel_mode' );
13160
+
13161
+ if ( ! $this->is_user_admin() ) {
13162
+ // Only for admins.
13163
+ self::shoot_ajax_failure();
13164
+ }
13165
+
13166
+ $license = $this->get_api_user_scope()->call(
13167
+ "/licenses/{$this->_site->license_id}.json",
13168
+ 'put',
13169
+ array( 'is_whitelabeled' => ! $this->_license->is_whitelabeled )
13170
+ );
13171
+
13172
+ if ( ! $this->is_api_result_entity( $license ) ) {
13173
+ self::shoot_ajax_failure(
13174
+ FS_Api::is_api_error_object( $license ) ?
13175
+ $license->error->message :
13176
+ fs_text_inline( "An unknown error has occurred while trying to toggle the license's white-label mode.", 'unknown-error-occurred', $this->get_slug() )
13177
+ );
13178
+ }
13179
+
13180
+ $this->_license->is_whitelabeled = $license->is_whitelabeled;
13181
+ $this->_store_licenses();
13182
+
13183
+ $this->_sync_license();
13184
+
13185
+ if ( ! $license->is_whitelabeled ) {
13186
+ $this->_admin_notices->remove_sticky( 'license_whitelabeled' );
13187
+ } else {
13188
+ $this->_admin_notices->add_sticky(
13189
+ sprintf(
13190
+ $this->get_text_inline(
13191
+ '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.',
13192
+ 'license_whitelabeled'
13193
+ ),
13194
+ "<strong>{$this->get_plugin_title()}</strong>",
13195
+ sprintf( '<a href="https://users.freemius.com" target="_blank">%s</a>', $this->get_text_inline( 'User Dashboard', 'user-dashboard' ) ),
13196
+ sprintf( '<a href="#" class="fs-toggle-whitelabel-mode">%s</a>', $this->get_text_inline( 'revert it now', 'revert-it-now' ) )
13197
+ ),
13198
+ 'license_whitelabeled'
13199
+ );
13200
+ }
13201
+
13202
+ self::shoot_ajax_response( array( 'success' => true ) );
13203
+ }
13204
+
13205
  /**
13206
  * @author Leo Fajardo (@leorw)
13207
  * @since 2.3.0
20751
  }
20752
 
20753
  if ( 'none' !== $plan_change ) {
20754
+ if (
20755
+ ! is_object( $this->_license ) ||
20756
+ ! $this->_license->is_whitelabeled
20757
+ ) {
20758
+ $this->_admin_notices->remove_sticky( 'license_whitelabeled' );
20759
+ }
20760
+
20761
  $this->do_action( 'after_license_change', $plan_change, $this->get_plan() );
20762
  }
20763
  }
22372
 
22373
  $this->_handle_account_edits();
22374
 
22375
+ if (
22376
+ is_object( $this->_license ) &&
22377
+ $this->_license->user_id == $this->_user->id &&
22378
+ ! $this->is_whitelabeled( true )
22379
+ ) {
22380
+ $this->_admin_notices->add(
22381
+ sprintf(
22382
+ $this->get_text_inline( "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.", 'license_not_whitelabeled' ),
22383
+ sprintf(
22384
+ '<a href="#" class="fs-toggle-whitelabel-mode">%s</a>',
22385
+ $this->get_text_inline( 'Click here', 'click-here' )
22386
+ )
22387
+ ),
22388
+ '',
22389
+ 'success',
22390
+ false,
22391
+ 'license_not_whitelabeled'
22392
+ );
22393
+ }
22394
+
22395
  $this->do_action( 'account_page_load_before_departure' );
22396
  }
22397
 
23552
  * @since 1.0.3
23553
  */
23554
  function _redirect_on_activation_hook() {
23555
+ if ( $this->apply_filters( 'redirect_on_activation', true ) ) {
23556
+ $url = $this->get_after_plugin_activation_redirect_url();
23557
 
23558
+ if ( is_string( $url ) ) {
23559
+ fs_redirect( $url );
23560
+ }
23561
  }
23562
  }
23563
 
includes/vendor/freemius/wordpress-sdk/includes/class-fs-plugin-updater.php CHANGED
@@ -542,23 +542,66 @@
542
  }
543
  }
544
 
 
 
 
545
  if ( is_object( $this->_update_details ) ) {
 
 
 
 
546
  if ( ! isset( $transient_data->response ) ) {
547
  $transient_data->response = array();
548
  }
549
 
550
  // Add plugin to transient data.
551
- $transient_data->response[ $this->_fs->premium_plugin_basename() ] = $this->_fs->is_plugin() ?
552
  $this->_update_details :
553
  (array) $this->_update_details;
554
- } else if ( isset( $transient_data->response ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  /**
556
- * Ensure that there's no update data for the plugin to prevent upgrading the premium version to the latest free version.
557
  *
558
- * @author Leo Fajardo (@leorw)
559
- * @since 2.3.0
560
  */
561
- unset( $transient_data->response[ $this->_fs->premium_plugin_basename() ] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562
  }
563
 
564
  $slug = $this->_fs->get_slug();
542
  }
543
  }
544
 
545
+ // Alias.
546
+ $basename = $this->_fs->premium_plugin_basename();
547
+
548
  if ( is_object( $this->_update_details ) ) {
549
+ if ( isset( $transient_data->no_update ) ) {
550
+ unset( $transient_data->no_update[ $basename ] );
551
+ }
552
+
553
  if ( ! isset( $transient_data->response ) ) {
554
  $transient_data->response = array();
555
  }
556
 
557
  // Add plugin to transient data.
558
+ $transient_data->response[ $basename ] = $this->_fs->is_plugin() ?
559
  $this->_update_details :
560
  (array) $this->_update_details;
561
+ } else {
562
+ if ( isset( $transient_data->response ) ) {
563
+ /**
564
+ * Ensure that there's no update data for the plugin to prevent upgrading the premium version to the latest free version.
565
+ *
566
+ * @author Leo Fajardo (@leorw)
567
+ * @since 2.3.0
568
+ */
569
+ unset( $transient_data->response[ $basename ] );
570
+ }
571
+
572
+ if ( ! isset( $transient_data->no_update ) ) {
573
+ $transient_data->no_update = array();
574
+ }
575
+
576
  /**
577
+ * Add product to no_update transient data to properly integrate with WP 5.5 auto-updates UI.
578
  *
579
+ * @since 2.4.1
580
+ * @link https://make.wordpress.org/core/2020/07/30/recommended-usage-of-the-updates-api-to-support-the-auto-updates-ui-for-plugins-and-themes-in-wordpress-5-5/
581
  */
582
+ $transient_data->no_update[ $basename ] = $this->_fs->is_plugin() ?
583
+ (object) array(
584
+ 'id' => $basename,
585
+ 'slug' => $this->_fs->get_slug(),
586
+ 'plugin' => $basename,
587
+ 'new_version' => $this->_fs->get_plugin_version(),
588
+ 'url' => '',
589
+ 'package' => '',
590
+ 'icons' => array(),
591
+ 'banners' => array(),
592
+ 'banners_rtl' => array(),
593
+ 'tested' => '',
594
+ 'requires_php' => '',
595
+ 'compatibility' => new stdClass(),
596
+ ) :
597
+ array(
598
+ 'theme' => $basename,
599
+ 'new_version' => $this->_fs->get_plugin_version(),
600
+ 'url' => '',
601
+ 'package' => '',
602
+ 'requires' => '',
603
+ 'requires_php' => '',
604
+ );
605
  }
606
 
607
  $slug = $this->_fs->get_slug();
includes/vendor/freemius/wordpress-sdk/includes/fs-plugin-info-dialog.php CHANGED
@@ -260,14 +260,20 @@
260
  if ( $has_valid_blog_id ) {
261
  restore_current_blog();
262
  }
 
263
 
264
- if ( is_object( $fs_addon ) ) {
265
- $data->has_purchased_license = $fs_addon->has_active_valid_license();
266
- } else {
267
- $account_addons = $this->_fs->get_account_addons();
268
- if ( ! empty( $account_addons ) && in_array( $selected_addon->id, $account_addons ) ) {
269
- $data->has_purchased_license = true;
270
- }
 
 
 
 
 
271
  }
272
  }
273
 
@@ -577,7 +583,7 @@
577
 
578
  $has_installed_version = ( 'install' !== $this->status['status'] );
579
 
580
- if ( ! $api->has_paid_plan ) {
581
  /**
582
  * Free-only add-on.
583
  *
@@ -1203,7 +1209,7 @@
1203
 
1204
  $(document).ready(function () {
1205
  var $plan = $('.plugin-information-pricing .fs-plan[data-plan-id=<?php echo $plan->id ?>]');
1206
- $plan.find('input[type=radio]').live('click', function () {
1207
  _updateCtaUrl(
1208
  $plan.attr('data-plan-id'),
1209
  $(this).val(),
@@ -1635,4 +1641,4 @@
1635
  iframe_footer();
1636
  exit;
1637
  }
1638
- }
260
  if ( $has_valid_blog_id ) {
261
  restore_current_blog();
262
  }
263
+ }
264
 
265
+ /**
266
+ * Check if there's a purchased license in case the add-on can only be installed/downloaded as part of a purchased bundle.
267
+ *
268
+ * @author Leo Fajardo (@leorw)
269
+ * @since 2.4.1
270
+ */
271
+ if ( is_object( $fs_addon ) ) {
272
+ $data->has_purchased_license = $fs_addon->has_active_valid_license();
273
+ } else {
274
+ $account_addons = $this->_fs->get_account_addons();
275
+ if ( ! empty( $account_addons ) && in_array( $selected_addon->id, $account_addons ) ) {
276
+ $data->has_purchased_license = true;
277
  }
278
  }
279
 
583
 
584
  $has_installed_version = ( 'install' !== $this->status['status'] );
585
 
586
+ if ( ! $api->has_paid_plan && ! $api->has_purchased_license ) {
587
  /**
588
  * Free-only add-on.
589
  *
1209
 
1210
  $(document).ready(function () {
1211
  var $plan = $('.plugin-information-pricing .fs-plan[data-plan-id=<?php echo $plan->id ?>]');
1212
+ $plan.find('input[type=radio]').on('click', function () {
1213
  _updateCtaUrl(
1214
  $plan.attr('data-plan-id'),
1215
  $(this).val(),
1641
  iframe_footer();
1642
  exit;
1643
  }
1644
+ }
includes/vendor/freemius/wordpress-sdk/includes/i18n.php CHANGED
@@ -98,6 +98,8 @@
98
  'error' => _fs_text( 'Error' ),
99
  'failed-finding-main-path' => _fs_text( 'Freemius SDK couldn\'t find the plugin\'s main file. Please contact sdk@freemius.com with the current error.' ),
100
  'learn-more' => _fs_text( 'Learn more' ),
 
 
101
 
102
  #region Affiliation
103
  'affiliation' => _fs_text( 'Affiliation' ),
98
  'error' => _fs_text( 'Error' ),
99
  'failed-finding-main-path' => _fs_text( 'Freemius SDK couldn\'t find the plugin\'s main file. Please contact sdk@freemius.com with the current error.' ),
100
  'learn-more' => _fs_text( 'Learn more' ),
101
+ 'license_not_whitelabeled' => _fs_text( "Is this your client's site? %s if you wish to hide sensitive info like your billing address and invoices from the WP Admin."),
102
+ 'license_whitelabeled' => _fs_text( 'Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your billing address and 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.'),
103
 
104
  #region Affiliation
105
  'affiliation' => _fs_text( 'Affiliation' ),
includes/vendor/freemius/wordpress-sdk/includes/sdk/FreemiusWordPress.php CHANGED
@@ -59,6 +59,10 @@
59
  }
60
  }
61
 
 
 
 
 
62
  $curl_version = FS_SDK__HAS_CURL ?
63
  curl_version() :
64
  array( 'version' => '7.37' );
@@ -401,7 +405,7 @@
401
  }
402
 
403
  if ( 'https' === substr( strtolower( $request_url ), 0, 5 ) ) {
404
- $pWPRemoteArgs['sslverify'] = false;
405
  }
406
 
407
  if ( false !== $pBeforeExecutionFunction &&
59
  }
60
  }
61
 
62
+ if ( ! defined( 'FS_SDK__SSLVERIFY' ) ) {
63
+ define( 'FS_SDK__SSLVERIFY', false );
64
+ }
65
+
66
  $curl_version = FS_SDK__HAS_CURL ?
67
  curl_version() :
68
  array( 'version' => '7.37' );
405
  }
406
 
407
  if ( 'https' === substr( strtolower( $request_url ), 0, 5 ) ) {
408
+ $pWPRemoteArgs['sslverify'] = FS_SDK__SSLVERIFY;
409
  }
410
 
411
  if ( false !== $pBeforeExecutionFunction &&
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,13 +1,13 @@
1
- # Copyright (C) 2019 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
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: 2019-10-07 15:33+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,802 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1880, templates/account.php:840
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:1887
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "Chcete pokračovat v aktualizaci?"
31
 
32
- #: includes/class-freemius.php:2095
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 nemohlo najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com."
35
 
36
- #: includes/class-freemius.php:2097
37
  msgid "Error"
38
  msgstr "Chyba"
39
 
40
- #: includes/class-freemius.php:2491
41
  msgid "I found a better %s"
42
  msgstr "Našel jsem lepší %s"
43
 
44
- #: includes/class-freemius.php:2493
45
  msgid "What's the %s's name?"
46
  msgstr "Jak se %s jmenuje?"
47
 
48
- #: includes/class-freemius.php:2499
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:2501
53
  msgid "Deactivation"
54
  msgstr "Deaktivace"
55
 
56
- #: includes/class-freemius.php:2502
57
  msgid "Theme Switch"
58
  msgstr "Změna šablony"
59
 
60
- #: includes/class-freemius.php2511, templates/forms/resend-key.php:24
 
61
  msgid "Other"
62
  msgstr "Jiné"
63
 
64
- #: includes/class-freemius.php:2519
65
  msgid "I no longer need the %s"
66
  msgstr "Již nepotřebuji %s"
67
 
68
- #: includes/class-freemius.php:2526
69
  msgid "I only needed the %s for a short period"
70
  msgstr "Potřeboval %s jsem jen krátkou dobu"
71
 
72
- #: includes/class-freemius.php:2532
73
  msgid "The %s broke my site"
74
  msgstr "%s rozbil můj web"
75
 
76
- #: includes/class-freemius.php:2539
77
  msgid "The %s suddenly stopped working"
78
  msgstr "%s náhle přestal pracovat"
79
 
80
- #: includes/class-freemius.php:2549
81
  msgid "I can't pay for it anymore"
82
  msgstr "Už si to nemohu dovolit"
83
 
84
- #: includes/class-freemius.php:2551
85
  msgid "What price would you feel comfortable paying?"
86
  msgstr "Jakou cenu byste byli ochotni platit?"
87
 
88
- #: includes/class-freemius.php:2557
89
  msgid "I don't like to share my information with you"
90
  msgstr "Nechci s vámi sdílet své informace"
91
 
92
- #: includes/class-freemius.php:2578
93
  msgid "The %s didn't work"
94
  msgstr "%s nefungoval"
95
 
96
- #: includes/class-freemius.php:2588
97
  msgid "I couldn't understand how to make it work"
98
  msgstr "Nedokázal jsem jej zprovoznit"
99
 
100
- #: includes/class-freemius.php:2596
101
  msgid "The %s is great, but I need specific feature that you don't support"
102
  msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná"
103
 
104
- #: includes/class-freemius.php:2598
105
  msgid "What feature?"
106
  msgstr "Jaká funkce?"
107
 
108
- #: includes/class-freemius.php:2602
109
  msgid "The %s is not working"
110
  msgstr "%s nefunguje"
111
 
112
- #: includes/class-freemius.php:2604
113
  msgid "Kindly share what didn't work so we can fix it for future users..."
114
  msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..."
115
 
116
- #: includes/class-freemius.php:2608
117
  msgid "It's not what I was looking for"
118
  msgstr "Není to to, co jsem hledal"
119
 
120
- #: includes/class-freemius.php:2610
121
  msgid "What you've been looking for?"
122
  msgstr "Co jste hledali?"
123
 
124
- #: includes/class-freemius.php:2614
125
  msgid "The %s didn't work as expected"
126
  msgstr "%s nefungoval podle očekávání"
127
 
128
- #: includes/class-freemius.php:2616
129
  msgid "What did you expect?"
130
  msgstr "Co jste očekávali?"
131
 
132
- #: includes/class-freemius.php3471, templates/debug.php:20
133
  msgid "Freemius Debug"
134
  msgstr "Freemius Debug"
135
 
136
- #: includes/class-freemius.php:4223
137
  msgid "I don't know what is cURL or how to install it, help me!"
138
  msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!"
139
 
140
- #: includes/class-freemius.php:4225
141
  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."
142
  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."
143
 
144
- #: includes/class-freemius.php:4232
145
  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."
146
  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."
147
 
148
- #: includes/class-freemius.php:4337
149
  msgid "Yes - do your thing"
150
  msgstr "Ano - udělejte, co potřebujete"
151
 
152
- #: includes/class-freemius.php:4342
153
  msgid "No - just deactivate"
154
  msgstr "Ne - jen deaktivovat"
155
 
156
- #: includes/class-freemius.php4387, includes/class-freemius.php4881,
157
- #: includes/class-freemius.php6032, includes/class-freemius.php13153,
158
- #: includes/class-freemius.php16558, includes/class-freemius.php16646,
159
- #: includes/class-freemius.php16812, includes/class-freemius.php19040,
160
- #: includes/class-freemius.php19381, includes/class-freemius.php19391,
161
- #: includes/class-freemius.php20051, includes/class-freemius.php20924,
162
- #: includes/class-freemius.php21039, includes/class-freemius.php21183,
163
- #: templates/add-ons.php:57
164
  msgctxt "exclamation"
165
  msgid "Oops"
166
  msgstr "Jejda"
167
 
168
- #: includes/class-freemius.php:4456
169
  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."
170
  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."
171
 
172
- #: includes/class-freemius.php:4878
173
  msgctxt "addonX cannot run without pluginY"
174
  msgid "%s cannot run without %s."
175
  msgstr "%s nelze spustit bez %s."
176
 
177
- #: includes/class-freemius.php:4879
178
  msgctxt "addonX cannot run..."
179
  msgid "%s cannot run without the plugin."
180
  msgstr "%s nelze spustit bez tohoto pluginu."
181
 
182
- #: includes/class-freemius.php5052, includes/class-freemius.php5077,
183
- #: includes/class-freemius.php:20122
184
  msgid "Unexpected API error. Please contact the %s's author with the following error."
185
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
186
 
187
- #: includes/class-freemius.php:5720
188
  msgid "Premium %s version was successfully activated."
189
  msgstr "Premium %s version was successfully activated."
190
 
191
- #: includes/class-freemius.php5732, includes/class-freemius.php:7599
192
  msgctxt ""
193
  msgid "W00t"
194
  msgstr "W00t"
195
 
196
- #: includes/class-freemius.php:5747
197
  msgid "You have a %s license."
198
  msgstr "Máte licenci „%s“."
199
 
200
- #: includes/class-freemius.php5751, includes/class-freemius.php15975,
201
- #: includes/class-freemius.php15986, includes/class-freemius.php19292,
202
- #: includes/class-freemius.php19642, includes/class-freemius.php19711,
203
- #: includes/class-freemius.php:19876
204
  msgctxt "interjection expressing joy or exuberance"
205
  msgid "Yee-haw"
206
  msgstr "Yee-haw"
207
 
208
- #: includes/class-freemius.php:6015
209
  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."
210
  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."
211
 
212
- #: includes/class-freemius.php:6019
213
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
214
  msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci."
215
 
216
- #: includes/class-freemius.php6028, templates/add-ons.php186,
217
  #: templates/account/partials/addon.php:381
218
  msgid "More information about %s"
219
  msgstr "Více informací o %s"
220
 
221
- #: includes/class-freemius.php:6029
222
  msgid "Purchase License"
223
  msgstr "Koupit licenci"
224
 
225
- #: includes/class-freemius.php6964, templates/connect.php:163
226
  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."
227
  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."
228
 
229
- #: includes/class-freemius.php:6968
230
  msgid "start the trial"
231
  msgstr "spustit zkušební verzi"
232
 
233
- #: includes/class-freemius.php6969, templates/connect.php:167
234
  msgid "complete the install"
235
  msgstr "dokončit installaci"
236
 
237
- #: includes/class-freemius.php:7081
238
  msgid "You are just one step away - %s"
239
  msgstr "Jste jen na krok od - %s"
240
 
241
- #: includes/class-freemius.php:7084
242
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
243
  msgid "Complete \"%s\" Activation Now"
244
- msgstr "Dokončit aktivaci pluginu „%s“"
245
 
246
- #: includes/class-freemius.php:7162
247
  msgid "We made a few tweaks to the %s, %s"
248
  msgstr "Udělali jsme několik vylepšení %s, %s"
249
 
250
- #: includes/class-freemius.php:7166
251
  msgid "Opt in to make \"%s\" better!"
252
  msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!"
253
 
254
- #: includes/class-freemius.php:7598
255
  msgid "The upgrade of %s was successfully completed."
256
  msgstr "Aktualizace %s byla úspěšně dokončena."
257
 
258
- #: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038,
259
- #: includes/class-fs-plugin-updater.php1233,
260
- #: includes/class-fs-plugin-updater.php1240,
261
  #: templates/auto-installation.php:32
262
  msgid "Add-On"
263
  msgstr "Doplněk"
264
 
265
- #: includes/class-freemius.php9804, templates/account.php335,
266
- #: templates/account.php343, templates/debug.php360, templates/debug.php:551
267
  msgid "Plugin"
268
  msgstr "Plugin"
269
 
270
- #: includes/class-freemius.php9805, templates/account.php336,
271
- #: templates/account.php344, templates/debug.php360, templates/debug.php551,
272
  #: templates/forms/deactivation/form.php:71
273
  msgid "Theme"
274
  msgstr "Šablona"
275
 
276
- #: includes/class-freemius.php:12596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  msgid "An unknown error has occurred while trying to set the user's beta mode."
278
  msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě."
279
 
280
- #: includes/class-freemius.php:13020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
  msgid "Invalid site details collection."
282
  msgstr "Invalid site details collection."
283
 
284
- #: includes/class-freemius.php:13140
285
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
286
  msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?"
287
 
288
- #: includes/class-freemius.php:13142
289
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
290
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
291
 
292
- #: includes/class-freemius.php:13416
293
  msgid "Account is pending activation."
294
  msgstr "Účet čeká na aktivaci."
295
 
296
- #: includes/class-freemius.php13528,
297
  #: templates/forms/premium-versions-upgrade-handler.php:47
298
  msgid "Buy a license now"
299
  msgstr "Koupit licenci nyní"
300
 
301
- #: includes/class-freemius.php13540,
302
  #: templates/forms/premium-versions-upgrade-handler.php:46
303
  msgid "Renew your license now"
304
  msgstr "Obnovte svou licenci teď"
305
 
306
- #: includes/class-freemius.php:13544
307
  msgid "%s to access version %s security & feature updates, and support."
308
  msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
309
 
310
- #: includes/class-freemius.php:15957
311
  msgid "%s activation was successfully completed."
312
  msgstr "Aktivace %s byla úspěšně dokončena."
313
 
314
- #: includes/class-freemius.php:15971
315
  msgid "Your account was successfully activated with the %s plan."
316
  msgstr "Účet byl úspěšně aktivován s plánem %s."
317
 
318
- #: includes/class-freemius.php15982, includes/class-freemius.php:19707
319
  msgid "Your trial has been successfully started."
320
  msgstr "Vaše zkušebí verze byla úspěšně spuštěna."
321
 
322
- #: includes/class-freemius.php16556, includes/class-freemius.php16644,
323
- #: includes/class-freemius.php:16810
324
  msgid "Couldn't activate %s."
325
  msgstr "Nelze aktivovat %s."
326
 
327
- #: includes/class-freemius.php16557, includes/class-freemius.php16645,
328
- #: includes/class-freemius.php:16811
329
  msgid "Please contact us with the following message:"
330
  msgstr "Kontaktujte nás prosím s následující zprávou:"
331
 
332
- #: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162
333
  msgid "An unknown error has occurred."
334
  msgstr "Došlo k neznámé chybě."
335
 
336
- #: includes/class-freemius.php17168, includes/class-freemius.php:22082
337
  msgid "Upgrade"
338
  msgstr "Upgrade"
339
 
340
- #: includes/class-freemius.php:17174
341
  msgid "Start Trial"
342
  msgstr "Začít Trial"
343
 
344
- #: includes/class-freemius.php:17176
345
  msgid "Pricing"
346
  msgstr "Ceník"
347
 
348
- #: includes/class-freemius.php17256, includes/class-freemius.php:17258
349
  msgid "Affiliation"
350
  msgstr "Affiliation"
351
 
352
- #: includes/class-freemius.php17286, includes/class-freemius.php17288,
353
- #: templates/account.php183, templates/debug.php:326
354
  msgid "Account"
355
  msgstr "Účet"
356
 
357
- #: includes/class-freemius.php17302, includes/class-freemius.php17304,
358
  #: includes/customizer/class-fs-customizer-support-section.php:60
359
  msgid "Contact Us"
360
  msgstr "Support"
361
 
362
- #: includes/class-freemius.php17315, includes/class-freemius.php17317,
363
- #: includes/class-freemius.php22096, templates/account.php111,
364
  #: templates/account/partials/addon.php:44
365
  msgid "Add-Ons"
366
  msgstr "Doplňky"
367
 
368
- #: includes/class-freemius.php:17351
369
  msgctxt "ASCII arrow left icon"
370
  msgid "&#x2190;"
371
  msgstr "&#x2190;"
372
 
373
- #: includes/class-freemius.php:17351
374
  msgctxt "ASCII arrow right icon"
375
  msgid "&#x27a4;"
376
  msgstr "&#x27a4;"
377
 
378
- #: includes/class-freemius.php17353, templates/pricing.php:103
379
  msgctxt "noun"
380
  msgid "Pricing"
381
  msgstr "Ceník"
382
 
383
- #: includes/class-freemius.php17566,
384
  #: includes/customizer/class-fs-customizer-support-section.php:67
385
  msgid "Support Forum"
386
  msgstr "Fórum podpory"
387
 
388
- #: includes/class-freemius.php:18536
389
  msgid "Your email has been successfully verified - you are AWESOME!"
390
  msgstr "Your email has been successfully verified - you are AWESOME!"
391
 
392
- #: includes/class-freemius.php:18537
393
  msgctxt "a positive response"
394
  msgid "Right on"
395
  msgstr "Right on"
396
 
397
- #: includes/class-freemius.php:19041
398
  msgid "seems like the key you entered doesn't match our records."
399
  msgstr "seems like the key you entered doesn't match our records."
400
 
401
- #: includes/class-freemius.php:19065
402
  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."
403
  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."
404
 
405
- #: includes/class-freemius.php:19283
406
  msgid "Your %s Add-on plan was successfully upgraded."
407
  msgstr "Your %s Add-on plan was successfully upgraded."
408
 
409
- #: includes/class-freemius.php:19285
410
  msgid "%s Add-on was successfully purchased."
411
  msgstr "Rozšíření %s bylo úspěšně zakoupeno."
412
 
413
- #: includes/class-freemius.php:19288
414
  msgid "Download the latest version"
415
  msgstr "Stáhnout nejnovější verzi"
416
 
417
- #: includes/class-freemius.php:19374
418
  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"
419
  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"
420
 
421
- #: includes/class-freemius.php19380, includes/class-freemius.php19390,
422
- #: includes/class-freemius.php19835, includes/class-freemius.php:19924
423
  msgid "Error received from the server:"
424
  msgstr "Chyba přijatá ze serveru:"
425
 
426
- #: includes/class-freemius.php:19390
427
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
428
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
429
 
430
- #: includes/class-freemius.php19604, includes/class-freemius.php19840,
431
- #: includes/class-freemius.php19895, includes/class-freemius.php:19998
432
  msgctxt ""
433
  msgid "Hmm"
434
  msgstr "Hmm"
435
 
436
- #: includes/class-freemius.php:19617
437
  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."
438
  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."
439
 
440
- #: includes/class-freemius.php19618, templates/account.php113,
441
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
442
  msgctxt "trial period"
443
  msgid "Trial"
444
  msgstr "Trial"
445
 
446
- #: includes/class-freemius.php:19623
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.php19627, includes/class-freemius.php:19686
451
  msgid "Please contact us here"
452
  msgstr "Kontaktujte nás prosím zde"
453
 
454
- #: includes/class-freemius.php:19638
455
  msgid "Your plan was successfully activated."
456
  msgstr "Vaše licence byla úspěšně aktivována."
457
 
458
- #: includes/class-freemius.php:19639
459
  msgid "Your plan was successfully upgraded."
460
  msgstr "Váš plán byl úspěšně aktualizován."
461
 
462
- #: includes/class-freemius.php:19656
463
  msgid "Your plan was successfully changed to %s."
464
  msgstr "Váše předplatné bylo úspěšně změněn na %s."
465
 
466
- #: includes/class-freemius.php:19672
467
  msgid "Your license has expired. You can still continue using the free %s forever."
468
  msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení."
469
 
470
- #: includes/class-freemius.php:19674
471
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
  msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení."
473
 
474
- #: includes/class-freemius.php:19682
475
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
476
  msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu."
477
 
478
- #: includes/class-freemius.php:19695
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 "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."
481
 
482
- #: includes/class-freemius.php:19721
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:19723
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:19831
491
  msgid "It looks like the license could not be activated."
492
  msgstr "Licenci se nepodařilo aktivovat."
493
 
494
- #: includes/class-freemius.php:19873
495
  msgid "Your license was successfully activated."
496
  msgstr "Vaše licence byla úspěšně aktivována."
497
 
498
- #: includes/class-freemius.php:19899
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:19923
503
  msgid "It looks like the license deactivation failed."
504
  msgstr "Deaktivace licence pravděpodobně selhala."
505
 
506
- #: includes/class-freemius.php:19951
 
 
 
 
507
  msgid "Your license was successfully deactivated, you are back to the %s plan."
508
  msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s."
509
 
510
- #: includes/class-freemius.php:19952
511
  msgid "O.K"
512
  msgstr "OK"
513
 
514
- #: includes/class-freemius.php:20005
515
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
516
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
517
 
518
- #: includes/class-freemius.php:20014
519
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
520
  msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s."
521
 
522
- #: includes/class-freemius.php:20056
523
  msgid "You are already running the %s in a trial mode."
524
  msgstr "You are already running the %s in a trial mode."
525
 
526
- #: includes/class-freemius.php:20067
527
  msgid "You already utilized a trial before."
528
  msgstr "O zkušební licenci nelze žádat dvakrát."
529
 
530
- #: includes/class-freemius.php:20081
531
  msgid "Plan %s do not exist, therefore, can't start a trial."
532
  msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi."
533
 
534
- #: includes/class-freemius.php:20092
535
  msgid "Plan %s does not support a trial period."
536
  msgstr "Plán %s nepodporuje zkušební období."
537
 
538
- #: includes/class-freemius.php:20103
539
  msgid "None of the %s's plans supports a trial period."
540
  msgstr "None of the %s's plans supports a trial period."
541
 
542
- #: includes/class-freemius.php:20153
543
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
544
  msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)"
545
 
546
- #: includes/class-freemius.php:20189
547
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
548
  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."
549
 
550
- #: includes/class-freemius.php:20208
551
  msgid "Your %s free trial was successfully cancelled."
552
  msgstr "Your %s free trial was successfully cancelled."
553
 
554
- #: includes/class-freemius.php:20524
555
  msgid "Version %s was released."
556
  msgstr "Byla vydána verze %s."
557
 
558
- #: includes/class-freemius.php:20524
559
  msgid "Please download %s."
560
  msgstr "Stáhněte si prosím %s."
561
 
562
- #: includes/class-freemius.php:20531
563
  msgid "the latest %s version here"
564
  msgstr "nejnovější %s verze zde"
565
 
566
- #: includes/class-freemius.php:20536
567
  msgid "New"
568
  msgstr "Nový"
569
 
570
- #: includes/class-freemius.php:20541
571
  msgid "Seems like you got the latest release."
572
  msgstr "Pravděpodobně máte nejnovější verzi."
573
 
574
- #: includes/class-freemius.php:20542
575
  msgid "You are all good!"
576
  msgstr "You are all good!"
577
 
578
- #: includes/class-freemius.php:20812
579
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
580
  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."
581
 
582
- #: includes/class-freemius.php:20951
583
  msgid "Site successfully opted in."
584
  msgstr "Site successfully opted in."
585
 
586
- #: includes/class-freemius.php20952, includes/class-freemius.php:21792
587
  msgid "Awesome"
588
  msgstr "Úžasný"
589
 
590
- #: includes/class-freemius.php20968, templates/forms/optout.php:32
591
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
592
  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í."
593
 
594
- #: includes/class-freemius.php:20969
595
  msgid "Thank you!"
596
  msgstr "Děkujeme!"
597
 
598
- #: includes/class-freemius.php:20976
599
  msgid "We will no longer be sending any usage data of %s on %s to %s."
600
  msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s."
601
 
602
- #: includes/class-freemius.php:21105
603
  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."
604
  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."
605
 
606
- #: includes/class-freemius.php:21111
607
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
608
  msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení."
609
 
610
- #: includes/class-freemius.php:21116
611
  msgid "%s is the new owner of the account."
612
  msgstr "%s je nový vlastník účtu."
613
 
614
- #: includes/class-freemius.php:21118
615
  msgctxt "as congratulations"
616
  msgid "Congrats"
617
  msgstr "Gratulujeme"
618
 
619
- #: includes/class-freemius.php:21138
620
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
621
- msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován."
622
-
623
- #: includes/class-freemius.php:21139
624
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
625
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
626
-
627
- #: includes/class-freemius.php:21146
628
- msgid "Change Ownership"
629
- msgstr "Změnit vlastnictví"
630
-
631
- #: includes/class-freemius.php:21154
632
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
633
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
634
 
635
- #: includes/class-freemius.php:21166
636
  msgid "Please provide your full name."
637
- msgstr "Zadejte prosím své celé jméno."
638
 
639
- #: includes/class-freemius.php:21171
640
  msgid "Your name was successfully updated."
641
  msgstr "Vaše jméno bylo úspěšně aktualizováno."
642
 
643
- #: includes/class-freemius.php:21232
644
  msgid "You have successfully updated your %s."
645
  msgstr "Úspěšně jste aktualizovali %s."
646
 
647
- #: includes/class-freemius.php:21372
 
 
 
 
 
 
 
 
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:21373
652
  msgctxt "advance notice of something that will need attention."
653
  msgid "Heads up"
654
  msgstr "Heads up"
655
 
656
- #: includes/class-freemius.php:21832
657
  msgctxt "exclamation"
658
  msgid "Hey"
659
  msgstr "Dobrý den"
660
 
661
- #: includes/class-freemius.php:21832
662
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
663
  msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma."
664
 
665
- #: includes/class-freemius.php:21840
666
  msgid "No commitment for %s days - cancel anytime!"
667
  msgstr "No commitment for %s days - cancel anytime!"
668
 
669
- #: includes/class-freemius.php:21841
670
  msgid "No credit card required"
671
  msgstr "Kreditní karta není vyžadována"
672
 
673
- #: includes/class-freemius.php21848, 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:21925
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:21934
683
  msgid "Learn more"
684
  msgstr "Přečtěte si více"
685
 
686
- #: includes/class-freemius.php22120, templates/account.php499,
687
- #: templates/account.php624, templates/connect.php171,
688
- #: templates/connect.php421, templates/forms/license-activation.php27,
689
  #: templates/account/partials/addon.php:321
690
  msgid "Activate License"
691
  msgstr "Aktivovat licenci"
692
 
693
- #: includes/class-freemius.php22121, templates/account.php571,
694
- #: templates/account.php623, templates/account/partials/addon.php322,
695
  #: templates/account/partials/site.php:271
696
  msgid "Change License"
697
  msgstr "Změnit licenci"
698
 
699
- #: includes/class-freemius.php22217, templates/account/partials/site.php:169
700
  msgid "Opt Out"
701
  msgstr "Odhlásit se"
702
 
703
- #: includes/class-freemius.php22219, includes/class-freemius.php22225,
704
  #: templates/account/partials/site.php49,
705
  #: templates/account/partials/site.php:169
706
  msgid "Opt In"
707
  msgstr "Zúčastnit se"
708
 
709
- #: includes/class-freemius.php:22453
710
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
711
  msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s"
712
 
713
- #: includes/class-freemius.php:22461
714
  msgid "Activate %s features"
715
  msgstr "Aktivovat %s funkce"
716
 
717
- #: includes/class-freemius.php:22474
718
  msgid "Please follow these steps to complete the upgrade"
719
  msgstr "Dokončete upgrade provedením následujících kroků"
720
 
721
- #: includes/class-freemius.php:22478
722
  msgid "Download the latest %s version"
723
  msgstr "Stáhnout nejnovější verzi %s"
724
 
725
- #: includes/class-freemius.php:22482
726
  msgid "Upload and activate the downloaded version"
727
  msgstr "Nahrát a aktivovat stáhnutou verzi"
728
 
729
- #: includes/class-freemius.php:22484
730
  msgid "How to upload and activate?"
731
  msgstr "Jak nahrát a aktivovat?"
732
 
733
- #: includes/class-freemius.php:22618
734
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
735
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
736
 
737
- #: includes/class-freemius.php:22779
738
  msgid "Auto installation only works for opted-in users."
739
  msgstr "Auto installation only works for opted-in users."
740
 
741
- #: includes/class-freemius.php22789, includes/class-freemius.php22822,
742
- #: includes/class-fs-plugin-updater.php1212,
743
- #: includes/class-fs-plugin-updater.php:1226
744
  msgid "Invalid module ID."
745
  msgstr "Invalid module ID."
746
 
747
- #: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248
748
  msgid "Premium version already active."
749
  msgstr "Prémiová verze je již aktivní."
750
 
751
- #: includes/class-freemius.php:22805
752
  msgid "You do not have a valid license to access the premium version."
753
  msgstr "You do not have a valid license to access the premium version."
754
 
755
- #: includes/class-freemius.php:22812
756
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
757
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
758
 
759
- #: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247
760
  msgid "Premium add-on version already installed."
761
  msgstr "Premium add-on version already installed."
762
 
763
- #: includes/class-freemius.php:23180
764
  msgid "View paid features"
765
  msgstr "Zobrazit placené funkce"
766
 
767
- #: includes/class-freemius.php:23502
768
  msgid "Thank you so much for using %s and its add-ons!"
769
  msgstr "Thank you so much for using %s and its add-ons!"
770
 
771
- #: includes/class-freemius.php:23503
772
  msgid "Thank you so much for using %s!"
773
  msgstr "Thank you so much for using %s!"
774
 
775
- #: includes/class-freemius.php:23509
776
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
777
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
778
 
779
- #: includes/class-freemius.php:23513
780
  msgid "Thank you so much for using our products!"
781
  msgstr "Thank you so much for using our products!"
782
 
783
- #: includes/class-freemius.php:23514
784
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
785
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
786
 
787
- #: includes/class-freemius.php:23533
788
  msgid "%s and its add-ons"
789
  msgstr "%s a jeho doplňky"
790
 
791
- #: includes/class-freemius.php:23542
792
  msgid "Products"
793
  msgstr "Produkty"
794
 
795
- #: includes/class-freemius.php23549, templates/connect.php:272
796
  msgid "Yes"
797
  msgstr "Ano"
798
 
799
- #: includes/class-freemius.php23550, templates/connect.php:273
800
  msgid "send me security & feature updates, educational content and offers."
801
  msgstr "send me security & feature updates, educational content and offers."
802
 
803
- #: includes/class-freemius.php23551, templates/connect.php:278
804
  msgid "No"
805
  msgstr "Ne"
806
 
807
- #: includes/class-freemius.php23553, templates/connect.php:280
808
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
809
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
810
 
811
- #: includes/class-freemius.php:23563
812
  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 :-)"
813
  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 :-)"
814
 
815
- #: includes/class-freemius.php23565, templates/connect.php:287
816
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
817
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
818
 
819
- #: includes/class-freemius.php:23847
820
  msgid "License key is empty."
821
  msgstr "Licenční klíč je prázdný."
822
 
@@ -830,361 +863,361 @@ msgstr "Obnovit licenci"
830
  msgid "Buy license"
831
  msgstr "Koupit licenci"
832
 
833
- #: includes/class-fs-plugin-updater.php321,
834
- #: includes/class-fs-plugin-updater.php:354
835
  msgid "There is a %s of %s available."
836
  msgstr "There is a %s of %s available."
837
 
838
- #: includes/class-fs-plugin-updater.php323,
839
- #: includes/class-fs-plugin-updater.php:359
840
  msgid "new Beta version"
841
  msgstr "nová Beta verze"
842
 
843
- #: includes/class-fs-plugin-updater.php324,
844
- #: includes/class-fs-plugin-updater.php:360
845
  msgid "new version"
846
  msgstr "nová verze"
847
 
848
- #: includes/class-fs-plugin-updater.php:383
849
  msgid "Important Upgrade Notice:"
850
  msgstr "Important Upgrade Notice:"
851
 
852
- #: includes/class-fs-plugin-updater.php:1277
853
  msgid "Installing plugin: %s"
854
  msgstr "Instaluji plugin: %s"
855
 
856
- #: includes/class-fs-plugin-updater.php:1318
857
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
858
  msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření."
859
 
860
- #: includes/class-fs-plugin-updater.php:1500
861
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
862
  msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje."
863
 
864
- #: includes/fs-plugin-info-dialog.php:535
865
  msgid "Purchase More"
866
  msgstr "Zakoupit další"
867
 
868
- #: includes/fs-plugin-info-dialog.php536,
869
  #: templates/account/partials/addon.php:385
870
  msgctxt "verb"
871
  msgid "Purchase"
872
  msgstr "Zakoupit"
873
 
874
- #: includes/fs-plugin-info-dialog.php:540
875
  msgid "Start my free %s"
876
  msgstr "Začít můj bezplatný %s"
877
 
878
- #: includes/fs-plugin-info-dialog.php:738
879
  msgid "Install Free Version Update Now"
880
  msgstr "Install Free Version Update Now"
881
 
882
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:560
883
  msgid "Install Update Now"
884
  msgstr "Nainstalovat aktualizaci"
885
 
886
- #: includes/fs-plugin-info-dialog.php:748
887
  msgid "Install Free Version Now"
888
  msgstr "Nainstalovat verzi zdarma"
889
 
890
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
891
  #: templates/auto-installation.php111,
892
  #: templates/account/partials/addon.php365,
893
  #: templates/account/partials/addon.php:418
894
  msgid "Install Now"
895
  msgstr "Instalovat"
896
 
897
- #: includes/fs-plugin-info-dialog.php:765
898
  msgctxt "as download latest version"
899
  msgid "Download Latest Free Version"
900
  msgstr "Stáhněte si nejnovější bezplatnou verzi"
901
 
902
- #: includes/fs-plugin-info-dialog.php766, templates/account.php91,
903
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
904
  msgctxt "as download latest version"
905
  msgid "Download Latest"
906
  msgstr "Stáhněte si nejnovější"
907
 
908
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
909
  #: templates/account/partials/addon.php356,
910
  #: templates/account/partials/addon.php:412
911
  msgid "Activate this add-on"
912
  msgstr "Aktivovat toto rozšíření"
913
 
914
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:418
915
  msgid "Activate Free Version"
916
  msgstr "Aktivovat bezplatnou verzi"
917
 
918
- #: includes/fs-plugin-info-dialog.php784, templates/account.php115,
919
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
920
  msgid "Activate"
921
  msgstr "Aktivovat"
922
 
923
- #: includes/fs-plugin-info-dialog.php:994
924
  msgctxt "Plugin installer section title"
925
  msgid "Description"
926
  msgstr "Popis"
927
 
928
- #: includes/fs-plugin-info-dialog.php:995
929
  msgctxt "Plugin installer section title"
930
  msgid "Installation"
931
  msgstr "Instalace"
932
 
933
- #: includes/fs-plugin-info-dialog.php:996
934
  msgctxt "Plugin installer section title"
935
  msgid "FAQ"
936
  msgstr "FAQ"
937
 
938
- #: includes/fs-plugin-info-dialog.php997,
939
  #: templates/plugin-info/description.php:55
940
  msgid "Screenshots"
941
  msgstr "Snímky obrazovky"
942
 
943
- #: includes/fs-plugin-info-dialog.php:998
944
  msgctxt "Plugin installer section title"
945
  msgid "Changelog"
946
  msgstr "Historie změn"
947
 
948
- #: includes/fs-plugin-info-dialog.php:999
949
  msgctxt "Plugin installer section title"
950
  msgid "Reviews"
951
  msgstr "Vaše hodnocení"
952
 
953
- #: includes/fs-plugin-info-dialog.php:1000
954
  msgctxt "Plugin installer section title"
955
  msgid "Other Notes"
956
  msgstr "Other Notes"
957
 
958
- #: includes/fs-plugin-info-dialog.php:1015
959
  msgctxt "Plugin installer section title"
960
  msgid "Features & Pricing"
961
  msgstr "Vlastnosti a ceník"
962
 
963
- #: includes/fs-plugin-info-dialog.php:1025
964
  msgid "Plugin Install"
965
  msgstr "Instalace pluginu"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1097
968
  msgctxt "e.g. Professional Plan"
969
  msgid "%s Plan"
970
  msgstr "%s plán"
971
 
972
- #: includes/fs-plugin-info-dialog.php:1123
973
  msgctxt "e.g. the best product"
974
  msgid "Best"
975
  msgstr "Nejlepší"
976
 
977
- #: includes/fs-plugin-info-dialog.php1129,
978
- #: includes/fs-plugin-info-dialog.php:1149
979
  msgctxt "as every month"
980
  msgid "Monthly"
981
  msgstr "Měsíčně"
982
 
983
- #: includes/fs-plugin-info-dialog.php:1132
984
  msgctxt "as once a year"
985
  msgid "Annual"
986
  msgstr "Ročně"
987
 
988
- #: includes/fs-plugin-info-dialog.php:1135
989
  msgid "Lifetime"
990
  msgstr "Doživotní"
991
 
992
- #: includes/fs-plugin-info-dialog.php1149,
993
- #: includes/fs-plugin-info-dialog.php1151,
994
- #: includes/fs-plugin-info-dialog.php:1153
995
  msgctxt "e.g. billed monthly"
996
  msgid "Billed %s"
997
  msgstr "Účtováno %s"
998
 
999
- #: includes/fs-plugin-info-dialog.php:1151
1000
  msgctxt "as once a year"
1001
  msgid "Annually"
1002
  msgstr "Ročně"
1003
 
1004
- #: includes/fs-plugin-info-dialog.php:1153
1005
  msgctxt "as once a year"
1006
  msgid "Once"
1007
  msgstr "Jedenkrát"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:1159
1010
  msgid "Single Site License"
1011
  msgstr "Single Site License"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1161
1014
  msgid "Unlimited Licenses"
1015
  msgstr "Unlimited Licenses"
1016
 
1017
- #: includes/fs-plugin-info-dialog.php:1163
1018
  msgid "Up to %s Sites"
1019
  msgstr "Až pro %s webů"
1020
 
1021
- #: includes/fs-plugin-info-dialog.php1173,
1022
  #: templates/plugin-info/features.php:82
1023
  msgctxt "as monthly period"
1024
  msgid "mo"
1025
  msgstr "po"
1026
 
1027
- #: includes/fs-plugin-info-dialog.php1180,
1028
  #: templates/plugin-info/features.php:80
1029
  msgctxt "as annual period"
1030
  msgid "year"
1031
  msgstr "rok"
1032
 
1033
- #: includes/fs-plugin-info-dialog.php:1234
1034
  msgctxt "noun"
1035
  msgid "Price"
1036
  msgstr "Cena"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php:1282
1039
  msgid "Save %s"
1040
  msgstr "Uložit %s"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1292
1043
  msgid "No commitment for %s - cancel anytime"
1044
  msgstr "No commitment for %s - cancel anytime"
1045
 
1046
- #: includes/fs-plugin-info-dialog.php:1295
1047
  msgid "After your free %s, pay as little as %s"
1048
  msgstr "Po bezplatné %s platit jen v %s"
1049
 
1050
- #: includes/fs-plugin-info-dialog.php:1306
1051
  msgid "Details"
1052
  msgstr "Detaily"
1053
 
1054
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php102,
1055
- #: templates/debug.php203, templates/debug.php240, templates/debug.php457,
1056
  #: templates/account/partials/addon.php:36
1057
  msgctxt "product version"
1058
  msgid "Version"
1059
  msgstr "Verze"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:1317
1062
  msgctxt "as the plugin author"
1063
  msgid "Author"
1064
  msgstr "Autor"
1065
 
1066
- #: includes/fs-plugin-info-dialog.php:1324
1067
  msgid "Last Updated"
1068
  msgstr "Poslední aktualizace"
1069
 
1070
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:468
1071
  msgctxt "x-ago"
1072
  msgid "%s ago"
1073
  msgstr "Před %s"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1338
1076
  msgid "Requires WordPress Version"
1077
  msgstr "Vyžaduje verzi WordPress"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php:1339
1080
  msgid "%s or higher"
1081
  msgstr "%s nebo vyšší"
1082
 
1083
- #: includes/fs-plugin-info-dialog.php:1346
1084
  msgid "Compatible up to"
1085
  msgstr "Kompatibilní až po"
1086
 
1087
- #: includes/fs-plugin-info-dialog.php:1354
1088
  msgid "Downloaded"
1089
  msgstr "Staženo"
1090
 
1091
- #: includes/fs-plugin-info-dialog.php:1358
1092
  msgid "%s time"
1093
  msgstr "%s krát"
1094
 
1095
- #: includes/fs-plugin-info-dialog.php:1360
1096
  msgid "%s times"
1097
  msgstr "%s krát"
1098
 
1099
- #: includes/fs-plugin-info-dialog.php:1370
1100
  msgid "WordPress.org Plugin Page"
1101
  msgstr "Název pluginu na WordPress.org"
1102
 
1103
- #: includes/fs-plugin-info-dialog.php:1378
1104
  msgid "Plugin Homepage"
1105
  msgstr "Hlavní stránka pluginu"
1106
 
1107
- #: includes/fs-plugin-info-dialog.php1386,
1108
- #: includes/fs-plugin-info-dialog.php:1468
1109
  msgid "Donate to this plugin"
1110
  msgstr "Přispějte na tento plugin"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1393
1113
  msgid "Average Rating"
1114
  msgstr "Průměrné hodnocení"
1115
 
1116
- #: includes/fs-plugin-info-dialog.php:1400
1117
  msgid "based on %s"
1118
  msgstr "založeno na %s"
1119
 
1120
- #: includes/fs-plugin-info-dialog.php:1404
1121
  msgid "%s rating"
1122
  msgstr "%s hodnocení"
1123
 
1124
- #: includes/fs-plugin-info-dialog.php:1406
1125
  msgid "%s ratings"
1126
  msgstr "%s hodnocení"
1127
 
1128
- #: includes/fs-plugin-info-dialog.php:1421
1129
  msgid "%s star"
1130
  msgstr "%s hvězda"
1131
 
1132
- #: includes/fs-plugin-info-dialog.php:1423
1133
  msgid "%s stars"
1134
  msgstr "%s hvězd"
1135
 
1136
- #: includes/fs-plugin-info-dialog.php:1434
1137
  msgid "Click to see reviews that provided a rating of %s"
1138
  msgstr "Click to see reviews that provided a rating of %s"
1139
 
1140
- #: includes/fs-plugin-info-dialog.php:1447
1141
  msgid "Contributors"
1142
  msgstr "Přispěvatelé"
1143
 
1144
- #: includes/fs-plugin-info-dialog.php1476,
1145
- #: includes/fs-plugin-info-dialog.php:1478
1146
  msgid "Warning"
1147
  msgstr "Varování"
1148
 
1149
- #: includes/fs-plugin-info-dialog.php:1476
1150
  msgid "This plugin has not been tested with your current version of WordPress."
1151
  msgstr "This plugin has not been tested with your current version of WordPress."
1152
 
1153
- #: includes/fs-plugin-info-dialog.php:1478
1154
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1155
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1156
 
1157
- #: includes/fs-plugin-info-dialog.php:1497
1158
  msgid "Paid add-on must be deployed to Freemius."
1159
  msgstr "Placený doplněk musí být nasazen na Freemius."
1160
 
1161
- #: includes/fs-plugin-info-dialog.php:1498
1162
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1163
  msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius."
1164
 
1165
- #: includes/fs-plugin-info-dialog.php:1519
1166
  msgid "Newer Version (%s) Installed"
1167
  msgstr "Novější verze (%s) nainstalována"
1168
 
1169
- #: includes/fs-plugin-info-dialog.php:1520
1170
  msgid "Newer Free Version (%s) Installed"
1171
  msgstr "Novější verze zdarma (%s) nainstalována"
1172
 
1173
- #: includes/fs-plugin-info-dialog.php:1527
1174
  msgid "Latest Version Installed"
1175
  msgstr "Nainstalována nejnovější verze"
1176
 
1177
- #: includes/fs-plugin-info-dialog.php:1528
1178
  msgid "Latest Free Version Installed"
1179
  msgstr "Nainstalována nejnovější verze zdarma"
1180
 
1181
- #: templates/account.php92, templates/forms/subscription-cancellation.php96,
1182
  #: templates/account/partials/addon.php26,
1183
  #: templates/account/partials/site.php:311
1184
  msgid "Downgrading your plan"
1185
  msgstr "Snižuji vaše předplatné"
1186
 
1187
- #: templates/account.php93, templates/forms/subscription-cancellation.php97,
1188
  #: templates/account/partials/addon.php27,
1189
  #: templates/account/partials/site.php:312
1190
  msgid "Cancelling the subscription"
@@ -1192,304 +1225,320 @@ msgstr "Ruším předplatné"
1192
 
1193
  #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1194
  #. subscription'
1195
- #: templates/account.php95, templates/forms/subscription-cancellation.php99,
1196
  #: templates/account/partials/site.php:314
1197
  msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1198
  msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
1199
 
1200
- #: templates/account.php96, templates/forms/subscription-cancellation.php100,
1201
  #: templates/account/partials/addon.php30,
1202
  #: templates/account/partials/site.php:315
1203
  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."
1204
  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."
1205
 
1206
- #: templates/account.php97, templates/forms/subscription-cancellation.php106,
1207
  #: templates/account/partials/addon.php:31
1208
  msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1209
  msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?"
1210
 
1211
- #: templates/account.php98, templates/forms/subscription-cancellation.php101,
1212
  #: templates/account/partials/addon.php32,
1213
  #: templates/account/partials/site.php:316
1214
  msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1215
  msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1216
 
1217
- #: templates/account.php99, templates/forms/subscription-cancellation.php102,
1218
  #: templates/account/partials/addon.php33,
1219
  #: templates/account/partials/site.php:317
1220
  msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1221
  msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1222
 
1223
  #. translators: %s: Plan title (e.g. "Professional")
1224
- #: templates/account.php101,
1225
  #: templates/account/partials/activate-license-button.php31,
1226
  #: templates/account/partials/addon.php:35
1227
  msgid "Activate %s Plan"
1228
  msgstr "Aktivovat %s plán"
1229
 
1230
  #. translators: %s: Time period (e.g. Auto renews in "2 months")
1231
- #: templates/account.php104, templates/account/partials/addon.php38,
1232
  #: templates/account/partials/site.php:291
1233
  msgid "Auto renews in %s"
1234
  msgstr "Automaticky se obnoví za %s"
1235
 
1236
  #. translators: %s: Time period (e.g. Expires in "2 months")
1237
- #: templates/account.php106, templates/account/partials/addon.php40,
1238
  #: templates/account/partials/site.php:293
1239
  msgid "Expires in %s"
1240
  msgstr "Vyprší za %s"
1241
 
1242
- #: templates/account.php:107
1243
  msgctxt "as synchronize license"
1244
  msgid "Sync License"
1245
  msgstr "Synchronizovat licence"
1246
 
1247
- #: templates/account.php108, templates/account/partials/addon.php:41
1248
  msgid "Cancel Trial"
1249
  msgstr "Zrušit zkušební verzi"
1250
 
1251
- #: templates/account.php109, templates/account/partials/addon.php:42
1252
  msgid "Change Plan"
1253
  msgstr "Změnit plán"
1254
 
1255
- #: templates/account.php110, templates/account/partials/addon.php:43
1256
  msgctxt "verb"
1257
  msgid "Upgrade"
1258
  msgstr "Vylepšit"
1259
 
1260
- #: templates/account.php112, templates/account/partials/addon.php45,
1261
  #: templates/account/partials/site.php:318
1262
  msgctxt "verb"
1263
  msgid "Downgrade"
1264
  msgstr "Přejít na nižší verzi"
1265
 
1266
- #: templates/account.php114, templates/add-ons.php246,
1267
  #: templates/plugin-info/features.php72,
1268
  #: templates/account/partials/addon.php47,
1269
  #: templates/account/partials/site.php:33
1270
  msgid "Free"
1271
  msgstr "Zdarma"
1272
 
1273
- #: templates/account.php116, templates/debug.php373,
1274
  #: includes/customizer/class-fs-customizer-upsell-control.php110,
1275
  #: templates/account/partials/addon.php:49
1276
  msgctxt "as product pricing plan"
1277
  msgid "Plan"
1278
  msgstr "Druh členství"
1279
 
1280
- #: templates/account.php:117
1281
  msgid "Bundle Plan"
1282
  msgstr "Bundle Plan"
1283
 
1284
- #: templates/account.php:191
1285
  msgid "Free Trial"
1286
  msgstr "Zkušební verze zdarma"
1287
 
1288
- #: templates/account.php:202
1289
  msgid "Account Details"
1290
  msgstr "Detaily účtu"
1291
 
1292
- #: templates/account.php209, templates/forms/data-debug-mode.php:33
1293
  msgid "Start Debug"
1294
  msgstr "Start Debug"
1295
 
1296
- #: templates/account.php:211
1297
  msgid "Stop Debug"
1298
  msgstr "Stop Debug"
1299
 
1300
- #: templates/account.php:218
1301
  msgid "Billing & Invoices"
1302
- msgstr "Billing & Invoices"
1303
 
1304
- #: templates/account.php:229
1305
  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?"
1306
  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?"
1307
 
1308
- #: templates/account.php:231
1309
  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?"
1310
  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?"
1311
 
1312
- #: templates/account.php:234
1313
  msgid "Delete Account"
1314
  msgstr "Smazat účet"
1315
 
1316
- #: templates/account.php246, templates/account/partials/addon.php231,
1317
  #: templates/account/partials/deactivate-license-button.php:35
1318
  msgid "Deactivate License"
1319
  msgstr "Deaktivovat licenci"
1320
 
1321
- #: templates/account.php269, templates/forms/subscription-cancellation.php:125
1322
  msgid "Are you sure you want to proceed?"
1323
  msgstr "Opravdu chcete pokračovat?"
1324
 
1325
- #: templates/account.php269, templates/account/partials/addon.php:255
1326
  msgid "Cancel Subscription"
1327
  msgstr "Zrušit předplatné"
1328
 
1329
- #: templates/account.php298, templates/account/partials/addon.php:340
1330
  msgctxt "as synchronize"
1331
  msgid "Sync"
1332
  msgstr "Synchronizovat"
1333
 
1334
- #: templates/account.php313, templates/debug.php:507
1335
  msgid "Name"
1336
  msgstr "Jméno"
1337
 
1338
- #: templates/account.php319, templates/debug.php:508
1339
  msgid "Email"
1340
  msgstr "Email"
1341
 
1342
- #: templates/account.php326, templates/debug.php371, templates/debug.php:557
1343
  msgid "User ID"
1344
  msgstr "ID uživatele"
1345
 
1346
- #: templates/account.php344, templates/account.php637,
1347
- #: templates/account.php682, templates/debug.php238, templates/debug.php365,
1348
- #: templates/debug.php454, templates/debug.php506, templates/debug.php555,
1349
  #: templates/debug.php632, templates/account/payments.php35,
1350
  #: templates/debug/logger.php:21
1351
  msgid "ID"
1352
  msgstr "ID"
1353
 
1354
- #: templates/account.php:351
1355
  msgid "Site ID"
1356
  msgstr "ID stránky"
1357
 
1358
- #: templates/account.php:354
1359
  msgid "No ID"
1360
  msgstr "Žádné ID"
1361
 
1362
- #: templates/account.php359, templates/debug.php245, templates/debug.php374,
1363
- #: templates/debug.php458, templates/debug.php510,
1364
  #: templates/account/partials/site.php:227
1365
  msgid "Public Key"
1366
  msgstr "Veřejný klíč"
1367
 
1368
- #: templates/account.php365, templates/debug.php375, templates/debug.php459,
1369
- #: templates/debug.php511, templates/account/partials/site.php:239
1370
  msgid "Secret Key"
1371
  msgstr "Tajný klíč"
1372
 
1373
- #: templates/account.php:368
1374
  msgctxt "as secret encryption key missing"
1375
  msgid "No Secret"
1376
  msgstr "Tajný klíč chybí"
1377
 
1378
- #: templates/account.php395, templates/account/partials/site.php120,
1379
  #: templates/account/partials/site.php:122
1380
  msgid "Trial"
1381
  msgstr "Zkouška"
1382
 
1383
- #: templates/account.php422, templates/debug.php562,
1384
  #: templates/account/partials/site.php:260
1385
  msgid "License Key"
1386
  msgstr "Licenční klíč"
1387
 
1388
- #: templates/account.php:453
1389
  msgid "Join the Beta program"
1390
- msgstr "Join the Beta program"
1391
 
1392
- #: templates/account.php:459
1393
  msgid "not verified"
1394
  msgstr "není ověřeno"
1395
 
1396
- #: templates/account.php468, templates/account/partials/addon.php:190
1397
  msgid "Expired"
1398
  msgstr "Vypršelo"
1399
 
1400
- #: templates/account.php:528
1401
  msgid "Premium version"
1402
  msgstr "Prémiová verze"
1403
 
1404
- #: templates/account.php:530
1405
  msgid "Free version"
1406
  msgstr "Verze zdarma"
1407
 
1408
- #: templates/account.php:542
1409
  msgid "Verify Email"
1410
  msgstr "Ověřit e-mail"
1411
 
1412
- #: templates/account.php:553
1413
  msgid "Download %s Version"
1414
  msgstr "Stáhnout verzi %s"
1415
 
1416
- #: templates/account.php568, templates/account.php820,
 
 
 
 
1417
  #: templates/account/partials/site.php248,
1418
  #: templates/account/partials/site.php:270
1419
  msgctxt "verb"
1420
  msgid "Show"
1421
  msgstr "Zobrazit"
1422
 
1423
- #: templates/account.php:583
1424
  msgid "What is your %s?"
1425
  msgstr "Jaké je vaše \"%s\"?"
1426
 
1427
- #: templates/account.php591, templates/account/billing.php:21
1428
  msgctxt "verb"
1429
  msgid "Edit"
1430
  msgstr "Upravit"
1431
 
1432
- #: templates/account.php:616
 
 
 
 
1433
  msgid "Sites"
1434
  msgstr "Weby"
1435
 
1436
- #: templates/account.php:629
1437
  msgid "Search by address"
1438
  msgstr "Hledat podle adresy"
1439
 
1440
- #: templates/account.php638, templates/debug.php:368
1441
  msgid "Address"
1442
  msgstr "Adresa"
1443
 
1444
- #: templates/account.php:639
1445
  msgid "License"
1446
  msgstr "Licence"
1447
 
1448
- #: templates/account.php:640
1449
  msgid "Plan"
1450
  msgstr "Druh členství"
1451
 
1452
- #: templates/account.php:685
1453
  msgctxt "as software license"
1454
  msgid "License"
1455
  msgstr "Licence"
1456
 
1457
- #: templates/account.php:814
1458
  msgctxt "verb"
1459
  msgid "Hide"
1460
  msgstr "Skrýt"
1461
 
1462
- #: templates/account.php836, templates/forms/data-debug-mode.php:31
1463
  msgid "Processing"
1464
  msgstr "Processing"
1465
 
1466
- #: templates/account.php:839
1467
  msgid "Get updates for bleeding edge Beta versions of %s."
1468
  msgstr "Get updates for bleeding edge Beta versions of %s."
1469
 
1470
- #: templates/account.php:897
1471
  msgid "Cancelling %s"
1472
  msgstr "Ruším %s"
1473
 
1474
- #: templates/account.php897, templates/account.php914,
1475
  #: templates/forms/subscription-cancellation.php27,
1476
  #: templates/forms/deactivation/form.php:133
1477
  msgid "trial"
1478
  msgstr "zkušební"
1479
 
1480
- #: templates/account.php912, templates/forms/deactivation/form.php:150
1481
  msgid "Cancelling %s..."
1482
  msgstr "Ruším %s..."
1483
 
1484
- #: templates/account.php915, templates/forms/subscription-cancellation.php28,
1485
  #: templates/forms/deactivation/form.php:134
1486
  msgid "subscription"
1487
  msgstr "předplatné"
1488
 
1489
- #: templates/account.php:929
1490
  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?"
1491
  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?"
1492
 
 
 
 
 
 
 
 
 
1493
  #: templates/add-ons.php:38
1494
  msgid "View details"
1495
  msgstr "Zobrazit podrobnosti"
@@ -1512,7 +1561,7 @@ msgctxt "installed add-on"
1512
  msgid "Installed"
1513
  msgstr "Installed"
1514
 
1515
- #: templates/admin-notice.php13, templates/forms/license-activation.php207,
1516
  #: templates/forms/resend-key.php:77
1517
  msgctxt "as close a window"
1518
  msgid "Dismiss"
@@ -1552,159 +1601,167 @@ msgctxt "greeting"
1552
  msgid "Hey %s,"
1553
  msgstr "Dobrý den %s,"
1554
 
1555
- #: templates/connect.php:154
1556
  msgid "Allow & Continue"
1557
  msgstr "Povolit a pokračovat"
1558
 
1559
- #: templates/connect.php:158
1560
  msgid "Re-send activation email"
1561
  msgstr "Znovu poslat aktivační email"
1562
 
1563
- #: templates/connect.php:162
1564
  msgid "Thanks %s!"
1565
  msgstr "Děkujeme %s!"
1566
 
1567
- #: templates/connect.php172, templates/forms/license-activation.php:46
1568
  msgid "Agree & Activate License"
1569
  msgstr "Aktivovat licenci"
1570
 
1571
- #: templates/connect.php:181
1572
  msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1573
  msgstr "Děkujeme za nákup %s! Pro aktivaci zadejte prosím svůj licenční klíč:"
1574
 
1575
- #: templates/connect.php:188
1576
  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."
1577
  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."
1578
 
1579
- #: templates/connect.php:189
1580
  msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1581
  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."
1582
 
1583
- #: templates/connect.php:195
1584
  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."
1585
  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."
1586
 
1587
- #: templates/connect.php:196
1588
  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."
1589
  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."
1590
 
1591
- #: templates/connect.php:230
1592
  msgid "We're excited to introduce the Freemius network-level integration."
1593
  msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů."
1594
 
1595
- #: templates/connect.php:233
1596
  msgid "During the update process we detected %d site(s) that are still pending license activation."
1597
  msgstr "During the update process we detected %d site(s) that are still pending license activation."
1598
 
1599
- #: templates/connect.php:235
1600
  msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1601
- msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1602
 
1603
- #: templates/connect.php:237
1604
  msgid "%s's paid features"
1605
  msgstr "%s's paid features"
1606
 
1607
- #: templates/connect.php:242
1608
  msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1609
  msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1610
 
1611
- #: templates/connect.php:244
1612
  msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1613
  msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1614
 
1615
- #: templates/connect.php253, templates/forms/data-debug-mode.php35,
1616
  #: templates/forms/license-activation.php:49
1617
  msgid "License key"
1618
  msgstr "Licenční klíč"
1619
 
1620
- #: templates/connect.php256, templates/forms/license-activation.php:22
1621
  msgid "Can't find your license key?"
1622
  msgstr "Nemůžete najít svůj licenční klíč?"
1623
 
1624
- #: templates/connect.php315, templates/connect.php652,
1625
  #: templates/forms/deactivation/retry-skip.php:20
1626
  msgctxt "verb"
1627
  msgid "Skip"
1628
  msgstr "Přeskočit"
1629
 
1630
- #: templates/connect.php:318
1631
  msgid "Delegate to Site Admins"
1632
  msgstr "Delegate to Site Admins"
1633
 
1634
- #: templates/connect.php:318
1635
  msgid "If you click it, this decision will be delegated to the sites administrators."
1636
  msgstr "If you click it, this decision will be delegated to the sites administrators."
1637
 
1638
- #: templates/connect.php:346
1639
  msgid "Your Profile Overview"
1640
  msgstr "Informace o vašem profilu"
1641
 
1642
- #: templates/connect.php:347
1643
  msgid "Name and email address"
1644
  msgstr "Jméno a emailová adresa"
1645
 
1646
- #: templates/connect.php:352
1647
  msgid "Your Site Overview"
1648
  msgstr "Informace o vaší stránce"
1649
 
1650
- #: templates/connect.php:353
1651
- msgid "Site URL, WP version, PHP info, plugins & themes"
1652
- msgstr "URL webu, verze WP, PHP info, pluginy a šablony"
1653
 
1654
- #: templates/connect.php:358
1655
  msgid "Admin Notices"
1656
  msgstr "Zobrazení oznámení v adminu"
1657
 
1658
- #: templates/connect.php359, templates/connect.php:375
1659
  msgid "Updates, announcements, marketing, no spam"
1660
  msgstr "Aktualizace, oznámení, marketing, žádný spam"
1661
 
1662
- #: templates/connect.php:364
1663
  msgid "Current %s Events"
1664
  msgstr "Informace o událostech pro %s"
1665
 
1666
- #: templates/connect.php:365
1667
  msgid "Activation, deactivation and uninstall"
1668
  msgstr "Aktivace, deaktivace a odinstalace"
1669
 
1670
- #: templates/connect.php:374
1671
  msgid "Newsletter"
1672
  msgstr "Newsletter"
1673
 
1674
- #: templates/connect.php391, templates/forms/license-activation.php:41
 
 
 
 
 
 
 
 
1675
  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."
1676
  msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s."
1677
 
1678
- #: templates/connect.php:396
1679
  msgid "What permissions are being granted?"
1680
  msgstr "Jaká oprávnění budou udělena?"
1681
 
1682
- #: templates/connect.php:417
1683
  msgid "Don't have a license key?"
1684
  msgstr "Nemáte licenční klíč?"
1685
 
1686
- #: templates/connect.php:420
1687
  msgid "Have a license key?"
1688
  msgstr "Máte licenční klíč?"
1689
 
1690
- #: templates/connect.php:428
1691
  msgid "Privacy Policy"
1692
  msgstr "Zásady ochrany osobních údajů"
1693
 
1694
- #: templates/connect.php:430
1695
  msgid "License Agreement"
1696
  msgstr "Licenční smlouva"
1697
 
1698
- #: templates/connect.php:430
1699
  msgid "Terms of Service"
1700
  msgstr "Podmínky služby"
1701
 
1702
- #: templates/connect.php:805
1703
  msgctxt "as in the process of sending an email"
1704
  msgid "Sending email"
1705
  msgstr "Probíhá odesílání emailů"
1706
 
1707
- #: templates/connect.php:806
1708
  msgctxt "as activating plugin"
1709
  msgid "Activating"
1710
  msgstr "Probíhá aktivace"
@@ -1732,180 +1789,185 @@ msgctxt "as code debugging"
1732
  msgid "Debugging"
1733
  msgstr "Debugging"
1734
 
1735
- #: templates/debug.php54, templates/debug.php250, templates/debug.php376,
1736
- #: templates/debug.php:512
1737
  msgid "Actions"
1738
- msgstr "Akce objednávky"
1739
 
1740
- #: templates/debug.php:64
1741
  msgid "Are you sure you want to delete all Freemius data?"
1742
  msgstr "Opravdu chcete smazat veškerá Freemius data?"
1743
 
1744
- #: templates/debug.php:64
1745
  msgid "Delete All Accounts"
1746
  msgstr "Delete All Accounts"
1747
 
1748
- #: templates/debug.php:71
1749
  msgid "Clear API Cache"
1750
- msgstr "Vymazat paměť API"
1751
 
1752
- #: templates/debug.php:79
1753
  msgid "Clear Updates Transients"
1754
- msgstr "Clear Updates Transients"
1755
 
1756
- #: templates/debug.php:86
1757
  msgid "Sync Data From Server"
1758
  msgstr "Synchronizovat data ze serveru"
1759
 
1760
- #: templates/debug.php:95
1761
  msgid "Migrate Options to Network"
1762
  msgstr "Migrate Options to Network"
1763
 
1764
- #: templates/debug.php:100
1765
  msgid "Load DB Option"
1766
  msgstr "Load DB Option"
1767
 
1768
- #: templates/debug.php:103
1769
  msgid "Set DB Option"
1770
  msgstr "Set DB Option"
1771
 
1772
- #: templates/debug.php:182
1773
  msgid "Key"
1774
  msgstr "Klíč"
1775
 
1776
- #: templates/debug.php:183
1777
  msgid "Value"
1778
  msgstr "Hodnota"
1779
 
1780
- #: templates/debug.php:199
1781
  msgctxt "as software development kit versions"
1782
  msgid "SDK Versions"
1783
- msgstr "SDK Versions"
1784
 
1785
- #: templates/debug.php:204
1786
  msgid "SDK Path"
1787
  msgstr "Cesta l SDK"
1788
 
1789
- #: templates/debug.php205, templates/debug.php:244
1790
  msgid "Module Path"
1791
  msgstr "Cesta k modulu"
1792
 
1793
- #: templates/debug.php:206
1794
  msgid "Is Active"
1795
  msgstr "Je aktivní"
1796
 
1797
- #: templates/debug.php234, templates/debug/plugins-themes-sync.php:35
1798
  msgid "Plugins"
1799
  msgstr "Pluginy"
1800
 
1801
- #: templates/debug.php234, templates/debug/plugins-themes-sync.php:56
1802
  msgid "Themes"
1803
  msgstr "Šablony"
1804
 
1805
- #: templates/debug.php239, templates/debug.php370, templates/debug.php456,
1806
  #: templates/debug/scheduled-crons.php:80
1807
  msgid "Slug"
1808
  msgstr "Zkratka"
1809
 
1810
- #: templates/debug.php241, templates/debug.php:455
1811
  msgid "Title"
1812
  msgstr "Nadpis"
1813
 
1814
- #: templates/debug.php:242
1815
  msgctxt "as application program interface"
1816
  msgid "API"
1817
  msgstr "API"
1818
 
1819
- #: templates/debug.php:243
1820
  msgid "Freemius State"
1821
  msgstr "Stav Freemius"
1822
 
1823
- #: templates/debug.php:247
1824
  msgid "Network Blog"
1825
  msgstr "Network Blog"
1826
 
1827
- #: templates/debug.php:248
1828
  msgid "Network User"
1829
  msgstr "Network User"
1830
 
1831
- #: templates/debug.php:285
1832
  msgctxt "as connection was successful"
1833
  msgid "Connected"
1834
  msgstr "Připojeno"
1835
 
1836
- #: templates/debug.php:286
1837
  msgctxt "as connection blocked"
1838
  msgid "Blocked"
1839
  msgstr "Zablokováno"
1840
 
1841
- #: templates/debug.php:322
1842
  msgid "Simulate Trial Promotion"
1843
  msgstr "Simulate Trial Promotion"
1844
 
1845
- #: templates/debug.php:334
1846
  msgid "Simulate Network Upgrade"
1847
  msgstr "Simulate Network Upgrade"
1848
 
1849
- #: templates/debug.php:359
1850
  msgid "%s Installs"
1851
  msgstr "%s instalací"
1852
 
1853
- #: templates/debug.php:361
1854
  msgctxt "like websites"
1855
  msgid "Sites"
1856
  msgstr "Weby"
1857
 
1858
- #: templates/debug.php367, templates/account/partials/site.php:156
1859
  msgid "Blog ID"
1860
  msgstr "Blog ID"
1861
 
1862
- #: templates/debug.php:372
1863
  msgid "License ID"
1864
  msgstr "License ID"
1865
 
1866
- #: templates/debug.php436, templates/debug.php535,
1867
  #: templates/account/partials/addon.php:435
1868
  msgctxt "verb"
1869
  msgid "Delete"
1870
  msgstr "Smazat"
1871
 
1872
- #: templates/debug.php:450
1873
  msgid "Add Ons of module %s"
1874
  msgstr "Add Ons of module %s"
1875
 
1876
- #: templates/debug.php:502
1877
  msgid "Users"
1878
  msgstr "Uživatelé"
1879
 
1880
- #: templates/debug.php:509
1881
  msgid "Verified"
1882
  msgstr "Ověřeno"
1883
 
1884
- #: templates/debug.php:551
1885
  msgid "%s Licenses"
1886
  msgstr "%s licencí"
1887
 
1888
- #: templates/debug.php:556
1889
  msgid "Plugin ID"
1890
  msgstr "ID pluginu"
1891
 
1892
- #: templates/debug.php:558
1893
  msgid "Plan ID"
1894
  msgstr "ID členství"
1895
 
1896
- #: templates/debug.php:559
1897
  msgid "Quota"
1898
  msgstr "Quota"
1899
 
1900
- #: templates/debug.php:560
1901
  msgid "Activated"
1902
  msgstr "Aktivovaný"
1903
 
1904
- #: templates/debug.php:561
1905
  msgid "Blocking"
1906
  msgstr "Blokování"
1907
 
1908
- #: templates/debug.php:563
 
 
 
 
 
1909
  msgctxt "as expiration date"
1910
  msgid "Expiration"
1911
  msgstr "Expirace"
@@ -1953,10 +2015,6 @@ msgstr "Filtr"
1953
  msgid "Download"
1954
  msgstr "Stáhnout"
1955
 
1956
- #: templates/debug.php631, templates/debug/logger.php:22
1957
- msgid "Type"
1958
- msgstr "Typ"
1959
-
1960
  #: templates/debug.php636, templates/debug/logger.php:26
1961
  msgid "Timestamp"
1962
  msgstr "Datum a čas"
@@ -1999,7 +2057,7 @@ msgstr "Jméno firmy"
1999
 
2000
  #: templates/account/billing.php39, templates/account/billing.php:39
2001
  msgid "Tax / VAT ID"
2002
- msgstr "Tax / VAT ID"
2003
 
2004
  #: templates/account/billing.php42, templates/account/billing.php42,
2005
  #: templates/account/billing.php43, templates/account/billing.php:43
@@ -2150,145 +2208,145 @@ msgstr "Non-expiring"
2150
  msgid "Apply to become an affiliate"
2151
  msgstr "Apply to become an affiliate"
2152
 
2153
- #: templates/forms/affiliation.php:104
2154
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2155
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2156
 
2157
- #: templates/forms/affiliation.php:119
2158
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2159
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2160
 
2161
- #: templates/forms/affiliation.php:122
2162
  msgid "Your affiliation account was temporarily suspended."
2163
  msgstr "Your affiliation account was temporarily suspended."
2164
 
2165
- #: templates/forms/affiliation.php:125
2166
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2167
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2168
 
2169
- #: templates/forms/affiliation.php:128
2170
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2171
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2172
 
2173
- #: templates/forms/affiliation.php:141
2174
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2175
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2176
 
2177
- #: templates/forms/affiliation.php:142
2178
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2179
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2180
 
2181
- #: templates/forms/affiliation.php:145
2182
  msgid "Program Summary"
2183
  msgstr "Program Summary"
2184
 
2185
- #: templates/forms/affiliation.php:147
2186
  msgid "%s commission when a customer purchases a new license."
2187
  msgstr "%s provizi, když zákazník zakoupí novou licenci."
2188
 
2189
- #: templates/forms/affiliation.php:149
2190
  msgid "Get commission for automated subscription renewals."
2191
  msgstr "Get commission for automated subscription renewals."
2192
 
2193
- #: templates/forms/affiliation.php:152
2194
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2195
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2196
 
2197
- #: templates/forms/affiliation.php:155
2198
  msgid "Unlimited commissions."
2199
  msgstr "Unlimited commissions."
2200
 
2201
- #: templates/forms/affiliation.php:157
2202
  msgid "%s minimum payout amount."
2203
  msgstr "%s minimální částka výplaty."
2204
 
2205
- #: templates/forms/affiliation.php:158
2206
  msgid "Payouts are in USD and processed monthly via PayPal."
2207
- msgstr "Payouts are in USD and processed monthly via PayPal."
2208
 
2209
- #: templates/forms/affiliation.php:159
2210
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2211
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2212
 
2213
- #: templates/forms/affiliation.php:162
2214
  msgid "Affiliate"
2215
  msgstr "Partner"
2216
 
2217
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2218
  msgid "Email address"
2219
  msgstr "Emailová adresa"
2220
 
2221
- #: templates/forms/affiliation.php:169
2222
  msgid "Full name"
2223
  msgstr "Celé jméno"
2224
 
2225
- #: templates/forms/affiliation.php:173
2226
  msgid "PayPal account email address"
2227
  msgstr "E-mailová adresa účtu PayPal"
2228
 
2229
- #: templates/forms/affiliation.php:177
2230
  msgid "Where are you going to promote the %s?"
2231
  msgstr "Where are you going to promote the %s?"
2232
 
2233
- #: templates/forms/affiliation.php:179
2234
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2235
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2236
 
2237
- #: templates/forms/affiliation.php:181
2238
  msgid "Add another domain"
2239
  msgstr "Add another domain"
2240
 
2241
- #: templates/forms/affiliation.php:185
2242
  msgid "Extra Domains"
2243
  msgstr "Další domény"
2244
 
2245
- #: templates/forms/affiliation.php:186
2246
  msgid "Extra domains where you will be marketing the product from."
2247
  msgstr "Extra domains where you will be marketing the product from."
2248
 
2249
- #: templates/forms/affiliation.php:196
2250
  msgid "Promotion methods"
2251
  msgstr "Promotion methods"
2252
 
2253
- #: templates/forms/affiliation.php:199
2254
  msgid "Social media (Facebook, Twitter, etc.)"
2255
  msgstr "Social media (Facebook, Twitter, etc.)"
2256
 
2257
- #: templates/forms/affiliation.php:203
2258
  msgid "Mobile apps"
2259
  msgstr "Mobile apps"
2260
 
2261
- #: templates/forms/affiliation.php:207
2262
  msgid "Website, email, and social media statistics (optional)"
2263
  msgstr "Statistika o webová stránc, emaiul a sociálních médiích"
2264
 
2265
- #: templates/forms/affiliation.php:210
2266
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2267
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2268
 
2269
- #: templates/forms/affiliation.php:214
2270
  msgid "How will you promote us?"
2271
  msgstr "Jakým způsobem budete mé produkty propagovat?"
2272
 
2273
- #: templates/forms/affiliation.php:217
2274
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2275
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2276
 
2277
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2278
  msgid "Cancel"
2279
  msgstr "Zrušit"
2280
 
2281
- #: templates/forms/affiliation.php:225
2282
  msgid "Become an affiliate"
2283
  msgstr "Staňte se naším afiliátem"
2284
 
2285
  #: templates/forms/data-debug-mode.php:25
2286
  msgid "Please enter the license key to enable the debug mode:"
2287
- msgstr "Please enter the license key to enable the debug mode:"
2288
 
2289
  #: templates/forms/data-debug-mode.php:27
2290
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2291
- msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2292
 
2293
  #: templates/forms/data-debug-mode.php:32
2294
  msgid "Submit"
@@ -2300,12 +2358,16 @@ msgstr "User key"
2300
 
2301
  #: templates/forms/license-activation.php:23
2302
  msgid "Please enter the license key that you received in the email right after the purchase:"
2303
- msgstr "Please enter the license key that you received in the email right after the purchase:"
2304
 
2305
  #: templates/forms/license-activation.php:28
2306
  msgid "Update License"
2307
  msgstr "Aktualizovat licenci"
2308
 
 
 
 
 
2309
  #: templates/forms/optout.php:30
2310
  msgctxt "verb"
2311
  msgid "Opt Out"
@@ -2316,14 +2378,42 @@ msgctxt "verb"
2316
  msgid "Opt In"
2317
  msgstr "Zúčastnit se"
2318
 
2319
- #: templates/forms/optout.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2320
  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 letting us continue with the tracking."
2321
  msgstr "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 letting us continue with the tracking."
2322
 
2323
- #: templates/forms/optout.php:35
 
 
 
 
2324
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2325
  msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2326
 
 
 
 
 
 
 
 
 
2327
  #: templates/forms/premium-versions-upgrade-handler.php:40
2328
  msgid "There is a new version of %s available."
2329
  msgstr "Je k dispozici nová verze %s."
@@ -2347,7 +2437,7 @@ msgstr "Odeslat licenční klíč"
2347
 
2348
  #: templates/forms/resend-key.php:57
2349
  msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2350
- msgstr "Níže zadejte emailovou adresu, kterou jste použili pro koupi pluginu a my vám znovu odešleme váš licenční klíč."
2351
 
2352
  #: templates/forms/subscription-cancellation.php:37
2353
  msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
@@ -2394,6 +2484,23 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s
2394
  msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2395
  msgstr "Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období vás žádáme, abyste se rozhodli pro uživatele a necitlivé informace o webu, aby %s umožňoval periodicky odesílat data do %s za účelem kontroly aktualizací verzí a ověření zkušební verze."
2396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2397
  #: templates/js/style-premium-theme.php:39
2398
  msgid "Premium"
2399
  msgstr "Prémium"
@@ -2521,19 +2628,19 @@ msgstr "deaktivujete"
2521
  msgid "switching"
2522
  msgstr "přepínám"
2523
 
2524
- #: templates/forms/deactivation/form.php:365
2525
  msgid "Submit & %s"
2526
  msgstr "Odeslat & %s"
2527
 
2528
- #: templates/forms/deactivation/form.php:386
2529
  msgid "Kindly tell us the reason so we can improve."
2530
  msgstr "Dejte nám prosím vědět z jakého důvodu, ať to můžeme zlepšit."
2531
 
2532
- #: templates/forms/deactivation/form.php:511
2533
  msgid "Yes - %s"
2534
  msgstr "Ano - %s"
2535
 
2536
- #: templates/forms/deactivation/form.php:518
2537
  msgid "Skip & %s"
2538
  msgstr "Přeskočit & %s"
2539
 
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
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: 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.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
 
863
  msgid "Buy license"
864
  msgstr "Koupit licenci"
865
 
866
+ #: includes/class-fs-plugin-updater.php327,
867
+ #: includes/class-fs-plugin-updater.php:360
868
  msgid "There is a %s of %s available."
869
  msgstr "There is a %s of %s available."
870
 
871
+ #: includes/class-fs-plugin-updater.php329,
872
+ #: includes/class-fs-plugin-updater.php:365
873
  msgid "new Beta version"
874
  msgstr "nová Beta verze"
875
 
876
+ #: includes/class-fs-plugin-updater.php330,
877
+ #: includes/class-fs-plugin-updater.php:366
878
  msgid "new version"
879
  msgstr "nová verze"
880
 
881
+ #: includes/class-fs-plugin-updater.php:389
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
 
897
+ #: includes/fs-plugin-info-dialog.php:541
898
  msgid "Purchase More"
899
  msgstr "Zakoupit další"
900
 
901
+ #: includes/fs-plugin-info-dialog.php542,
902
  #: templates/account/partials/addon.php:385
903
  msgctxt "verb"
904
  msgid "Purchase"
905
  msgstr "Zakoupit"
906
 
907
+ #: includes/fs-plugin-info-dialog.php:546
908
  msgid "Start my free %s"
909
  msgstr "Začít můj bezplatný %s"
910
 
911
+ #: includes/fs-plugin-info-dialog.php:744
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
 
919
+ #: includes/fs-plugin-info-dialog.php:754
920
  msgid "Install Free Version Now"
921
  msgstr "Nainstalovat verzi zdarma"
922
 
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
  #: templates/auto-installation.php111,
925
  #: templates/account/partials/addon.php365,
926
  #: templates/account/partials/addon.php:418
927
  msgid "Install Now"
928
  msgstr "Instalovat"
929
 
930
+ #: includes/fs-plugin-info-dialog.php:771
931
  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"
939
  msgstr "Stáhněte si nejnovější"
940
 
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
  #: templates/account/partials/addon.php356,
943
  #: templates/account/partials/addon.php:412
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"
955
 
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
  msgctxt "Plugin installer section title"
958
  msgid "Description"
959
  msgstr "Popis"
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
  msgctxt "Plugin installer section title"
963
  msgid "Installation"
964
  msgstr "Instalace"
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
  msgctxt "Plugin installer section title"
968
  msgid "FAQ"
969
  msgstr "FAQ"
970
 
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
  #: templates/plugin-info/description.php:55
973
  msgid "Screenshots"
974
  msgstr "Snímky obrazovky"
975
 
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
  msgctxt "Plugin installer section title"
978
  msgid "Changelog"
979
  msgstr "Historie změn"
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
  msgctxt "Plugin installer section title"
983
  msgid "Reviews"
984
  msgstr "Vaše hodnocení"
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
  msgctxt "Plugin installer section title"
988
  msgid "Other Notes"
989
  msgstr "Other Notes"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
  msgctxt "Plugin installer section title"
993
  msgid "Features & Pricing"
994
  msgstr "Vlastnosti a ceník"
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
  msgid "Plugin Install"
998
  msgstr "Instalace pluginu"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
  msgctxt "e.g. Professional Plan"
1002
  msgid "%s Plan"
1003
  msgstr "%s plán"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
  msgctxt "e.g. the best product"
1007
  msgid "Best"
1008
  msgstr "Nejlepší"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
  msgctxt "as every month"
1013
  msgid "Monthly"
1014
  msgstr "Měsíčně"
1015
 
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
  msgctxt "as once a year"
1018
  msgid "Annual"
1019
  msgstr "Ročně"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
  msgid "Lifetime"
1023
  msgstr "Doživotní"
1024
 
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
  msgctxt "e.g. billed monthly"
1029
  msgid "Billed %s"
1030
  msgstr "Účtováno %s"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
  msgctxt "as once a year"
1034
  msgid "Annually"
1035
  msgstr "Ročně"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
  msgctxt "as once a year"
1039
  msgid "Once"
1040
  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"
1052
  msgstr "Až pro %s webů"
1053
 
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
  #: templates/plugin-info/features.php:82
1056
  msgctxt "as monthly period"
1057
  msgid "mo"
1058
  msgstr "po"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
  #: templates/plugin-info/features.php:80
1062
  msgctxt "as annual period"
1063
  msgid "year"
1064
  msgstr "rok"
1065
 
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
  msgctxt "noun"
1068
  msgid "Price"
1069
  msgstr "Cena"
1070
 
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
  msgid "Save %s"
1073
  msgstr "Uložit %s"
1074
 
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
  msgid "No commitment for %s - cancel anytime"
1077
  msgstr "No commitment for %s - cancel anytime"
1078
 
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
  msgid "After your free %s, pay as little as %s"
1081
  msgstr "Po bezplatné %s platit jen v %s"
1082
 
1083
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1091
  msgid "Version"
1092
  msgstr "Verze"
1093
 
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
  msgctxt "as the plugin author"
1096
  msgid "Author"
1097
  msgstr "Autor"
1098
 
1099
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1107
 
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
  msgid "Requires WordPress Version"
1110
  msgstr "Vyžaduje verzi WordPress"
1111
 
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
  msgid "%s or higher"
1114
  msgstr "%s nebo vyšší"
1115
 
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
  msgid "Compatible up to"
1118
  msgstr "Kompatibilní až po"
1119
 
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
  msgid "Downloaded"
1122
  msgstr "Staženo"
1123
 
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
  msgid "%s time"
1126
  msgstr "%s krát"
1127
 
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
  msgid "%s times"
1130
  msgstr "%s krát"
1131
 
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
  msgid "WordPress.org Plugin Page"
1134
  msgstr "Název pluginu na WordPress.org"
1135
 
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
  msgid "Plugin Homepage"
1138
  msgstr "Hlavní stránka pluginu"
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
  msgid "Donate to this plugin"
1143
  msgstr "Přispějte na tento plugin"
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
  msgid "Average Rating"
1147
  msgstr "Průměrné hodnocení"
1148
 
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
  msgid "based on %s"
1151
  msgstr "založeno na %s"
1152
 
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
  msgid "%s rating"
1155
  msgstr "%s hodnocení"
1156
 
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
  msgid "%s ratings"
1159
  msgstr "%s hodnocení"
1160
 
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
  msgid "%s star"
1163
  msgstr "%s hvězda"
1164
 
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
  msgid "%s stars"
1167
  msgstr "%s hvězd"
1168
 
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
  msgid "Click to see reviews that provided a rating of %s"
1171
  msgstr "Click to see reviews that provided a rating of %s"
1172
 
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
  msgid "Contributors"
1175
  msgstr "Přispěvatelé"
1176
 
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
  msgid "Warning"
1180
  msgstr "Varování"
1181
 
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
  msgid "This plugin has not been tested with your current version of WordPress."
1184
  msgstr "This plugin has not been tested with your current version of WordPress."
1185
 
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1189
 
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
  msgid "Paid add-on must be deployed to Freemius."
1192
  msgstr "Placený doplněk musí být nasazen na Freemius."
1193
 
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
  msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius."
1197
 
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
  msgid "Newer Version (%s) Installed"
1200
  msgstr "Novější verze (%s) nainstalována"
1201
 
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
  msgid "Newer Free Version (%s) Installed"
1204
  msgstr "Novější verze zdarma (%s) nainstalována"
1205
 
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
  msgid "Latest Version Installed"
1208
  msgstr "Nainstalována nejnovější verze"
1209
 
1210
+ #: includes/fs-plugin-info-dialog.php:1541
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
 
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
+
1542
  #: templates/add-ons.php:38
1543
  msgid "View details"
1544
  msgstr "Zobrazit podrobnosti"
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"
1601
  msgid "Hey %s,"
1602
  msgstr "Dobrý den %s,"
1603
 
1604
+ #: templates/connect.php:162
1605
  msgid "Allow & Continue"
1606
  msgstr "Povolit a pokračovat"
1607
 
1608
+ #: templates/connect.php:166
1609
  msgid "Re-send activation email"
1610
  msgstr "Znovu poslat aktivační email"
1611
 
1612
+ #: templates/connect.php:170
1613
  msgid "Thanks %s!"
1614
  msgstr "Děkujeme %s!"
1615
 
1616
+ #: templates/connect.php180, templates/forms/license-activation.php:46
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
 
1703
+ #: templates/connect.php:379
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"
1789
  msgid "Debugging"
1790
  msgstr "Debugging"
1791
 
1792
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1793
+ #: templates/debug.php:510
1794
  msgid "Actions"
1795
+ msgstr "Akce"
1796
 
1797
+ #: templates/debug.php:62
1798
  msgid "Are you sure you want to delete all Freemius data?"
1799
  msgstr "Opravdu chcete smazat veškerá Freemius data?"
1800
 
1801
+ #: templates/debug.php:62
1802
  msgid "Delete All Accounts"
1803
  msgstr "Delete All Accounts"
1804
 
1805
+ #: templates/debug.php:69
1806
  msgid "Clear API Cache"
1807
+ msgstr "Vyčistit API cache"
1808
 
1809
+ #: templates/debug.php:77
1810
  msgid "Clear Updates Transients"
1811
+ msgstr "Vyčistit transitenty aktualizací"
1812
 
1813
+ #: templates/debug.php:84
1814
  msgid "Sync Data From Server"
1815
  msgstr "Synchronizovat data ze serveru"
1816
 
1817
+ #: templates/debug.php:93
1818
  msgid "Migrate Options to Network"
1819
  msgstr "Migrate Options to Network"
1820
 
1821
+ #: templates/debug.php:98
1822
  msgid "Load DB Option"
1823
  msgstr "Load DB Option"
1824
 
1825
+ #: templates/debug.php:101
1826
  msgid "Set DB Option"
1827
  msgstr "Set DB Option"
1828
 
1829
+ #: templates/debug.php:180
1830
  msgid "Key"
1831
  msgstr "Klíč"
1832
 
1833
+ #: templates/debug.php:181
1834
  msgid "Value"
1835
  msgstr "Hodnota"
1836
 
1837
+ #: templates/debug.php:197
1838
  msgctxt "as software development kit versions"
1839
  msgid "SDK Versions"
1840
+ msgstr "SDK verze"
1841
 
1842
+ #: templates/debug.php:202
1843
  msgid "SDK Path"
1844
  msgstr "Cesta l SDK"
1845
 
1846
+ #: templates/debug.php203, templates/debug.php:242
1847
  msgid "Module Path"
1848
  msgstr "Cesta k modulu"
1849
 
1850
+ #: templates/debug.php:204
1851
  msgid "Is Active"
1852
  msgstr "Je aktivní"
1853
 
1854
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1855
  msgid "Plugins"
1856
  msgstr "Pluginy"
1857
 
1858
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1859
  msgid "Themes"
1860
  msgstr "Šablony"
1861
 
1862
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1863
  #: templates/debug/scheduled-crons.php:80
1864
  msgid "Slug"
1865
  msgstr "Zkratka"
1866
 
1867
+ #: templates/debug.php239, templates/debug.php:453
1868
  msgid "Title"
1869
  msgstr "Nadpis"
1870
 
1871
+ #: templates/debug.php:240
1872
  msgctxt "as application program interface"
1873
  msgid "API"
1874
  msgstr "API"
1875
 
1876
+ #: templates/debug.php:241
1877
  msgid "Freemius State"
1878
  msgstr "Stav Freemius"
1879
 
1880
+ #: templates/debug.php:245
1881
  msgid "Network Blog"
1882
  msgstr "Network Blog"
1883
 
1884
+ #: templates/debug.php:246
1885
  msgid "Network User"
1886
  msgstr "Network User"
1887
 
1888
+ #: templates/debug.php:283
1889
  msgctxt "as connection was successful"
1890
  msgid "Connected"
1891
  msgstr "Připojeno"
1892
 
1893
+ #: templates/debug.php:284
1894
  msgctxt "as connection blocked"
1895
  msgid "Blocked"
1896
  msgstr "Zablokováno"
1897
 
1898
+ #: templates/debug.php:320
1899
  msgid "Simulate Trial Promotion"
1900
  msgstr "Simulate Trial Promotion"
1901
 
1902
+ #: templates/debug.php:332
1903
  msgid "Simulate Network Upgrade"
1904
  msgstr "Simulate Network Upgrade"
1905
 
1906
+ #: templates/debug.php:357
1907
  msgid "%s Installs"
1908
  msgstr "%s instalací"
1909
 
1910
+ #: templates/debug.php:359
1911
  msgctxt "like websites"
1912
  msgid "Sites"
1913
  msgstr "Weby"
1914
 
1915
+ #: templates/debug.php365, templates/account/partials/site.php:156
1916
  msgid "Blog ID"
1917
  msgstr "Blog ID"
1918
 
1919
+ #: templates/debug.php:370
1920
  msgid "License ID"
1921
  msgstr "License ID"
1922
 
1923
+ #: templates/debug.php434, templates/debug.php533,
1924
  #: templates/account/partials/addon.php:435
1925
  msgctxt "verb"
1926
  msgid "Delete"
1927
  msgstr "Smazat"
1928
 
1929
+ #: templates/debug.php:448
1930
  msgid "Add Ons of module %s"
1931
  msgstr "Add Ons of module %s"
1932
 
1933
+ #: templates/debug.php:500
1934
  msgid "Users"
1935
  msgstr "Uživatelé"
1936
 
1937
+ #: templates/debug.php:507
1938
  msgid "Verified"
1939
  msgstr "Ověřeno"
1940
 
1941
+ #: templates/debug.php:549
1942
  msgid "%s Licenses"
1943
  msgstr "%s licencí"
1944
 
1945
+ #: templates/debug.php:554
1946
  msgid "Plugin ID"
1947
  msgstr "ID pluginu"
1948
 
1949
+ #: templates/debug.php:556
1950
  msgid "Plan ID"
1951
  msgstr "ID členství"
1952
 
1953
+ #: templates/debug.php:557
1954
  msgid "Quota"
1955
  msgstr "Quota"
1956
 
1957
+ #: templates/debug.php:558
1958
  msgid "Activated"
1959
  msgstr "Aktivovaný"
1960
 
1961
+ #: templates/debug.php:559
1962
  msgid "Blocking"
1963
  msgstr "Blokování"
1964
 
1965
+ #: templates/debug.php560, templates/debug.php631,
1966
+ #: templates/debug/logger.php:22
1967
+ msgid "Type"
1968
+ msgstr "Typ"
1969
+
1970
+ #: templates/debug.php:562
1971
  msgctxt "as expiration date"
1972
  msgid "Expiration"
1973
  msgstr "Expirace"
2015
  msgid "Download"
2016
  msgstr "Stáhnout"
2017
 
 
 
 
 
2018
  #: templates/debug.php636, templates/debug/logger.php:26
2019
  msgid "Timestamp"
2020
  msgstr "Datum a čas"
2057
 
2058
  #: templates/account/billing.php39, templates/account/billing.php:39
2059
  msgid "Tax / VAT ID"
2060
+ msgstr "DIČ"
2061
 
2062
  #: templates/account/billing.php42, templates/account/billing.php42,
2063
  #: templates/account/billing.php43, templates/account/billing.php:43
2208
  msgid "Apply to become an affiliate"
2209
  msgstr "Apply to become an affiliate"
2210
 
2211
+ #: templates/forms/affiliation.php:107
2212
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2213
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2214
 
2215
+ #: templates/forms/affiliation.php:122
2216
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2217
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2218
 
2219
+ #: templates/forms/affiliation.php:125
2220
  msgid "Your affiliation account was temporarily suspended."
2221
  msgstr "Your affiliation account was temporarily suspended."
2222
 
2223
+ #: templates/forms/affiliation.php:128
2224
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2225
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2226
 
2227
+ #: templates/forms/affiliation.php:131
2228
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2229
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2230
 
2231
+ #: templates/forms/affiliation.php:144
2232
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2233
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
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!"
2237
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2238
 
2239
+ #: templates/forms/affiliation.php:148
2240
  msgid "Program Summary"
2241
  msgstr "Program Summary"
2242
 
2243
+ #: templates/forms/affiliation.php:150
2244
  msgid "%s commission when a customer purchases a new license."
2245
  msgstr "%s provizi, když zákazník zakoupí novou licenci."
2246
 
2247
+ #: templates/forms/affiliation.php:152
2248
  msgid "Get commission for automated subscription renewals."
2249
  msgstr "Get commission for automated subscription renewals."
2250
 
2251
+ #: templates/forms/affiliation.php:155
2252
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2253
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2254
 
2255
+ #: templates/forms/affiliation.php:158
2256
  msgid "Unlimited commissions."
2257
  msgstr "Unlimited commissions."
2258
 
2259
+ #: templates/forms/affiliation.php:160
2260
  msgid "%s minimum payout amount."
2261
  msgstr "%s minimální částka výplaty."
2262
 
2263
+ #: templates/forms/affiliation.php:161
2264
  msgid "Payouts are in USD and processed monthly via PayPal."
2265
+ msgstr "Vyplácení probíhá přes PayPal jednou za měsíc a v USD."
2266
 
2267
+ #: templates/forms/affiliation.php:162
2268
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2269
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2270
 
2271
+ #: templates/forms/affiliation.php:165
2272
  msgid "Affiliate"
2273
  msgstr "Partner"
2274
 
2275
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2276
  msgid "Email address"
2277
  msgstr "Emailová adresa"
2278
 
2279
+ #: templates/forms/affiliation.php:172
2280
  msgid "Full name"
2281
  msgstr "Celé jméno"
2282
 
2283
+ #: templates/forms/affiliation.php:176
2284
  msgid "PayPal account email address"
2285
  msgstr "E-mailová adresa účtu PayPal"
2286
 
2287
+ #: templates/forms/affiliation.php:180
2288
  msgid "Where are you going to promote the %s?"
2289
  msgstr "Where are you going to promote the %s?"
2290
 
2291
+ #: templates/forms/affiliation.php:182
2292
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2293
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2294
 
2295
+ #: templates/forms/affiliation.php:184
2296
  msgid "Add another domain"
2297
  msgstr "Add another domain"
2298
 
2299
+ #: templates/forms/affiliation.php:188
2300
  msgid "Extra Domains"
2301
  msgstr "Další domény"
2302
 
2303
+ #: templates/forms/affiliation.php:189
2304
  msgid "Extra domains where you will be marketing the product from."
2305
  msgstr "Extra domains where you will be marketing the product from."
2306
 
2307
+ #: templates/forms/affiliation.php:199
2308
  msgid "Promotion methods"
2309
  msgstr "Promotion methods"
2310
 
2311
+ #: templates/forms/affiliation.php:202
2312
  msgid "Social media (Facebook, Twitter, etc.)"
2313
  msgstr "Social media (Facebook, Twitter, etc.)"
2314
 
2315
+ #: templates/forms/affiliation.php:206
2316
  msgid "Mobile apps"
2317
  msgstr "Mobile apps"
2318
 
2319
+ #: templates/forms/affiliation.php:210
2320
  msgid "Website, email, and social media statistics (optional)"
2321
  msgstr "Statistika o webová stránc, emaiul a sociálních médiích"
2322
 
2323
+ #: templates/forms/affiliation.php:213
2324
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2325
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2326
 
2327
+ #: templates/forms/affiliation.php:217
2328
  msgid "How will you promote us?"
2329
  msgstr "Jakým způsobem budete mé produkty propagovat?"
2330
 
2331
+ #: templates/forms/affiliation.php:220
2332
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2333
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2334
 
2335
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2336
  msgid "Cancel"
2337
  msgstr "Zrušit"
2338
 
2339
+ #: templates/forms/affiliation.php:234
2340
  msgid "Become an affiliate"
2341
  msgstr "Staňte se naším afiliátem"
2342
 
2343
  #: templates/forms/data-debug-mode.php:25
2344
  msgid "Please enter the license key to enable the debug mode:"
2345
+ msgstr "Pro povolení módu ladění chyb zadejte licenční klíč."
2346
 
2347
  #: templates/forms/data-debug-mode.php:27
2348
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2349
+ msgstr "Pro zapnutí módu ladění chyb zadejte tajný klíč vlastníka licence (uživatel s ID = %d), který najdete v sekci \"Můj profil\" vaší nástěnky."
2350
 
2351
  #: templates/forms/data-debug-mode.php:32
2352
  msgid "Submit"
2358
 
2359
  #: templates/forms/license-activation.php:23
2360
  msgid "Please enter the license key that you received in the email right after the purchase:"
2361
+ msgstr "Zadejte licenční klíč, který najdete v emailu odeslaném po provedení objednávky:"
2362
 
2363
  #: templates/forms/license-activation.php:28
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
+
2371
  #: templates/forms/optout.php:30
2372
  msgctxt "verb"
2373
  msgid "Opt Out"
2378
  msgid "Opt In"
2379
  msgstr "Zúčastnit se"
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 letting us continue with the tracking."
2399
  msgstr "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 letting us continue with the tracking."
2400
 
2401
+ #: templates/forms/optout.php:45
2402
+ msgid "On second thought - I want to continue helping"
2403
+ msgstr "On second thought - I want to continue helping"
2404
+
2405
+ #: templates/forms/optout.php:49
2406
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2407
  msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2408
 
2409
+ #: templates/forms/optout.php:74
2410
+ msgid "Plugins & themes tracking"
2411
+ msgstr "Plugins & themes tracking"
2412
+
2413
+ #: templates/forms/optout.php:261
2414
+ msgid "Saved"
2415
+ msgstr "Saved"
2416
+
2417
  #: templates/forms/premium-versions-upgrade-handler.php:40
2418
  msgid "There is a new version of %s available."
2419
  msgstr "Je k dispozici nová verze %s."
2437
 
2438
  #: templates/forms/resend-key.php:57
2439
  msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2440
+ msgstr "Zadejte emailovou adresu použitou při objednávce, abychom vám na něj mohli znovu poslat licenční klíč."
2441
 
2442
  #: templates/forms/subscription-cancellation.php:37
2443
  msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2484
  msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
2485
  msgstr "Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období vás žádáme, abyste se rozhodli pro uživatele a necitlivé informace o webu, aby %s umožňoval periodicky odesílat data do %s za účelem kontroly aktualizací verzí a ověření zkušební verze."
2486
 
2487
+ #: templates/forms/user-change.php:26
2488
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2489
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2490
+
2491
+ #: templates/forms/user-change.php:28
2492
+ msgid "I Agree - Change User"
2493
+ msgstr "I Agree - Change User"
2494
+
2495
+ #: templates/forms/user-change.php:30
2496
+ msgid "Enter email address"
2497
+ msgstr "Enter email address"
2498
+
2499
+ #: templates/forms/user-change.php:81
2500
+ msgctxt "close window"
2501
+ msgid "Dismiss"
2502
+ msgstr "Skrýt"
2503
+
2504
  #: templates/js/style-premium-theme.php:39
2505
  msgid "Premium"
2506
  msgstr "Prémium"
2628
  msgid "switching"
2629
  msgstr "přepínám"
2630
 
2631
+ #: templates/forms/deactivation/form.php:369
2632
  msgid "Submit & %s"
2633
  msgstr "Odeslat & %s"
2634
 
2635
+ #: templates/forms/deactivation/form.php:390
2636
  msgid "Kindly tell us the reason so we can improve."
2637
  msgstr "Dejte nám prosím vědět z jakého důvodu, ať to můžeme zlepšit."
2638
 
2639
+ #: templates/forms/deactivation/form.php:515
2640
  msgid "Yes - %s"
2641
  msgstr "Ano - %s"
2642
 
2643
+ #: templates/forms/deactivation/form.php:522
2644
  msgid "Skip & %s"
2645
  msgstr "Přeskočit & %s"
2646
 
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,7 +1,7 @@
1
- # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
- # Joachim Jensen, 2019
5
  # Joachim Jensen, 2016-2018
6
  # Lars Koudal, 2018-2019
7
  msgid ""
@@ -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-07-27 11:43+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,811 +23,835 @@ msgstr ""
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
31
  msgid "Would you like to proceed with the update?"
32
  msgstr "Vil du fortsætte med opdateringen?"
33
 
34
- #: includes/class-freemius.php:2096
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:2098
39
  msgid "Error"
40
  msgstr "Fejl"
41
 
42
- #: includes/class-freemius.php:2492
43
  msgid "I found a better %s"
44
  msgstr "Jeg fandt et bedre %s"
45
 
46
- #: includes/class-freemius.php:2494
47
  msgid "What's the %s's name?"
48
  msgstr "Hvad er navnet på %s?"
49
 
50
- #: includes/class-freemius.php:2500
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:2502
55
  msgid "Deactivation"
56
  msgstr "Deaktivering"
57
 
58
- #: includes/class-freemius.php:2503
59
  msgid "Theme Switch"
60
  msgstr "Temaskift"
61
 
62
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "Andet"
66
 
67
- #: includes/class-freemius.php:2520
68
  msgid "I no longer need the %s"
69
  msgstr "Jeg har ikke længere brug for %s"
70
 
71
- #: includes/class-freemius.php:2527
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:2533
76
  msgid "The %s broke my site"
77
  msgstr "%s ødelagde min webside"
78
 
79
- #: includes/class-freemius.php:2540
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s stoppede pludseligt med at virke"
82
 
83
- #: includes/class-freemius.php:2550
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:2552
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:2558
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:2579
96
  msgid "The %s didn't work"
97
  msgstr "%s virkede ikke"
98
 
99
- #: includes/class-freemius.php:2589
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:2597
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:2599
108
  msgid "What feature?"
109
  msgstr "Hvilken feature?"
110
 
111
- #: includes/class-freemius.php:2603
112
  msgid "The %s is not working"
113
  msgstr "%s virker ikke"
114
 
115
- #: includes/class-freemius.php:2605
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:2609
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:2611
124
  msgid "What you've been looking for?"
125
  msgstr "Hvad ledte du efter?"
126
 
127
- #: includes/class-freemius.php:2615
128
  msgid "The %s didn't work as expected"
129
  msgstr "%s virkede ikke som forventet"
130
 
131
- #: includes/class-freemius.php:2617
132
  msgid "What did you expect?"
133
  msgstr "Hvad forventede du?"
134
 
135
- #: includes/class-freemius.php3472, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius Debug"
138
 
139
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
152
  msgid "Yes - do your thing"
153
  msgstr "Ja - fortsæt bare"
154
 
155
- #: includes/class-freemius.php:4343
156
  msgid "No - just deactivate"
157
  msgstr "Nej - bare deaktiver"
158
 
159
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
160
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
161
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
162
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
163
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
164
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
165
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
166
- #: includes/class-freemius.php21690, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "Ups"
170
 
171
- #: includes/class-freemius.php:4457
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:4879
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:4880
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.php5053, includes/class-freemius.php5078,
186
- #: includes/class-freemius.php:20578
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:5777
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "Premium-versionen af %s blev aktiveret."
193
 
194
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "W00t"
198
 
199
- #: includes/class-freemius.php:5804
200
  msgid "You have a %s license."
201
  msgstr "Du har en %s licens."
202
 
203
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
204
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
205
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
206
- #: includes/class-freemius.php:20328
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "Yee-haw"
210
 
211
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
225
  msgid "Purchase License"
226
  msgstr "Køb licens"
227
 
228
- #: includes/class-freemius.php7047, 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:7051
233
  msgid "start the trial"
234
  msgstr "start prøveperioden"
235
 
236
- #: includes/class-freemius.php7052, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "færdiggør installeringen"
239
 
240
- #: includes/class-freemius.php:7164
241
  msgid "You are just one step away - %s"
242
  msgstr "Du mangler kun ét skridt - %s"
243
 
244
- #: includes/class-freemius.php:7167
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:7245
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:7249
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Accepter for at gøre \"%s\" bedre!"
256
 
257
- #: includes/class-freemius.php:7681
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "Opgraderingen af %s blev fuldendt."
260
 
261
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
262
- #: includes/class-fs-plugin-updater.php1239,
263
- #: includes/class-fs-plugin-updater.php1246,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "Tilføjelse"
267
 
268
- #: includes/class-freemius.php9910, templates/account.php343,
269
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "Plugin"
272
 
273
- #: includes/class-freemius.php9911, templates/account.php344,
274
- #: templates/account.php352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  msgid "An unknown error has occurred while trying to set the user's beta mode."
281
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
282
 
283
- #: includes/class-freemius.php:12904
284
  msgid "Invalid new user ID or email address."
285
  msgstr "Invalid new user ID or email address."
286
 
287
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
288
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
289
  msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail."
290
 
291
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
292
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
293
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
294
 
295
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
296
  msgid "Change Ownership"
297
  msgstr "Skift ejerskab"
298
 
299
- #: includes/class-freemius.php:13438
300
  msgid "Invalid site details collection."
301
  msgstr "Invalid site details collection."
302
 
303
- #: includes/class-freemius.php:13558
304
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
305
  msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
306
 
307
- #: includes/class-freemius.php:13560
308
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
309
  msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
310
 
311
- #: includes/class-freemius.php:13834
312
  msgid "Account is pending activation."
313
  msgstr "Konto afventer aktivering."
314
 
315
- #: includes/class-freemius.php13946,
316
  #: templates/forms/premium-versions-upgrade-handler.php:47
317
  msgid "Buy a license now"
318
  msgstr "Køb en licens nu"
319
 
320
- #: includes/class-freemius.php13958,
321
  #: templates/forms/premium-versions-upgrade-handler.php:46
322
  msgid "Renew your license now"
323
  msgstr "Forny din licens nu"
324
 
325
- #: includes/class-freemius.php:13962
326
  msgid "%s to access version %s security & feature updates, and support."
327
  msgstr "%s to access version %s security & feature updates, and support."
328
 
329
- #: includes/class-freemius.php:16387
330
  msgid "%s activation was successfully completed."
331
  msgstr "Aktivering af %s blev gennemført."
332
 
333
- #: includes/class-freemius.php:16401
334
  msgid "Your account was successfully activated with the %s plan."
335
  msgstr "Din konto blev aktiveret med planen %s."
336
 
337
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
338
  msgid "Your trial has been successfully started."
339
  msgstr "Din prøveperiode er begyndt."
340
 
341
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
342
- #: includes/class-freemius.php:17258
343
  msgid "Couldn't activate %s."
344
  msgstr "Kunne ikke aktivere %s."
345
 
346
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
347
- #: includes/class-freemius.php:17259
348
  msgid "Please contact us with the following message:"
349
  msgstr "Kontakt os venligst med følgende besked:"
350
 
351
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
352
  msgid "An unknown error has occurred."
353
  msgstr "Der skete en ukendt fejl."
354
 
355
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
356
  msgid "Upgrade"
357
  msgstr "Opgrader"
358
 
359
- #: includes/class-freemius.php:17622
360
  msgid "Start Trial"
361
  msgstr "Start prøveperiode"
362
 
363
- #: includes/class-freemius.php:17624
364
  msgid "Pricing"
365
  msgstr "Priser"
366
 
367
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
368
  msgid "Affiliation"
369
  msgstr "Affiliation"
370
 
371
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
372
- #: templates/account.php191, templates/debug.php:324
373
  msgid "Account"
374
  msgstr "Konto"
375
 
376
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
377
  #: includes/customizer/class-fs-customizer-support-section.php:60
378
  msgid "Contact Us"
379
  msgstr "Kontakt os"
380
 
381
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
382
- #: includes/class-freemius.php22603, templates/account.php119,
383
  #: templates/account/partials/addon.php:44
384
  msgid "Add-Ons"
385
  msgstr "Tilføjelser"
386
 
387
- #: includes/class-freemius.php:17799
388
  msgctxt "ASCII arrow left icon"
389
  msgid "&#x2190;"
390
  msgstr "&#x2190;"
391
 
392
- #: includes/class-freemius.php:17799
393
  msgctxt "ASCII arrow right icon"
394
  msgid "&#x27a4;"
395
  msgstr "&#x27a4;"
396
 
397
- #: includes/class-freemius.php17801, templates/pricing.php:103
398
  msgctxt "noun"
399
  msgid "Pricing"
400
  msgstr "Priser"
401
 
402
- #: includes/class-freemius.php18014,
403
  #: includes/customizer/class-fs-customizer-support-section.php:67
404
  msgid "Support Forum"
405
  msgstr "Supportforum"
406
 
407
- #: includes/class-freemius.php:18988
408
  msgid "Your email has been successfully verified - you are AWESOME!"
409
  msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
410
 
411
- #: includes/class-freemius.php:18989
412
  msgctxt "a positive response"
413
  msgid "Right on"
414
  msgstr "Sådan"
415
 
416
- #: includes/class-freemius.php:19493
417
  msgid "seems like the key you entered doesn't match our records."
418
  msgstr "seems like the key you entered doesn't match our records."
419
 
420
- #: includes/class-freemius.php:19517
421
  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."
422
  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."
423
 
424
- #: includes/class-freemius.php:19735
425
  msgid "Your %s Add-on plan was successfully upgraded."
426
  msgstr "Your %s Add-on plan was successfully upgraded."
427
 
428
- #: includes/class-freemius.php:19737
429
  msgid "%s Add-on was successfully purchased."
430
  msgstr "Betalingen for tilføjelsen %s blev gennemført."
431
 
432
- #: includes/class-freemius.php:19740
433
  msgid "Download the latest version"
434
  msgstr "Download den seneste version"
435
 
436
- #: includes/class-freemius.php:19826
437
  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"
438
  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"
439
 
440
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
441
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
442
  msgid "Error received from the server:"
443
  msgstr "Fejl modtager fra serveren:"
444
 
445
- #: includes/class-freemius.php:19842
446
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
447
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
448
 
449
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
450
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
451
  msgctxt ""
452
  msgid "Hmm"
453
  msgstr "Hmm"
454
 
455
- #: includes/class-freemius.php:20069
456
  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."
457
  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."
458
 
459
- #: includes/class-freemius.php20070, templates/account.php121,
460
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
461
  msgctxt "trial period"
462
  msgid "Trial"
463
  msgstr "Prøveperiode"
464
 
465
- #: includes/class-freemius.php:20075
466
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
467
  msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
468
 
469
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
470
  msgid "Please contact us here"
471
  msgstr "Kontakt os her"
472
 
473
- #: includes/class-freemius.php:20090
474
  msgid "Your plan was successfully activated."
475
  msgstr "Din plan er blevet aktiveret."
476
 
477
- #: includes/class-freemius.php:20091
478
  msgid "Your plan was successfully upgraded."
479
  msgstr "Din plan er blevet opgraderet."
480
 
481
- #: includes/class-freemius.php:20108
482
  msgid "Your plan was successfully changed to %s."
483
  msgstr "Din plan er blevet ændret til %s."
484
 
485
- #: includes/class-freemius.php:20124
486
  msgid "Your license has expired. You can still continue using the free %s forever."
487
  msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
488
 
489
- #: includes/class-freemius.php:20126
490
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
491
  msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
492
 
493
- #: includes/class-freemius.php:20134
494
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
495
  msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
496
 
497
- #: includes/class-freemius.php:20147
498
  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."
499
  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."
500
 
501
- #: includes/class-freemius.php:20173
502
  msgid "Your free trial has expired. You can still continue using all our free features."
503
  msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
504
 
505
- #: includes/class-freemius.php:20175
506
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
508
 
509
- #: includes/class-freemius.php:20283
510
  msgid "It looks like the license could not be activated."
511
  msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
512
 
513
- #: includes/class-freemius.php:20325
514
  msgid "Your license was successfully activated."
515
  msgstr "Din licens er blevet aktiveret."
516
 
517
- #: includes/class-freemius.php:20351
518
  msgid "It looks like your site currently doesn't have an active license."
519
  msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
520
 
521
- #: includes/class-freemius.php:20375
522
  msgid "It looks like the license deactivation failed."
523
  msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
524
 
525
- #: includes/class-freemius.php:20404
526
  msgid "Your %s license was successfully deactivated."
527
  msgstr "Your %s license was successfully deactivated."
528
 
529
- #: includes/class-freemius.php:20405
530
  msgid "Your license was successfully deactivated, you are back to the %s plan."
531
  msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
532
 
533
- #: includes/class-freemius.php:20408
534
  msgid "O.K"
535
  msgstr "O.K"
536
 
537
- #: includes/class-freemius.php:20461
538
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
539
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
540
 
541
- #: includes/class-freemius.php:20470
542
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
543
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
544
 
545
- #: includes/class-freemius.php:20512
546
  msgid "You are already running the %s in a trial mode."
547
  msgstr "Du benytter allerede %s under en prøveperiode."
548
 
549
- #: includes/class-freemius.php:20523
550
  msgid "You already utilized a trial before."
551
  msgstr "Du har allerede brugt din prøveperiode."
552
 
553
- #: includes/class-freemius.php:20537
554
  msgid "Plan %s do not exist, therefore, can't start a trial."
555
  msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
556
 
557
- #: includes/class-freemius.php:20548
558
  msgid "Plan %s does not support a trial period."
559
  msgstr "Plan %s understøtter ikke en prøveperiode."
560
 
561
- #: includes/class-freemius.php:20559
562
  msgid "None of the %s's plans supports a trial period."
563
  msgstr "Ingen af %s's planer understøtter prøveperiode."
564
 
565
- #: includes/class-freemius.php:20609
566
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
567
  msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
568
 
569
- #: includes/class-freemius.php:20645
570
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
571
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
572
 
573
- #: includes/class-freemius.php:20664
574
  msgid "Your %s free trial was successfully cancelled."
575
  msgstr "Din gratis prøveperiode for %s er blevet annulleret."
576
 
577
- #: includes/class-freemius.php:20980
578
  msgid "Version %s was released."
579
  msgstr "Version %s er blevet udgivet."
580
 
581
- #: includes/class-freemius.php:20980
582
  msgid "Please download %s."
583
  msgstr "Download venligst %s."
584
 
585
- #: includes/class-freemius.php:20987
586
  msgid "the latest %s version here"
587
  msgstr "den seneste version af %s her"
588
 
589
- #: includes/class-freemius.php:20992
590
  msgid "New"
591
  msgstr "Ny"
592
 
593
- #: includes/class-freemius.php:20997
594
  msgid "Seems like you got the latest release."
595
  msgstr "Det ser ud til, at du har den seneste udgivelse."
596
 
597
- #: includes/class-freemius.php:20998
598
  msgid "You are all good!"
599
  msgstr "Det var det!"
600
 
601
- #: includes/class-freemius.php:21301
602
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
603
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
604
 
605
- #: includes/class-freemius.php:21441
606
  msgid "Site successfully opted in."
607
  msgstr "Websted er tilmeldt."
608
 
609
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
610
  msgid "Awesome"
611
  msgstr "Sejt"
612
 
613
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
614
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
615
  msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
616
 
617
- #: includes/class-freemius.php:21459
618
  msgid "Thank you!"
619
  msgstr "Mange tak!"
620
 
621
- #: includes/class-freemius.php:21466
622
  msgid "We will no longer be sending any usage data of %s on %s to %s."
623
  msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
624
 
625
- #: includes/class-freemius.php:21612
626
  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."
627
  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."
628
 
629
- #: includes/class-freemius.php:21618
630
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
631
  msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse."
632
 
633
- #: includes/class-freemius.php:21623
634
  msgid "%s is the new owner of the account."
635
  msgstr "%s er den nye ejer af kontoen."
636
 
637
- #: includes/class-freemius.php:21625
638
  msgctxt "as congratulations"
639
  msgid "Congrats"
640
  msgstr "Tillykke"
641
 
642
- #: includes/class-freemius.php:21661
643
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
644
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
645
 
646
- #: includes/class-freemius.php:21673
647
  msgid "Please provide your full name."
648
  msgstr "Indtast venligst dit fulde navn."
649
 
650
- #: includes/class-freemius.php:21678
651
  msgid "Your name was successfully updated."
652
  msgstr "Dit navn er blevet opdateret."
653
 
654
- #: includes/class-freemius.php:21739
655
  msgid "You have successfully updated your %s."
656
  msgstr "Opdatering af %s blev gennemført."
657
 
658
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
659
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
660
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
661
 
662
- #: includes/class-freemius.php:21880
663
  msgctxt "advance notice of something that will need attention."
664
  msgid "Heads up"
665
  msgstr "Se her"
666
 
667
- #: includes/class-freemius.php:22339
668
  msgctxt "exclamation"
669
  msgid "Hey"
670
  msgstr "Hey"
671
 
672
- #: includes/class-freemius.php:22339
673
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
674
  msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode."
675
 
676
- #: includes/class-freemius.php:22347
677
  msgid "No commitment for %s days - cancel anytime!"
678
  msgstr "Ingen bindinger i %s dage - annuller når som helst!"
679
 
680
- #: includes/class-freemius.php:22348
681
  msgid "No credit card required"
682
  msgstr "Betalingskort ikke påkrævet"
683
 
684
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
685
  msgctxt "call to action"
686
  msgid "Start free trial"
687
  msgstr "Start gratis prøveperiode"
688
 
689
- #: includes/class-freemius.php:22432
690
  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!"
691
  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!"
692
 
693
- #: includes/class-freemius.php:22441
694
  msgid "Learn more"
695
  msgstr "Læs mere"
696
 
697
- #: includes/class-freemius.php22627, templates/account.php507,
698
- #: templates/account.php657, templates/connect.php179,
699
- #: templates/connect.php455, templates/forms/license-activation.php27,
700
  #: templates/account/partials/addon.php:321
701
  msgid "Activate License"
702
  msgstr "Aktiver licens"
703
 
704
- #: includes/class-freemius.php22628, templates/account.php601,
705
- #: templates/account.php656, templates/account/partials/addon.php322,
706
  #: templates/account/partials/site.php:271
707
  msgid "Change License"
708
  msgstr "Skift licens"
709
 
710
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
711
  msgid "Opt Out"
712
  msgstr "Frameld"
713
 
714
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
715
  #: templates/account/partials/site.php49,
716
  #: templates/account/partials/site.php:169
717
  msgid "Opt In"
718
  msgstr "Tilmeld"
719
 
720
- #: includes/class-freemius.php:22973
721
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
722
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
723
 
724
- #: includes/class-freemius.php:22981
725
  msgid "Activate %s features"
726
  msgstr "Aktiver funktioner i %s"
727
 
728
- #: includes/class-freemius.php:22994
729
  msgid "Please follow these steps to complete the upgrade"
730
  msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
731
 
732
- #: includes/class-freemius.php:22998
733
  msgid "Download the latest %s version"
734
  msgstr "Download den seneste version af %s"
735
 
736
- #: includes/class-freemius.php:23002
737
  msgid "Upload and activate the downloaded version"
738
  msgstr "Upload og aktiver den downloadede version"
739
 
740
- #: includes/class-freemius.php:23004
741
  msgid "How to upload and activate?"
742
  msgstr "Upload og aktivering, hvordan?"
743
 
744
- #: includes/class-freemius.php:23138
745
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
746
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
747
 
748
- #: includes/class-freemius.php:23299
749
  msgid "Auto installation only works for opted-in users."
750
  msgstr "Auto-installation fungerer kun for tilmeldte brugere."
751
 
752
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
753
- #: includes/class-fs-plugin-updater.php1218,
754
- #: includes/class-fs-plugin-updater.php:1232
755
  msgid "Invalid module ID."
756
  msgstr "Ugyldigt modul-ID."
757
 
758
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
759
  msgid "Premium version already active."
760
  msgstr "Premium version allerede aktiv."
761
 
762
- #: includes/class-freemius.php:23325
763
  msgid "You do not have a valid license to access the premium version."
764
  msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
765
 
766
- #: includes/class-freemius.php:23332
767
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
768
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
769
 
770
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
771
  msgid "Premium add-on version already installed."
772
  msgstr "Premium tilføjelse er allerede installeret."
773
 
774
- #: includes/class-freemius.php:23700
775
  msgid "View paid features"
776
  msgstr "Vis betalte features"
777
 
778
- #: includes/class-freemius.php:24022
779
  msgid "Thank you so much for using %s and its add-ons!"
780
  msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!"
781
 
782
- #: includes/class-freemius.php:24023
783
  msgid "Thank you so much for using %s!"
784
  msgstr "Tak fordi du benytter %s!"
785
 
786
- #: includes/class-freemius.php:24029
787
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
788
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
789
 
790
- #: includes/class-freemius.php:24033
791
  msgid "Thank you so much for using our products!"
792
  msgstr "Mange tak for at benytte vores produkter!"
793
 
794
- #: includes/class-freemius.php:24034
795
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
796
  msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
797
 
798
- #: includes/class-freemius.php:24053
799
  msgid "%s and its add-ons"
800
  msgstr "%s og tilføjelser"
801
 
802
- #: includes/class-freemius.php:24062
803
  msgid "Products"
804
  msgstr "Produkter"
805
 
806
- #: includes/class-freemius.php24069, templates/connect.php:280
807
  msgid "Yes"
808
  msgstr "Ja"
809
 
810
- #: includes/class-freemius.php24070, templates/connect.php:281
811
  msgid "send me security & feature updates, educational content and offers."
812
  msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
813
 
814
- #: includes/class-freemius.php24071, templates/connect.php:286
815
  msgid "No"
816
  msgstr "Nej"
817
 
818
- #: includes/class-freemius.php24073, templates/connect.php:288
819
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
820
  msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
821
 
822
- #: includes/class-freemius.php:24083
823
  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 :-)"
824
  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 :-)"
825
 
826
- #: includes/class-freemius.php24085, templates/connect.php:295
827
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
828
  msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
829
 
830
- #: includes/class-freemius.php:24367
831
  msgid "License key is empty."
832
  msgstr "Licensnøglen er tom."
833
 
@@ -860,332 +884,332 @@ msgstr "ny version"
860
  msgid "Important Upgrade Notice:"
861
  msgstr "Vigtig meddelelse til opgradering:"
862
 
863
- #: includes/class-fs-plugin-updater.php:1283
864
  msgid "Installing plugin: %s"
865
  msgstr "Installerer plugin: %s"
866
 
867
- #: includes/class-fs-plugin-updater.php:1324
868
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
869
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
870
 
871
- #: includes/class-fs-plugin-updater.php:1506
872
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
873
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
874
 
875
- #: includes/fs-plugin-info-dialog.php:535
876
  msgid "Purchase More"
877
  msgstr "Køb flere"
878
 
879
- #: includes/fs-plugin-info-dialog.php536,
880
  #: templates/account/partials/addon.php:385
881
  msgctxt "verb"
882
  msgid "Purchase"
883
  msgstr "Køb"
884
 
885
- #: includes/fs-plugin-info-dialog.php:540
886
  msgid "Start my free %s"
887
- msgstr "Start min gratis %s"
888
 
889
- #: includes/fs-plugin-info-dialog.php:738
890
  msgid "Install Free Version Update Now"
891
  msgstr "Installer opdatering til gratis version nu"
892
 
893
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
894
  msgid "Install Update Now"
895
  msgstr "Installer opdatering nu"
896
 
897
- #: includes/fs-plugin-info-dialog.php:748
898
  msgid "Install Free Version Now"
899
  msgstr "Installer gratis version nu"
900
 
901
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
902
  #: templates/auto-installation.php111,
903
  #: templates/account/partials/addon.php365,
904
  #: templates/account/partials/addon.php:418
905
  msgid "Install Now"
906
  msgstr "Installer nu"
907
 
908
- #: includes/fs-plugin-info-dialog.php:765
909
  msgctxt "as download latest version"
910
  msgid "Download Latest Free Version"
911
  msgstr "Download seneste gratis version"
912
 
913
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
914
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
915
  msgctxt "as download latest version"
916
  msgid "Download Latest"
917
  msgstr "Download seneste"
918
 
919
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
920
  #: templates/account/partials/addon.php356,
921
  #: templates/account/partials/addon.php:412
922
  msgid "Activate this add-on"
923
  msgstr "Aktiver denne tilføjelse"
924
 
925
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
926
  msgid "Activate Free Version"
927
  msgstr "Aktiver gratis version"
928
 
929
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
930
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
931
  msgid "Activate"
932
  msgstr "Aktiver"
933
 
934
- #: includes/fs-plugin-info-dialog.php:994
935
  msgctxt "Plugin installer section title"
936
  msgid "Description"
937
  msgstr "Beskrivelse"
938
 
939
- #: includes/fs-plugin-info-dialog.php:995
940
  msgctxt "Plugin installer section title"
941
  msgid "Installation"
942
  msgstr "Installering"
943
 
944
- #: includes/fs-plugin-info-dialog.php:996
945
  msgctxt "Plugin installer section title"
946
  msgid "FAQ"
947
  msgstr "FAQ"
948
 
949
- #: includes/fs-plugin-info-dialog.php997,
950
  #: templates/plugin-info/description.php:55
951
  msgid "Screenshots"
952
  msgstr "Skærmbilleder"
953
 
954
- #: includes/fs-plugin-info-dialog.php:998
955
  msgctxt "Plugin installer section title"
956
  msgid "Changelog"
957
  msgstr "Ændringslog"
958
 
959
- #: includes/fs-plugin-info-dialog.php:999
960
  msgctxt "Plugin installer section title"
961
  msgid "Reviews"
962
  msgstr "Anmeldelser"
963
 
964
- #: includes/fs-plugin-info-dialog.php:1000
965
  msgctxt "Plugin installer section title"
966
  msgid "Other Notes"
967
  msgstr "Andre noter"
968
 
969
- #: includes/fs-plugin-info-dialog.php:1015
970
  msgctxt "Plugin installer section title"
971
  msgid "Features & Pricing"
972
  msgstr "Funktioner og priser"
973
 
974
- #: includes/fs-plugin-info-dialog.php:1025
975
  msgid "Plugin Install"
976
  msgstr "Plugin-installering"
977
 
978
- #: includes/fs-plugin-info-dialog.php:1097
979
  msgctxt "e.g. Professional Plan"
980
  msgid "%s Plan"
981
  msgstr "%s Plan"
982
 
983
- #: includes/fs-plugin-info-dialog.php:1123
984
  msgctxt "e.g. the best product"
985
  msgid "Best"
986
  msgstr "Bedste"
987
 
988
- #: includes/fs-plugin-info-dialog.php1129,
989
- #: includes/fs-plugin-info-dialog.php:1149
990
  msgctxt "as every month"
991
  msgid "Monthly"
992
  msgstr "Månedligt"
993
 
994
- #: includes/fs-plugin-info-dialog.php:1132
995
  msgctxt "as once a year"
996
  msgid "Annual"
997
  msgstr "Årligt"
998
 
999
- #: includes/fs-plugin-info-dialog.php:1135
1000
  msgid "Lifetime"
1001
  msgstr "Livstid"
1002
 
1003
- #: includes/fs-plugin-info-dialog.php1149,
1004
- #: includes/fs-plugin-info-dialog.php1151,
1005
- #: includes/fs-plugin-info-dialog.php:1153
1006
  msgctxt "e.g. billed monthly"
1007
  msgid "Billed %s"
1008
  msgstr "Faktureret %s"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:1151
1011
  msgctxt "as once a year"
1012
  msgid "Annually"
1013
  msgstr "Årligt"
1014
 
1015
- #: includes/fs-plugin-info-dialog.php:1153
1016
  msgctxt "as once a year"
1017
  msgid "Once"
1018
  msgstr "Engangsbeløb"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:1159
1021
  msgid "Single Site License"
1022
  msgstr "Enkelt site licens"
1023
 
1024
- #: includes/fs-plugin-info-dialog.php:1161
1025
  msgid "Unlimited Licenses"
1026
  msgstr "Ubegrænsede licenser"
1027
 
1028
- #: includes/fs-plugin-info-dialog.php:1163
1029
  msgid "Up to %s Sites"
1030
  msgstr "Op til %s websteder"
1031
 
1032
- #: includes/fs-plugin-info-dialog.php1173,
1033
  #: templates/plugin-info/features.php:82
1034
  msgctxt "as monthly period"
1035
  msgid "mo"
1036
  msgstr "md"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php1180,
1039
  #: templates/plugin-info/features.php:80
1040
  msgctxt "as annual period"
1041
  msgid "year"
1042
  msgstr "år"
1043
 
1044
- #: includes/fs-plugin-info-dialog.php:1234
1045
  msgctxt "noun"
1046
  msgid "Price"
1047
  msgstr "Pris"
1048
 
1049
- #: includes/fs-plugin-info-dialog.php:1282
1050
  msgid "Save %s"
1051
  msgstr "Spar %s"
1052
 
1053
- #: includes/fs-plugin-info-dialog.php:1292
1054
  msgid "No commitment for %s - cancel anytime"
1055
- msgstr "Ingen bindinger ved %s - annuller når som helst"
1056
 
1057
- #: includes/fs-plugin-info-dialog.php:1295
1058
  msgid "After your free %s, pay as little as %s"
1059
- msgstr "Efter din gratis %s er prisen kun %s"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:1306
1062
  msgid "Details"
1063
  msgstr "Detaljer"
1064
 
1065
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1066
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1067
  #: templates/account/partials/addon.php:36
1068
  msgctxt "product version"
1069
  msgid "Version"
1070
  msgstr "Version"
1071
 
1072
- #: includes/fs-plugin-info-dialog.php:1317
1073
  msgctxt "as the plugin author"
1074
  msgid "Author"
1075
  msgstr "Forfatter"
1076
 
1077
- #: includes/fs-plugin-info-dialog.php:1324
1078
  msgid "Last Updated"
1079
  msgstr "Senest opdateret"
1080
 
1081
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1082
  msgctxt "x-ago"
1083
  msgid "%s ago"
1084
  msgstr "%s siden"
1085
 
1086
- #: includes/fs-plugin-info-dialog.php:1338
1087
  msgid "Requires WordPress Version"
1088
  msgstr "Kræver WordPress-version"
1089
 
1090
- #: includes/fs-plugin-info-dialog.php:1339
1091
  msgid "%s or higher"
1092
  msgstr "%s eller højere"
1093
 
1094
- #: includes/fs-plugin-info-dialog.php:1346
1095
  msgid "Compatible up to"
1096
  msgstr "Kompatibel op til"
1097
 
1098
- #: includes/fs-plugin-info-dialog.php:1354
1099
  msgid "Downloaded"
1100
  msgstr "Downloadet"
1101
 
1102
- #: includes/fs-plugin-info-dialog.php:1358
1103
  msgid "%s time"
1104
  msgstr "%s gang"
1105
 
1106
- #: includes/fs-plugin-info-dialog.php:1360
1107
  msgid "%s times"
1108
  msgstr "%s gange"
1109
 
1110
- #: includes/fs-plugin-info-dialog.php:1370
1111
  msgid "WordPress.org Plugin Page"
1112
  msgstr "WordPress.org Plugin-side"
1113
 
1114
- #: includes/fs-plugin-info-dialog.php:1378
1115
  msgid "Plugin Homepage"
1116
  msgstr "Plugin-websted"
1117
 
1118
- #: includes/fs-plugin-info-dialog.php1386,
1119
- #: includes/fs-plugin-info-dialog.php:1468
1120
  msgid "Donate to this plugin"
1121
  msgstr "Donér til dette plugin"
1122
 
1123
- #: includes/fs-plugin-info-dialog.php:1393
1124
  msgid "Average Rating"
1125
  msgstr "Gennemsnitlig vurdering"
1126
 
1127
- #: includes/fs-plugin-info-dialog.php:1400
1128
  msgid "based on %s"
1129
  msgstr "baseret på %s"
1130
 
1131
- #: includes/fs-plugin-info-dialog.php:1404
1132
  msgid "%s rating"
1133
  msgstr "%s vurdering"
1134
 
1135
- #: includes/fs-plugin-info-dialog.php:1406
1136
  msgid "%s ratings"
1137
  msgstr "%s vurderinger"
1138
 
1139
- #: includes/fs-plugin-info-dialog.php:1421
1140
  msgid "%s star"
1141
  msgstr "%s stjerne"
1142
 
1143
- #: includes/fs-plugin-info-dialog.php:1423
1144
  msgid "%s stars"
1145
  msgstr "%s stjerner"
1146
 
1147
- #: includes/fs-plugin-info-dialog.php:1434
1148
  msgid "Click to see reviews that provided a rating of %s"
1149
  msgstr "Click to see reviews that provided a rating of %s"
1150
 
1151
- #: includes/fs-plugin-info-dialog.php:1447
1152
  msgid "Contributors"
1153
  msgstr "Bidragsydere"
1154
 
1155
- #: includes/fs-plugin-info-dialog.php1476,
1156
- #: includes/fs-plugin-info-dialog.php:1478
1157
  msgid "Warning"
1158
  msgstr "Advarsel"
1159
 
1160
- #: includes/fs-plugin-info-dialog.php:1476
1161
  msgid "This plugin has not been tested with your current version of WordPress."
1162
  msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1163
 
1164
- #: includes/fs-plugin-info-dialog.php:1478
1165
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1166
  msgstr "Dette plugin er ikke markeret som kompatibel med din nuværende version af WordPress."
1167
 
1168
- #: includes/fs-plugin-info-dialog.php:1497
1169
  msgid "Paid add-on must be deployed to Freemius."
1170
  msgstr "Paid add-on must be deployed to Freemius."
1171
 
1172
- #: includes/fs-plugin-info-dialog.php:1498
1173
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1174
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1175
 
1176
- #: includes/fs-plugin-info-dialog.php:1519
1177
  msgid "Newer Version (%s) Installed"
1178
  msgstr "Nyere version (%s) installeret"
1179
 
1180
- #: includes/fs-plugin-info-dialog.php:1520
1181
  msgid "Newer Free Version (%s) Installed"
1182
  msgstr "Nyere gratis version (%s) installeret"
1183
 
1184
- #: includes/fs-plugin-info-dialog.php:1527
1185
  msgid "Latest Version Installed"
1186
  msgstr "Seneste version installeret"
1187
 
1188
- #: includes/fs-plugin-info-dialog.php:1528
1189
  msgid "Latest Free Version Installed"
1190
  msgstr "Seneste gratis version installeret"
1191
 
@@ -1292,223 +1316,231 @@ msgstr "Plan"
1292
  msgid "Bundle Plan"
1293
  msgstr "Bundle Plan"
1294
 
1295
- #: templates/account.php:199
1296
  msgid "Free Trial"
1297
  msgstr "Gratis prøveperiode"
1298
 
1299
- #: templates/account.php:210
1300
  msgid "Account Details"
1301
  msgstr "Kontodetaljer"
1302
 
1303
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1304
  msgid "Start Debug"
1305
  msgstr "Start Debug"
1306
 
1307
- #: templates/account.php:219
1308
  msgid "Stop Debug"
1309
  msgstr "Stop Debug"
1310
 
1311
- #: templates/account.php:226
1312
  msgid "Billing & Invoices"
1313
  msgstr "Fakturering"
1314
 
1315
- #: templates/account.php:237
1316
  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?"
1317
  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?"
1318
 
1319
- #: templates/account.php:239
1320
  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?"
1321
  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?"
1322
 
1323
- #: templates/account.php:242
1324
  msgid "Delete Account"
1325
  msgstr "Slet konto"
1326
 
1327
- #: templates/account.php254, templates/account/partials/addon.php231,
1328
  #: templates/account/partials/deactivate-license-button.php:35
1329
  msgid "Deactivate License"
1330
  msgstr "Deaktiver licens"
1331
 
1332
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1333
  msgid "Are you sure you want to proceed?"
1334
  msgstr "Er du sikker på, du vil fortsætte?"
1335
 
1336
- #: templates/account.php277, templates/account/partials/addon.php:255
1337
  msgid "Cancel Subscription"
1338
  msgstr "Annuller abonnement"
1339
 
1340
- #: templates/account.php306, templates/account/partials/addon.php:340
1341
  msgctxt "as synchronize"
1342
  msgid "Sync"
1343
  msgstr "Synkroniser"
1344
 
1345
- #: templates/account.php321, templates/debug.php:505
1346
  msgid "Name"
1347
  msgstr "Navn"
1348
 
1349
- #: templates/account.php327, templates/debug.php:506
1350
  msgid "Email"
1351
  msgstr "E-mail"
1352
 
1353
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1354
  msgid "User ID"
1355
  msgstr "Bruger-ID"
1356
 
1357
- #: templates/account.php352, templates/account.php670,
1358
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1359
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1360
  #: templates/debug.php632, templates/account/payments.php35,
1361
  #: templates/debug/logger.php:21
1362
  msgid "ID"
1363
  msgstr "ID"
1364
 
1365
- #: templates/account.php:359
1366
  msgid "Site ID"
1367
  msgstr "Websteds-ID"
1368
 
1369
- #: templates/account.php:362
1370
  msgid "No ID"
1371
  msgstr "Intet ID"
1372
 
1373
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1374
  #: templates/debug.php456, templates/debug.php508,
1375
  #: templates/account/partials/site.php:227
1376
  msgid "Public Key"
1377
  msgstr "Offentlig nøgle"
1378
 
1379
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1380
  #: templates/debug.php509, templates/account/partials/site.php:239
1381
  msgid "Secret Key"
1382
  msgstr "Privat nøgle"
1383
 
1384
- #: templates/account.php:376
1385
  msgctxt "as secret encryption key missing"
1386
  msgid "No Secret"
1387
  msgstr "Ingen privat nøgle"
1388
 
1389
- #: templates/account.php403, templates/account/partials/site.php120,
1390
  #: templates/account/partials/site.php:122
1391
  msgid "Trial"
1392
  msgstr "Prøveperiode"
1393
 
1394
- #: templates/account.php430, templates/debug.php561,
1395
  #: templates/account/partials/site.php:260
1396
  msgid "License Key"
1397
  msgstr "Licensnøgle"
1398
 
1399
- #: templates/account.php:461
1400
  msgid "Join the Beta program"
1401
  msgstr "Deltag i Beta-programmet"
1402
 
1403
- #: templates/account.php:467
1404
  msgid "not verified"
1405
  msgstr "ikke verificeret"
1406
 
1407
- #: templates/account.php476, templates/account/partials/addon.php:190
1408
  msgid "Expired"
1409
  msgstr "Udløbet"
1410
 
1411
- #: templates/account.php:536
1412
  msgid "Premium version"
1413
  msgstr "Premium version"
1414
 
1415
- #: templates/account.php:538
1416
  msgid "Free version"
1417
  msgstr "Gratis version"
1418
 
1419
- #: templates/account.php:550
1420
  msgid "Verify Email"
1421
  msgstr "Verificer e-mail"
1422
 
1423
- #: templates/account.php:564
1424
  msgid "Download %s Version"
1425
  msgstr "Download 1%s version"
1426
 
1427
- #: templates/account.php:580
1428
  msgid "Download Paid Version"
1429
  msgstr "Download Paid Version"
1430
 
1431
- #: templates/account.php598, templates/account.php853,
1432
  #: templates/account/partials/site.php248,
1433
  #: templates/account/partials/site.php:270
1434
  msgctxt "verb"
1435
  msgid "Show"
1436
  msgstr "Vis"
1437
 
1438
- #: templates/account.php:613
1439
  msgid "What is your %s?"
1440
  msgstr "Angiv venligst %s?"
1441
 
1442
- #: templates/account.php621, templates/account/billing.php:21
1443
  msgctxt "verb"
1444
  msgid "Edit"
1445
  msgstr "Rediger"
1446
 
1447
- #: templates/account.php625, templates/forms/user-change.php:27
1448
  msgid "Change User"
1449
  msgstr "Change User"
1450
 
1451
- #: templates/account.php:649
1452
  msgid "Sites"
1453
  msgstr "Websteder"
1454
 
1455
- #: templates/account.php:662
1456
  msgid "Search by address"
1457
  msgstr "Søg efter adresse"
1458
 
1459
- #: templates/account.php671, templates/debug.php:366
1460
  msgid "Address"
1461
  msgstr "Adresse"
1462
 
1463
- #: templates/account.php:672
1464
  msgid "License"
1465
  msgstr "Licens"
1466
 
1467
- #: templates/account.php:673
1468
  msgid "Plan"
1469
  msgstr "Plan"
1470
 
1471
- #: templates/account.php:718
1472
  msgctxt "as software license"
1473
  msgid "License"
1474
  msgstr "Licens"
1475
 
1476
- #: templates/account.php:847
1477
  msgctxt "verb"
1478
  msgid "Hide"
1479
  msgstr "Skjul"
1480
 
1481
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1482
  msgid "Processing"
1483
  msgstr "Arbejder"
1484
 
1485
- #: templates/account.php:872
1486
  msgid "Get updates for bleeding edge Beta versions of %s."
1487
  msgstr "Get updates for bleeding edge Beta versions of %s."
1488
 
1489
- #: templates/account.php:930
1490
  msgid "Cancelling %s"
1491
  msgstr "Annullerer %s"
1492
 
1493
- #: templates/account.php930, templates/account.php947,
1494
  #: templates/forms/subscription-cancellation.php27,
1495
  #: templates/forms/deactivation/form.php:133
1496
  msgid "trial"
1497
  msgstr "prøveperiode"
1498
 
1499
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1500
  msgid "Cancelling %s..."
1501
  msgstr "Annullerer %s..."
1502
 
1503
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1504
  #: templates/forms/deactivation/form.php:134
1505
  msgid "subscription"
1506
  msgstr "abonnement"
1507
 
1508
- #: templates/account.php:962
1509
  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?"
1510
  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?"
1511
 
 
 
 
 
 
 
 
 
1512
  #: templates/add-ons.php:38
1513
  msgid "View details"
1514
  msgstr "Vis detaljer"
@@ -1640,7 +1672,7 @@ msgstr "Licensnøgle"
1640
  msgid "Can't find your license key?"
1641
  msgstr "Kan du ikke finde din licensnøgle?"
1642
 
1643
- #: templates/connect.php323, templates/connect.php694,
1644
  #: templates/forms/deactivation/retry-skip.php:20
1645
  msgctxt "verb"
1646
  msgid "Skip"
@@ -1692,46 +1724,46 @@ msgstr "Nyhedsbrev"
1692
 
1693
  #: templates/connect.php:403
1694
  msgid "Plugins & Themes"
1695
- msgstr "Plugins & Themes"
1696
 
1697
  #: templates/connect.php:404
1698
  msgid "Title, slug, version, and is active"
1699
  msgstr "Title, slug, version, and is active"
1700
 
1701
- #: templates/connect.php420, templates/forms/license-activation.php:41
1702
  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."
1703
  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."
1704
 
1705
- #: templates/connect.php:425
1706
  msgid "What permissions are being granted?"
1707
  msgstr "Hvilke tilladelser bliver givet?"
1708
 
1709
- #: templates/connect.php:451
1710
  msgid "Don't have a license key?"
1711
  msgstr "Har du ikke en licensnøgle?"
1712
 
1713
- #: templates/connect.php:454
1714
  msgid "Have a license key?"
1715
  msgstr "Har du en licensnøgle?"
1716
 
1717
- #: templates/connect.php:462
1718
  msgid "Privacy Policy"
1719
  msgstr "Privatlivspolitik"
1720
 
1721
- #: templates/connect.php:464
1722
  msgid "License Agreement"
1723
  msgstr "Licensaftale"
1724
 
1725
- #: templates/connect.php:464
1726
  msgid "Terms of Service"
1727
  msgstr "Servicevilkår"
1728
 
1729
- #: templates/connect.php:853
1730
  msgctxt "as in the process of sending an email"
1731
  msgid "Sending email"
1732
  msgstr "Sender e-mail"
1733
 
1734
- #: templates/connect.php:854
1735
  msgctxt "as activating plugin"
1736
  msgid "Activating"
1737
  msgstr "Aktiverer"
@@ -2178,135 +2210,135 @@ msgstr "Udløber ikke"
2178
  msgid "Apply to become an affiliate"
2179
  msgstr "Ansøg om at blive en affiliate"
2180
 
2181
- #: templates/forms/affiliation.php:104
2182
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2183
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2184
 
2185
- #: templates/forms/affiliation.php:119
2186
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2187
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2188
 
2189
- #: templates/forms/affiliation.php:122
2190
  msgid "Your affiliation account was temporarily suspended."
2191
  msgstr "Your affiliation account was temporarily suspended."
2192
 
2193
- #: templates/forms/affiliation.php:125
2194
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2195
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2196
 
2197
- #: templates/forms/affiliation.php:128
2198
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2199
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2200
 
2201
- #: templates/forms/affiliation.php:141
2202
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2203
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2204
 
2205
- #: templates/forms/affiliation.php:142
2206
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2207
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2208
 
2209
- #: templates/forms/affiliation.php:145
2210
  msgid "Program Summary"
2211
  msgstr "Programoversigt"
2212
 
2213
- #: templates/forms/affiliation.php:147
2214
  msgid "%s commission when a customer purchases a new license."
2215
  msgstr "%s commission when a customer purchases a new license."
2216
 
2217
- #: templates/forms/affiliation.php:149
2218
  msgid "Get commission for automated subscription renewals."
2219
  msgstr "Get commission for automated subscription renewals."
2220
 
2221
- #: templates/forms/affiliation.php:152
2222
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2223
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2224
 
2225
- #: templates/forms/affiliation.php:155
2226
  msgid "Unlimited commissions."
2227
  msgstr "Ubegrænset provision."
2228
 
2229
- #: templates/forms/affiliation.php:157
2230
  msgid "%s minimum payout amount."
2231
  msgstr "%s minimum payout amount."
2232
 
2233
- #: templates/forms/affiliation.php:158
2234
  msgid "Payouts are in USD and processed monthly via PayPal."
2235
  msgstr "Udbetalinger er i USD og behandles hver måned via PayPal."
2236
 
2237
- #: templates/forms/affiliation.php:159
2238
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2239
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2240
 
2241
- #: templates/forms/affiliation.php:162
2242
  msgid "Affiliate"
2243
  msgstr "Affiliate"
2244
 
2245
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2246
  msgid "Email address"
2247
  msgstr "E-mailadresse"
2248
 
2249
- #: templates/forms/affiliation.php:169
2250
  msgid "Full name"
2251
  msgstr "Fulde navn"
2252
 
2253
- #: templates/forms/affiliation.php:173
2254
  msgid "PayPal account email address"
2255
  msgstr "E-mailadresse til PayPal-konto"
2256
 
2257
- #: templates/forms/affiliation.php:177
2258
  msgid "Where are you going to promote the %s?"
2259
  msgstr "Hvor vil du promovere %s?"
2260
 
2261
- #: templates/forms/affiliation.php:179
2262
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2263
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2264
 
2265
- #: templates/forms/affiliation.php:181
2266
  msgid "Add another domain"
2267
  msgstr "Tilføj andet domæne"
2268
 
2269
- #: templates/forms/affiliation.php:185
2270
  msgid "Extra Domains"
2271
  msgstr "Ekstra domæner"
2272
 
2273
- #: templates/forms/affiliation.php:186
2274
  msgid "Extra domains where you will be marketing the product from."
2275
  msgstr "Andre domæner du vil markedsføre produktet fra."
2276
 
2277
- #: templates/forms/affiliation.php:196
2278
  msgid "Promotion methods"
2279
  msgstr "Promoveringsmetoder"
2280
 
2281
- #: templates/forms/affiliation.php:199
2282
  msgid "Social media (Facebook, Twitter, etc.)"
2283
  msgstr "Sociale medier (Facebook, Twitter osv.)"
2284
 
2285
- #: templates/forms/affiliation.php:203
2286
  msgid "Mobile apps"
2287
  msgstr "Mobil-apps"
2288
 
2289
- #: templates/forms/affiliation.php:207
2290
  msgid "Website, email, and social media statistics (optional)"
2291
  msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2292
 
2293
- #: templates/forms/affiliation.php:210
2294
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2295
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2296
 
2297
- #: templates/forms/affiliation.php:214
2298
  msgid "How will you promote us?"
2299
  msgstr "Hvordan vil du promovere os?"
2300
 
2301
- #: templates/forms/affiliation.php:217
2302
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2303
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2304
 
2305
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2306
  msgid "Cancel"
2307
  msgstr "Annuller"
2308
 
2309
- #: templates/forms/affiliation.php:225
2310
  msgid "Become an affiliate"
2311
  msgstr "Bliv en affiliate"
2312
 
@@ -2370,7 +2402,7 @@ msgstr "Usage tracking is done in the name of making %s better. Making a better
2370
 
2371
  #: templates/forms/optout.php:45
2372
  msgid "On second thought - I want to continue helping"
2373
- msgstr "On second thought - I want to continue helping"
2374
 
2375
  #: templates/forms/optout.php:49
2376
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
@@ -2380,7 +2412,7 @@ msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s.
2380
  msgid "Plugins & themes tracking"
2381
  msgstr "Plugins & themes tracking"
2382
 
2383
- #: templates/forms/optout.php:256
2384
  msgid "Saved"
2385
  msgstr "Saved"
2386
 
@@ -2469,7 +2501,7 @@ msgstr "Enter email address"
2469
  #: templates/forms/user-change.php:81
2470
  msgctxt "close window"
2471
  msgid "Dismiss"
2472
- msgstr "Dismiss"
2473
 
2474
  #: templates/js/style-premium-theme.php:39
2475
  msgid "Premium"
@@ -2598,19 +2630,19 @@ msgstr "deaktiverer"
2598
  msgid "switching"
2599
  msgstr "skifter"
2600
 
2601
- #: templates/forms/deactivation/form.php:365
2602
  msgid "Submit & %s"
2603
  msgstr "Send & %s"
2604
 
2605
- #: templates/forms/deactivation/form.php:386
2606
  msgid "Kindly tell us the reason so we can improve."
2607
  msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2608
 
2609
- #: templates/forms/deactivation/form.php:511
2610
  msgid "Yes - %s"
2611
  msgstr "Ja - %s"
2612
 
2613
- #: templates/forms/deactivation/form.php:518
2614
  msgid "Skip & %s"
2615
  msgstr "Spring over & %s"
2616
 
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
5
  # Joachim Jensen, 2016-2018
6
  # Lars Koudal, 2018-2019
7
  msgid ""
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
  "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
  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
 
899
+ #: includes/fs-plugin-info-dialog.php:541
900
  msgid "Purchase More"
901
  msgstr "Køb flere"
902
 
903
+ #: includes/fs-plugin-info-dialog.php542,
904
  #: templates/account/partials/addon.php:385
905
  msgctxt "verb"
906
  msgid "Purchase"
907
  msgstr "Køb"
908
 
909
+ #: includes/fs-plugin-info-dialog.php:546
910
  msgid "Start my free %s"
911
+ msgstr "Start mine gratis %s"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:744
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
 
921
+ #: includes/fs-plugin-info-dialog.php:754
922
  msgid "Install Free Version Now"
923
  msgstr "Installer gratis version nu"
924
 
925
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
926
  #: templates/auto-installation.php111,
927
  #: templates/account/partials/addon.php365,
928
  #: templates/account/partials/addon.php:418
929
  msgid "Install Now"
930
  msgstr "Installer nu"
931
 
932
+ #: includes/fs-plugin-info-dialog.php:771
933
  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"
941
  msgstr "Download seneste"
942
 
943
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
944
  #: templates/account/partials/addon.php356,
945
  #: templates/account/partials/addon.php:412
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"
957
 
958
+ #: includes/fs-plugin-info-dialog.php:1002
959
  msgctxt "Plugin installer section title"
960
  msgid "Description"
961
  msgstr "Beskrivelse"
962
 
963
+ #: includes/fs-plugin-info-dialog.php:1003
964
  msgctxt "Plugin installer section title"
965
  msgid "Installation"
966
  msgstr "Installering"
967
 
968
+ #: includes/fs-plugin-info-dialog.php:1004
969
  msgctxt "Plugin installer section title"
970
  msgid "FAQ"
971
  msgstr "FAQ"
972
 
973
+ #: includes/fs-plugin-info-dialog.php1005,
974
  #: templates/plugin-info/description.php:55
975
  msgid "Screenshots"
976
  msgstr "Skærmbilleder"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1006
979
  msgctxt "Plugin installer section title"
980
  msgid "Changelog"
981
  msgstr "Ændringslog"
982
 
983
+ #: includes/fs-plugin-info-dialog.php:1007
984
  msgctxt "Plugin installer section title"
985
  msgid "Reviews"
986
  msgstr "Anmeldelser"
987
 
988
+ #: includes/fs-plugin-info-dialog.php:1008
989
  msgctxt "Plugin installer section title"
990
  msgid "Other Notes"
991
  msgstr "Andre noter"
992
 
993
+ #: includes/fs-plugin-info-dialog.php:1023
994
  msgctxt "Plugin installer section title"
995
  msgid "Features & Pricing"
996
  msgstr "Funktioner og priser"
997
 
998
+ #: includes/fs-plugin-info-dialog.php:1033
999
  msgid "Plugin Install"
1000
  msgstr "Plugin-installering"
1001
 
1002
+ #: includes/fs-plugin-info-dialog.php:1105
1003
  msgctxt "e.g. Professional Plan"
1004
  msgid "%s Plan"
1005
  msgstr "%s Plan"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1131
1008
  msgctxt "e.g. the best product"
1009
  msgid "Best"
1010
  msgstr "Bedste"
1011
 
1012
+ #: includes/fs-plugin-info-dialog.php1137,
1013
+ #: includes/fs-plugin-info-dialog.php:1157
1014
  msgctxt "as every month"
1015
  msgid "Monthly"
1016
  msgstr "Månedligt"
1017
 
1018
+ #: includes/fs-plugin-info-dialog.php:1140
1019
  msgctxt "as once a year"
1020
  msgid "Annual"
1021
  msgstr "Årligt"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1143
1024
  msgid "Lifetime"
1025
  msgstr "Livstid"
1026
 
1027
+ #: includes/fs-plugin-info-dialog.php1157,
1028
+ #: includes/fs-plugin-info-dialog.php1159,
1029
+ #: includes/fs-plugin-info-dialog.php:1161
1030
  msgctxt "e.g. billed monthly"
1031
  msgid "Billed %s"
1032
  msgstr "Faktureret %s"
1033
 
1034
+ #: includes/fs-plugin-info-dialog.php:1159
1035
  msgctxt "as once a year"
1036
  msgid "Annually"
1037
  msgstr "Årligt"
1038
 
1039
+ #: includes/fs-plugin-info-dialog.php:1161
1040
  msgctxt "as once a year"
1041
  msgid "Once"
1042
  msgstr "Engangsbeløb"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php:1167
1045
  msgid "Single Site License"
1046
  msgstr "Enkelt site licens"
1047
 
1048
+ #: includes/fs-plugin-info-dialog.php:1169
1049
  msgid "Unlimited Licenses"
1050
  msgstr "Ubegrænsede licenser"
1051
 
1052
+ #: includes/fs-plugin-info-dialog.php:1171
1053
  msgid "Up to %s Sites"
1054
  msgstr "Op til %s websteder"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php1181,
1057
  #: templates/plugin-info/features.php:82
1058
  msgctxt "as monthly period"
1059
  msgid "mo"
1060
  msgstr "md"
1061
 
1062
+ #: includes/fs-plugin-info-dialog.php1188,
1063
  #: templates/plugin-info/features.php:80
1064
  msgctxt "as annual period"
1065
  msgid "year"
1066
  msgstr "år"
1067
 
1068
+ #: includes/fs-plugin-info-dialog.php:1242
1069
  msgctxt "noun"
1070
  msgid "Price"
1071
  msgstr "Pris"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1290
1074
  msgid "Save %s"
1075
  msgstr "Spar %s"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1300
1078
  msgid "No commitment for %s - cancel anytime"
1079
+ msgstr "Ingen bindinger i %s - annuller når som helst"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1303
1082
  msgid "After your free %s, pay as little as %s"
1083
+ msgstr "Efter dine gratis %s er prisen kun %s"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1093
  msgid "Version"
1094
  msgstr "Version"
1095
 
1096
+ #: includes/fs-plugin-info-dialog.php:1325
1097
  msgctxt "as the plugin author"
1098
  msgid "Author"
1099
  msgstr "Forfatter"
1100
 
1101
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1346
1111
  msgid "Requires WordPress Version"
1112
  msgstr "Kræver WordPress-version"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1347
1115
  msgid "%s or higher"
1116
  msgstr "%s eller højere"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1354
1119
  msgid "Compatible up to"
1120
  msgstr "Kompatibel op til"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1362
1123
  msgid "Downloaded"
1124
  msgstr "Downloadet"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1366
1127
  msgid "%s time"
1128
  msgstr "%s gang"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1368
1131
  msgid "%s times"
1132
  msgstr "%s gange"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php:1379
1135
  msgid "WordPress.org Plugin Page"
1136
  msgstr "WordPress.org Plugin-side"
1137
 
1138
+ #: includes/fs-plugin-info-dialog.php:1388
1139
  msgid "Plugin Homepage"
1140
  msgstr "Plugin-websted"
1141
 
1142
+ #: includes/fs-plugin-info-dialog.php1397,
1143
+ #: includes/fs-plugin-info-dialog.php:1481
1144
  msgid "Donate to this plugin"
1145
  msgstr "Donér til dette plugin"
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1404
1148
  msgid "Average Rating"
1149
  msgstr "Gennemsnitlig vurdering"
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1411
1152
  msgid "based on %s"
1153
  msgstr "baseret på %s"
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1415
1156
  msgid "%s rating"
1157
  msgstr "%s vurdering"
1158
 
1159
+ #: includes/fs-plugin-info-dialog.php:1417
1160
  msgid "%s ratings"
1161
  msgstr "%s vurderinger"
1162
 
1163
+ #: includes/fs-plugin-info-dialog.php:1432
1164
  msgid "%s star"
1165
  msgstr "%s stjerne"
1166
 
1167
+ #: includes/fs-plugin-info-dialog.php:1434
1168
  msgid "%s stars"
1169
  msgstr "%s stjerner"
1170
 
1171
+ #: includes/fs-plugin-info-dialog.php:1446
1172
  msgid "Click to see reviews that provided a rating of %s"
1173
  msgstr "Click to see reviews that provided a rating of %s"
1174
 
1175
+ #: includes/fs-plugin-info-dialog.php:1459
1176
  msgid "Contributors"
1177
  msgstr "Bidragsydere"
1178
 
1179
+ #: includes/fs-plugin-info-dialog.php1489,
1180
+ #: includes/fs-plugin-info-dialog.php:1491
1181
  msgid "Warning"
1182
  msgstr "Advarsel"
1183
 
1184
+ #: includes/fs-plugin-info-dialog.php:1489
1185
  msgid "This plugin has not been tested with your current version of WordPress."
1186
  msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1187
 
1188
+ #: includes/fs-plugin-info-dialog.php:1491
1189
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1190
  msgstr "Dette plugin er ikke markeret som kompatibel med din nuværende version af WordPress."
1191
 
1192
+ #: includes/fs-plugin-info-dialog.php:1510
1193
  msgid "Paid add-on must be deployed to Freemius."
1194
  msgstr "Paid add-on must be deployed to Freemius."
1195
 
1196
+ #: includes/fs-plugin-info-dialog.php:1511
1197
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1198
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1199
 
1200
+ #: includes/fs-plugin-info-dialog.php:1532
1201
  msgid "Newer Version (%s) Installed"
1202
  msgstr "Nyere version (%s) installeret"
1203
 
1204
+ #: includes/fs-plugin-info-dialog.php:1533
1205
  msgid "Newer Free Version (%s) Installed"
1206
  msgstr "Nyere gratis version (%s) installeret"
1207
 
1208
+ #: includes/fs-plugin-info-dialog.php:1540
1209
  msgid "Latest Version Installed"
1210
  msgstr "Seneste version installeret"
1211
 
1212
+ #: includes/fs-plugin-info-dialog.php:1541
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "Seneste gratis version installeret"
1215
 
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
+
1544
  #: templates/add-ons.php:38
1545
  msgid "View details"
1546
  msgstr "Vis detaljer"
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"
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"
2210
  msgid "Apply to become an affiliate"
2211
  msgstr "Ansøg om at blive en affiliate"
2212
 
2213
+ #: templates/forms/affiliation.php:107
2214
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2215
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2216
 
2217
+ #: templates/forms/affiliation.php:122
2218
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2219
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2220
 
2221
+ #: templates/forms/affiliation.php:125
2222
  msgid "Your affiliation account was temporarily suspended."
2223
  msgstr "Your affiliation account was temporarily suspended."
2224
 
2225
+ #: templates/forms/affiliation.php:128
2226
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2227
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2228
 
2229
+ #: templates/forms/affiliation.php:131
2230
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2231
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2232
 
2233
+ #: templates/forms/affiliation.php:144
2234
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2235
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2236
 
2237
+ #: templates/forms/affiliation.php:145
2238
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2239
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2240
 
2241
+ #: templates/forms/affiliation.php:148
2242
  msgid "Program Summary"
2243
  msgstr "Programoversigt"
2244
 
2245
+ #: templates/forms/affiliation.php:150
2246
  msgid "%s commission when a customer purchases a new license."
2247
  msgstr "%s commission when a customer purchases a new license."
2248
 
2249
+ #: templates/forms/affiliation.php:152
2250
  msgid "Get commission for automated subscription renewals."
2251
  msgstr "Get commission for automated subscription renewals."
2252
 
2253
+ #: templates/forms/affiliation.php:155
2254
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2255
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2256
 
2257
+ #: templates/forms/affiliation.php:158
2258
  msgid "Unlimited commissions."
2259
  msgstr "Ubegrænset provision."
2260
 
2261
+ #: templates/forms/affiliation.php:160
2262
  msgid "%s minimum payout amount."
2263
  msgstr "%s minimum payout amount."
2264
 
2265
+ #: templates/forms/affiliation.php:161
2266
  msgid "Payouts are in USD and processed monthly via PayPal."
2267
  msgstr "Udbetalinger er i USD og behandles hver måned via PayPal."
2268
 
2269
+ #: templates/forms/affiliation.php:162
2270
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2271
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2272
 
2273
+ #: templates/forms/affiliation.php:165
2274
  msgid "Affiliate"
2275
  msgstr "Affiliate"
2276
 
2277
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2278
  msgid "Email address"
2279
  msgstr "E-mailadresse"
2280
 
2281
+ #: templates/forms/affiliation.php:172
2282
  msgid "Full name"
2283
  msgstr "Fulde navn"
2284
 
2285
+ #: templates/forms/affiliation.php:176
2286
  msgid "PayPal account email address"
2287
  msgstr "E-mailadresse til PayPal-konto"
2288
 
2289
+ #: templates/forms/affiliation.php:180
2290
  msgid "Where are you going to promote the %s?"
2291
  msgstr "Hvor vil du promovere %s?"
2292
 
2293
+ #: templates/forms/affiliation.php:182
2294
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2295
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2296
 
2297
+ #: templates/forms/affiliation.php:184
2298
  msgid "Add another domain"
2299
  msgstr "Tilføj andet domæne"
2300
 
2301
+ #: templates/forms/affiliation.php:188
2302
  msgid "Extra Domains"
2303
  msgstr "Ekstra domæner"
2304
 
2305
+ #: templates/forms/affiliation.php:189
2306
  msgid "Extra domains where you will be marketing the product from."
2307
  msgstr "Andre domæner du vil markedsføre produktet fra."
2308
 
2309
+ #: templates/forms/affiliation.php:199
2310
  msgid "Promotion methods"
2311
  msgstr "Promoveringsmetoder"
2312
 
2313
+ #: templates/forms/affiliation.php:202
2314
  msgid "Social media (Facebook, Twitter, etc.)"
2315
  msgstr "Sociale medier (Facebook, Twitter osv.)"
2316
 
2317
+ #: templates/forms/affiliation.php:206
2318
  msgid "Mobile apps"
2319
  msgstr "Mobil-apps"
2320
 
2321
+ #: templates/forms/affiliation.php:210
2322
  msgid "Website, email, and social media statistics (optional)"
2323
  msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2324
 
2325
+ #: templates/forms/affiliation.php:213
2326
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2327
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2328
 
2329
+ #: templates/forms/affiliation.php:217
2330
  msgid "How will you promote us?"
2331
  msgstr "Hvordan vil du promovere os?"
2332
 
2333
+ #: templates/forms/affiliation.php:220
2334
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2335
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2336
 
2337
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2338
  msgid "Cancel"
2339
  msgstr "Annuller"
2340
 
2341
+ #: templates/forms/affiliation.php:234
2342
  msgid "Become an affiliate"
2343
  msgstr "Bliv en affiliate"
2344
 
2402
 
2403
  #: templates/forms/optout.php:45
2404
  msgid "On second thought - I want to continue helping"
2405
+ msgstr "Ved nærmere eftertanke - Jeg vil fortsætte med at hjælpe"
2406
 
2407
  #: templates/forms/optout.php:49
2408
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2412
  msgid "Plugins & themes tracking"
2413
  msgstr "Plugins & themes tracking"
2414
 
2415
+ #: templates/forms/optout.php:261
2416
  msgid "Saved"
2417
  msgstr "Saved"
2418
 
2501
  #: templates/forms/user-change.php:81
2502
  msgctxt "close window"
2503
  msgid "Dismiss"
2504
+ msgstr "Fjern"
2505
 
2506
  #: templates/js/style-premium-theme.php:39
2507
  msgid "Premium"
2630
  msgid "switching"
2631
  msgstr "skifter"
2632
 
2633
+ #: templates/forms/deactivation/form.php:369
2634
  msgid "Submit & %s"
2635
  msgstr "Send & %s"
2636
 
2637
+ #: templates/forms/deactivation/form.php:390
2638
  msgid "Kindly tell us the reason so we can improve."
2639
  msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2640
 
2641
+ #: templates/forms/deactivation/form.php:515
2642
  msgid "Yes - %s"
2643
  msgstr "Ja - %s"
2644
 
2645
+ #: templates/forms/deactivation/form.php:522
2646
  msgid "Skip & %s"
2647
  msgstr "Spring over & %s"
2648
 
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) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  msgid ""
4
  msgstr ""
@@ -19,771 +19,795 @@ msgstr ""
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
- #: includes/class-freemius.php:1881, templates/account.php:873
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:1888
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:2096
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:2098
35
  msgid "Error"
36
  msgstr "Error"
37
 
38
- #: includes/class-freemius.php:2492
39
  msgid "I found a better %s"
40
  msgstr "I found a better %s"
41
 
42
- #: includes/class-freemius.php:2494
43
  msgid "What's the %s's name?"
44
  msgstr "What's the %s's name?"
45
 
46
- #: includes/class-freemius.php:2500
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:2502
51
  msgid "Deactivation"
52
  msgstr "Deactivation"
53
 
54
- #: includes/class-freemius.php:2503
55
  msgid "Theme Switch"
56
  msgstr "Theme Switch"
57
 
58
- #: includes/class-freemius.php:2512, templates/forms/resend-key.php:24, templates/forms/user-change.php:29
59
  msgid "Other"
60
  msgstr "Other"
61
 
62
- #: includes/class-freemius.php:2520
63
  msgid "I no longer need the %s"
64
  msgstr "I no longer need the %s"
65
 
66
- #: includes/class-freemius.php:2527
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:2533
71
  msgid "The %s broke my site"
72
  msgstr "The %s broke my site"
73
 
74
- #: includes/class-freemius.php:2540
75
  msgid "The %s suddenly stopped working"
76
  msgstr "The %s suddenly stopped working"
77
 
78
- #: includes/class-freemius.php:2550
79
  msgid "I can't pay for it anymore"
80
  msgstr "I can't pay for it anymore"
81
 
82
- #: includes/class-freemius.php:2552
83
  msgid "What price would you feel comfortable paying?"
84
  msgstr "What price would you feel comfortable paying?"
85
 
86
- #: includes/class-freemius.php:2558
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:2579
91
  msgid "The %s didn't work"
92
  msgstr "The %s didn't work"
93
 
94
- #: includes/class-freemius.php:2589
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:2597
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:2599
103
  msgid "What feature?"
104
  msgstr "What feature?"
105
 
106
- #: includes/class-freemius.php:2603
107
  msgid "The %s is not working"
108
  msgstr "The %s is not working"
109
 
110
- #: includes/class-freemius.php:2605
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:2609
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:2611
119
  msgid "What you've been looking for?"
120
  msgstr "What you've been looking for?"
121
 
122
- #: includes/class-freemius.php:2615
123
  msgid "The %s didn't work as expected"
124
  msgstr "The %s didn't work as expected"
125
 
126
- #: includes/class-freemius.php:2617
127
  msgid "What did you expect?"
128
  msgstr "What did you expect?"
129
 
130
- #: includes/class-freemius.php:3472, templates/debug.php:20
131
  msgid "Freemius Debug"
132
  msgstr "Freemius Debug"
133
 
134
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
147
  msgid "Yes - do your thing"
148
  msgstr "Yes - do your thing"
149
 
150
- #: includes/class-freemius.php:4343
151
  msgid "No - just deactivate"
152
  msgstr "No - just deactivate"
153
 
154
- #: includes/class-freemius.php:4388, includes/class-freemius.php:4882, includes/class-freemius.php:6111, includes/class-freemius.php:12933, includes/class-freemius.php:13571, includes/class-freemius.php:17006, includes/class-freemius.php:17094, includes/class-freemius.php:17260, includes/class-freemius.php:19492, includes/class-freemius.php:19833, includes/class-freemius.php:19843, includes/class-freemius.php:20507, includes/class-freemius.php:21413, includes/class-freemius.php:21546, includes/class-freemius.php:21690, templates/add-ons.php:57
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
- #: includes/class-freemius.php:4457
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:4879
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:4880
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:5053, includes/class-freemius.php:5078, includes/class-freemius.php:20578
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:5777
178
  msgid "Premium %s version was successfully activated."
179
  msgstr "Premium %s version was successfully activated."
180
 
181
- #: includes/class-freemius.php:5789, includes/class-freemius.php:7682
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:5804
187
  msgid "You have a %s license."
188
  msgstr "You have a %s license."
189
 
190
- #: includes/class-freemius.php:5808, includes/class-freemius.php:16405, includes/class-freemius.php:16416, includes/class-freemius.php:19744, includes/class-freemius.php:20094, includes/class-freemius.php:20163, includes/class-freemius.php:20328
191
  msgctxt "interjection expressing joy or exuberance"
192
  msgid "Yee-haw"
193
  msgstr "Yee-haw"
194
 
195
- #: includes/class-freemius.php:6094
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:6098
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:6107, 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:6108
208
  msgid "Purchase License"
209
  msgstr "Purchase License"
210
 
211
- #: includes/class-freemius.php:7047, 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:7051
216
  msgid "start the trial"
217
  msgstr "start the trial"
218
 
219
- #: includes/class-freemius.php:7052, templates/connect.php:175
220
  msgid "complete the install"
221
  msgstr "complete the install"
222
 
223
- #: includes/class-freemius.php:7164
224
  msgid "You are just one step away - %s"
225
  msgstr "You are just one step away - %s"
226
 
227
- #: includes/class-freemius.php:7167
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:7245
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:7249
237
  msgid "Opt in to make \"%s\" better!"
238
  msgstr "Opt in to make \"%s\" better!"
239
 
240
- #: includes/class-freemius.php:7681
241
  msgid "The upgrade of %s was successfully completed."
242
  msgstr "The upgrade of %s was successfully completed."
243
 
244
- #: includes/class-freemius.php:9908, includes/class-fs-plugin-updater.php:1044, includes/class-fs-plugin-updater.php:1239, includes/class-fs-plugin-updater.php:1246, templates/auto-installation.php:32
245
  msgid "Add-On"
246
  msgstr "Add-On"
247
 
248
- #: includes/class-freemius.php:9910, templates/account.php:343, templates/account.php:351, templates/debug.php:358, templates/debug.php:549
249
  msgid "Plugin"
250
  msgstr "Plugin"
251
 
252
- #: includes/class-freemius.php:9911, templates/account.php:344, templates/account.php:352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  msgid "An unknown error has occurred while trying to set the user's beta mode."
258
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
259
 
260
- #: includes/class-freemius.php:12904
261
  msgid "Invalid new user ID or email address."
262
  msgstr "Invalid new user ID or email address."
263
 
264
- #: includes/class-freemius.php:12934, includes/class-freemius.php:21645
265
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
266
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
267
 
268
- #: includes/class-freemius.php:12935, includes/class-freemius.php:21646
269
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
270
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
271
 
272
- #: includes/class-freemius.php:12942, includes/class-freemius.php:21653
273
  msgid "Change Ownership"
274
  msgstr "Change Ownership"
275
 
276
- #: includes/class-freemius.php:13438
277
  msgid "Invalid site details collection."
278
  msgstr "Invalid site details collection."
279
 
280
- #: includes/class-freemius.php:13558
281
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
282
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
283
 
284
- #: includes/class-freemius.php:13560
285
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
286
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
287
 
288
- #: includes/class-freemius.php:13834
289
  msgid "Account is pending activation."
290
  msgstr "Account is pending activation."
291
 
292
- #: includes/class-freemius.php:13946, templates/forms/premium-versions-upgrade-handler.php:47
293
  msgid "Buy a license now"
294
  msgstr "Buy a license now"
295
 
296
- #: includes/class-freemius.php:13958, templates/forms/premium-versions-upgrade-handler.php:46
297
  msgid "Renew your license now"
298
  msgstr "Renew your license now"
299
 
300
- #: includes/class-freemius.php:13962
301
  msgid "%s to access version %s security & feature updates, and support."
302
  msgstr "%s to access version %s security & feature updates, and support."
303
 
304
- #: includes/class-freemius.php:16387
305
  msgid "%s activation was successfully completed."
306
  msgstr "%s activation was successfully completed."
307
 
308
- #: includes/class-freemius.php:16401
309
  msgid "Your account was successfully activated with the %s plan."
310
  msgstr "Your account was successfully activated with the %s plan."
311
 
312
- #: includes/class-freemius.php:16412, includes/class-freemius.php:20159
313
  msgid "Your trial has been successfully started."
314
  msgstr "Your trial has been successfully started."
315
 
316
- #: includes/class-freemius.php:17004, includes/class-freemius.php:17092, includes/class-freemius.php:17258
317
  msgid "Couldn't activate %s."
318
  msgstr "Couldn't activate %s."
319
 
320
- #: includes/class-freemius.php:17005, includes/class-freemius.php:17093, includes/class-freemius.php:17259
321
  msgid "Please contact us with the following message:"
322
  msgstr "Please contact us with the following message:"
323
 
324
- #: includes/class-freemius.php:17089, templates/forms/data-debug-mode.php:162
325
  msgid "An unknown error has occurred."
326
  msgstr "An unknown error has occurred."
327
 
328
- #: includes/class-freemius.php:17616, includes/class-freemius.php:22589
329
  msgid "Upgrade"
330
  msgstr "Upgrade"
331
 
332
- #: includes/class-freemius.php:17622
333
  msgid "Start Trial"
334
  msgstr "Start Trial"
335
 
336
- #: includes/class-freemius.php:17624
337
  msgid "Pricing"
338
  msgstr "Pricing"
339
 
340
- #: includes/class-freemius.php:17704, includes/class-freemius.php:17706
341
  msgid "Affiliation"
342
  msgstr "Affiliation"
343
 
344
- #: includes/class-freemius.php:17734, includes/class-freemius.php:17736, templates/account.php:191, templates/debug.php:324
345
  msgid "Account"
346
  msgstr "Account"
347
 
348
- #: includes/class-freemius.php:17750, includes/class-freemius.php:17752, includes/customizer/class-fs-customizer-support-section.php:60
349
  msgid "Contact Us"
350
  msgstr "Contact Us"
351
 
352
- #: includes/class-freemius.php:17763, includes/class-freemius.php:17765, includes/class-freemius.php:22603, templates/account.php:119, templates/account/partials/addon.php:44
353
  msgid "Add-Ons"
354
  msgstr "Add-Ons"
355
 
356
- #: includes/class-freemius.php:17799
357
  msgctxt "ASCII arrow left icon"
358
  msgid "&#x2190;"
359
  msgstr "&#x2190;"
360
 
361
- #: includes/class-freemius.php:17799
362
  msgctxt "ASCII arrow right icon"
363
  msgid "&#x27a4;"
364
  msgstr "&#x27a4;"
365
 
366
- #: includes/class-freemius.php:17801, templates/pricing.php:103
367
  msgctxt "noun"
368
  msgid "Pricing"
369
  msgstr "Pricing"
370
 
371
- #: includes/class-freemius.php:18014, includes/customizer/class-fs-customizer-support-section.php:67
372
  msgid "Support Forum"
373
  msgstr "Support Forum"
374
 
375
- #: includes/class-freemius.php:18988
376
  msgid "Your email has been successfully verified - you are AWESOME!"
377
  msgstr "Your email has been successfully verified - you are AWESOME!"
378
 
379
- #: includes/class-freemius.php:18989
380
  msgctxt "a positive response"
381
  msgid "Right on"
382
  msgstr "Right on"
383
 
384
- #: includes/class-freemius.php:19493
385
  msgid "seems like the key you entered doesn't match our records."
386
  msgstr "seems like the key you entered doesn't match our records."
387
 
388
- #: includes/class-freemius.php:19517
389
  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."
390
  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."
391
 
392
- #: includes/class-freemius.php:19735
393
  msgid "Your %s Add-on plan was successfully upgraded."
394
  msgstr "Your %s Add-on plan was successfully upgraded."
395
 
396
- #: includes/class-freemius.php:19737
397
  msgid "%s Add-on was successfully purchased."
398
  msgstr "%s Add-on was successfully purchased."
399
 
400
- #: includes/class-freemius.php:19740
401
  msgid "Download the latest version"
402
  msgstr "Download the latest version"
403
 
404
- #: includes/class-freemius.php:19826
405
  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"
406
  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"
407
 
408
- #: includes/class-freemius.php:19832, includes/class-freemius.php:19842, includes/class-freemius.php:20287, includes/class-freemius.php:20376
409
  msgid "Error received from the server:"
410
  msgstr "Error received from the server:"
411
 
412
- #: includes/class-freemius.php:19842
413
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
414
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
415
 
416
- #: includes/class-freemius.php:20056, includes/class-freemius.php:20292, includes/class-freemius.php:20347, includes/class-freemius.php:20454
417
  msgctxt "something somebody says when they are thinking about what you have just said."
418
  msgid "Hmm"
419
  msgstr "Hmm"
420
 
421
- #: includes/class-freemius.php:20069
422
  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."
423
  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."
424
 
425
- #: includes/class-freemius.php:20070, templates/account.php:121, templates/add-ons.php:250, templates/account/partials/addon.php:46
426
  msgctxt "trial period"
427
  msgid "Trial"
428
  msgstr "Trial"
429
 
430
- #: includes/class-freemius.php:20075
431
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
432
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
433
 
434
- #: includes/class-freemius.php:20079, includes/class-freemius.php:20138
435
  msgid "Please contact us here"
436
  msgstr "Please contact us here"
437
 
438
- #: includes/class-freemius.php:20090
439
  msgid "Your plan was successfully activated."
440
  msgstr "Your plan was successfully activated."
441
 
442
- #: includes/class-freemius.php:20091
443
  msgid "Your plan was successfully upgraded."
444
  msgstr "Your plan was successfully upgraded."
445
 
446
- #: includes/class-freemius.php:20108
447
  msgid "Your plan was successfully changed to %s."
448
  msgstr "Your plan was successfully changed to %s."
449
 
450
- #: includes/class-freemius.php:20124
451
  msgid "Your license has expired. You can still continue using the free %s forever."
452
  msgstr "Your license has expired. You can still continue using the free %s forever."
453
 
454
- #: includes/class-freemius.php:20126
455
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
456
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
457
 
458
- #: includes/class-freemius.php:20134
459
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
460
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
461
 
462
- #: includes/class-freemius.php:20147
463
  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."
464
  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."
465
 
466
- #: includes/class-freemius.php:20173
467
  msgid "Your free trial has expired. You can still continue using all our free features."
468
  msgstr "Your free trial has expired. You can still continue using all our free features."
469
 
470
- #: includes/class-freemius.php:20175
471
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
473
 
474
- #: includes/class-freemius.php:20283
475
  msgid "It looks like the license could not be activated."
476
  msgstr "It looks like the license could not be activated."
477
 
478
- #: includes/class-freemius.php:20325
479
  msgid "Your license was successfully activated."
480
  msgstr "Your license was successfully activated."
481
 
482
- #: includes/class-freemius.php:20351
483
  msgid "It looks like your site currently doesn't have an active license."
484
  msgstr "It looks like your site currently doesn't have an active license."
485
 
486
- #: includes/class-freemius.php:20375
487
  msgid "It looks like the license deactivation failed."
488
  msgstr "It looks like the license deactivation failed."
489
 
490
- #: includes/class-freemius.php:20404
491
  msgid "Your %s license was successfully deactivated."
492
  msgstr "Your %s license was successfully deactivated."
493
 
494
- #: includes/class-freemius.php:20405
495
  msgid "Your license was successfully deactivated, you are back to the %s plan."
496
  msgstr "Your license was successfully deactivated, you are back to the %s plan."
497
 
498
- #: includes/class-freemius.php:20408
499
  msgid "O.K"
500
  msgstr "O.K"
501
 
502
- #: includes/class-freemius.php:20461
503
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
504
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
505
 
506
- #: includes/class-freemius.php:20470
507
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
508
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
509
 
510
- #: includes/class-freemius.php:20512
511
  msgid "You are already running the %s in a trial mode."
512
  msgstr "You are already running the %s in a trial mode."
513
 
514
- #: includes/class-freemius.php:20523
515
  msgid "You already utilized a trial before."
516
  msgstr "You already utilized a trial before."
517
 
518
- #: includes/class-freemius.php:20537
519
  msgid "Plan %s do not exist, therefore, can't start a trial."
520
  msgstr "Plan %s do not exist, therefore, can't start a trial."
521
 
522
- #: includes/class-freemius.php:20548
523
  msgid "Plan %s does not support a trial period."
524
  msgstr "Plan %s does not support a trial period."
525
 
526
- #: includes/class-freemius.php:20559
527
  msgid "None of the %s's plans supports a trial period."
528
  msgstr "None of the %s's plans supports a trial period."
529
 
530
- #: includes/class-freemius.php:20609
531
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
532
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
533
 
534
- #: includes/class-freemius.php:20645
535
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
536
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
537
 
538
- #: includes/class-freemius.php:20664
539
  msgid "Your %s free trial was successfully cancelled."
540
  msgstr "Your %s free trial was successfully cancelled."
541
 
542
- #: includes/class-freemius.php:20980
543
  msgid "Version %s was released."
544
  msgstr "Version %s was released."
545
 
546
- #: includes/class-freemius.php:20980
547
  msgid "Please download %s."
548
  msgstr "Please download %s."
549
 
550
- #: includes/class-freemius.php:20987
551
  msgid "the latest %s version here"
552
  msgstr "the latest %s version here"
553
 
554
- #: includes/class-freemius.php:20992
555
  msgid "New"
556
  msgstr "New"
557
 
558
- #: includes/class-freemius.php:20997
559
  msgid "Seems like you got the latest release."
560
  msgstr "Seems like you got the latest release."
561
 
562
- #: includes/class-freemius.php:20998
563
  msgid "You are all good!"
564
  msgstr "You are all good!"
565
 
566
- #: includes/class-freemius.php:21301
567
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
568
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
569
 
570
- #: includes/class-freemius.php:21441
571
  msgid "Site successfully opted in."
572
  msgstr "Site successfully opted in."
573
 
574
- #: includes/class-freemius.php:21442, includes/class-freemius.php:22299
575
  msgid "Awesome"
576
  msgstr "Awesome"
577
 
578
- #: includes/class-freemius.php:21458, templates/forms/optout.php:41
579
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
580
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
581
 
582
- #: includes/class-freemius.php:21459
583
  msgid "Thank you!"
584
  msgstr "Thank you!"
585
 
586
- #: includes/class-freemius.php:21466
587
  msgid "We will no longer be sending any usage data of %s on %s to %s."
588
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
589
 
590
- #: includes/class-freemius.php:21612
591
  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."
592
  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."
593
 
594
- #: includes/class-freemius.php:21618
595
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
596
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
597
 
598
- #: includes/class-freemius.php:21623
599
  msgid "%s is the new owner of the account."
600
  msgstr "%s is the new owner of the account."
601
 
602
- #: includes/class-freemius.php:21625
603
  msgctxt "as congratulations"
604
  msgid "Congrats"
605
  msgstr "Congrats"
606
 
607
- #: includes/class-freemius.php:21661
608
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
609
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
610
 
611
- #: includes/class-freemius.php:21673
612
  msgid "Please provide your full name."
613
  msgstr "Please provide your full name."
614
 
615
- #: includes/class-freemius.php:21678
616
  msgid "Your name was successfully updated."
617
  msgstr "Your name was successfully updated."
618
 
619
- #: includes/class-freemius.php:21739
620
  msgid "You have successfully updated your %s."
621
  msgstr "You have successfully updated your %s."
622
 
623
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
624
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
625
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
626
 
627
- #: includes/class-freemius.php:21880
628
  msgctxt "advance notice of something that will need attention."
629
  msgid "Heads up"
630
  msgstr "Heads up"
631
 
632
- #: includes/class-freemius.php:22339
633
  msgctxt "exclamation"
634
  msgid "Hey"
635
  msgstr "Hey"
636
 
637
- #: includes/class-freemius.php:22339
638
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
639
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
640
 
641
- #: includes/class-freemius.php:22347
642
  msgid "No commitment for %s days - cancel anytime!"
643
  msgstr "No commitment for %s days - cancel anytime!"
644
 
645
- #: includes/class-freemius.php:22348
646
  msgid "No credit card required"
647
  msgstr "No credit card required"
648
 
649
- #: includes/class-freemius.php:22355, templates/forms/trial-start.php:53
650
  msgctxt "call to action"
651
  msgid "Start free trial"
652
  msgstr "Start free trial"
653
 
654
- #: includes/class-freemius.php:22432
655
  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!"
656
  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!"
657
 
658
- #: includes/class-freemius.php:22441
659
  msgid "Learn more"
660
  msgstr "Learn more"
661
 
662
- #: includes/class-freemius.php:22627, templates/account.php:507, templates/account.php:657, templates/connect.php:179, templates/connect.php:455, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321
663
  msgid "Activate License"
664
  msgstr "Activate License"
665
 
666
- #: includes/class-freemius.php:22628, templates/account.php:601, templates/account.php:656, templates/account/partials/addon.php:322, templates/account/partials/site.php:271
667
  msgid "Change License"
668
  msgstr "Change License"
669
 
670
- #: includes/class-freemius.php:22737, templates/account/partials/site.php:169
671
  msgid "Opt Out"
672
  msgstr "Opt Out"
673
 
674
- #: includes/class-freemius.php:22739, includes/class-freemius.php:22745, templates/account/partials/site.php:49, templates/account/partials/site.php:169
675
  msgid "Opt In"
676
  msgstr "Opt In"
677
 
678
- #: includes/class-freemius.php:22973
679
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
680
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
681
 
682
- #: includes/class-freemius.php:22981
683
  msgid "Activate %s features"
684
  msgstr "Activate %s features"
685
 
686
- #: includes/class-freemius.php:22994
687
  msgid "Please follow these steps to complete the upgrade"
688
  msgstr "Please follow these steps to complete the upgrade"
689
 
690
- #: includes/class-freemius.php:22998
691
  msgid "Download the latest %s version"
692
  msgstr "Download the latest %s version"
693
 
694
- #: includes/class-freemius.php:23002
695
  msgid "Upload and activate the downloaded version"
696
  msgstr "Upload and activate the downloaded version"
697
 
698
- #: includes/class-freemius.php:23004
699
  msgid "How to upload and activate?"
700
  msgstr "How to upload and activate?"
701
 
702
- #: includes/class-freemius.php:23138
703
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
704
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
705
 
706
- #: includes/class-freemius.php:23299
707
  msgid "Auto installation only works for opted-in users."
708
  msgstr "Auto installation only works for opted-in users."
709
 
710
- #: includes/class-freemius.php:23309, includes/class-freemius.php:23342, includes/class-fs-plugin-updater.php:1218, includes/class-fs-plugin-updater.php:1232
711
  msgid "Invalid module ID."
712
  msgstr "Invalid module ID."
713
 
714
- #: includes/class-freemius.php:23318, includes/class-fs-plugin-updater.php:1254
715
  msgid "Premium version already active."
716
  msgstr "Premium version already active."
717
 
718
- #: includes/class-freemius.php:23325
719
  msgid "You do not have a valid license to access the premium version."
720
  msgstr "You do not have a valid license to access the premium version."
721
 
722
- #: includes/class-freemius.php:23332
723
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
724
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
725
 
726
- #: includes/class-freemius.php:23350, includes/class-fs-plugin-updater.php:1253
727
  msgid "Premium add-on version already installed."
728
  msgstr "Premium add-on version already installed."
729
 
730
- #: includes/class-freemius.php:23700
731
  msgid "View paid features"
732
  msgstr "View paid features"
733
 
734
- #: includes/class-freemius.php:24022
735
  msgid "Thank you so much for using %s and its add-ons!"
736
  msgstr "Thank you so much for using %s and its add-ons!"
737
 
738
- #: includes/class-freemius.php:24023
739
  msgid "Thank you so much for using %s!"
740
  msgstr "Thank you so much for using %s!"
741
 
742
- #: includes/class-freemius.php:24029
743
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
744
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
745
 
746
- #: includes/class-freemius.php:24033
747
  msgid "Thank you so much for using our products!"
748
  msgstr "Thank you so much for using our products!"
749
 
750
- #: includes/class-freemius.php:24034
751
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
752
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
753
 
754
- #: includes/class-freemius.php:24053
755
  msgid "%s and its add-ons"
756
  msgstr "%s and its add-ons"
757
 
758
- #: includes/class-freemius.php:24062
759
  msgid "Products"
760
  msgstr "Products"
761
 
762
- #: includes/class-freemius.php:24069, templates/connect.php:280
763
  msgid "Yes"
764
  msgstr "Yes"
765
 
766
- #: includes/class-freemius.php:24070, templates/connect.php:281
767
  msgid "send me security & feature updates, educational content and offers."
768
  msgstr "send me security & feature updates, educational content and offers."
769
 
770
- #: includes/class-freemius.php:24071, templates/connect.php:286
771
  msgid "No"
772
  msgstr "No"
773
 
774
- #: includes/class-freemius.php:24073, templates/connect.php:288
775
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
776
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
777
 
778
- #: includes/class-freemius.php:24083
779
  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 :-)"
780
  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 :-)"
781
 
782
- #: includes/class-freemius.php:24085, templates/connect.php:295
783
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
784
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
785
 
786
- #: includes/class-freemius.php:24367
787
  msgid "License key is empty."
788
  msgstr "License key is empty."
789
 
@@ -811,314 +835,314 @@ msgstr "new version"
811
  msgid "Important Upgrade Notice:"
812
  msgstr "Important Upgrade Notice:"
813
 
814
- #: includes/class-fs-plugin-updater.php:1283
815
  msgid "Installing plugin: %s"
816
  msgstr "Installing plugin: %s"
817
 
818
- #: includes/class-fs-plugin-updater.php:1324
819
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
820
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
821
 
822
- #: includes/class-fs-plugin-updater.php:1506
823
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
824
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
825
 
826
- #: includes/fs-plugin-info-dialog.php:535
827
  msgid "Purchase More"
828
  msgstr "Purchase More"
829
 
830
- #: includes/fs-plugin-info-dialog.php:536, templates/account/partials/addon.php:385
831
  msgctxt "verb"
832
  msgid "Purchase"
833
  msgstr "Purchase"
834
 
835
- #: includes/fs-plugin-info-dialog.php:540
836
  msgid "Start my free %s"
837
  msgstr "Start my free %s"
838
 
839
- #: includes/fs-plugin-info-dialog.php:738
840
  msgid "Install Free Version Update Now"
841
  msgstr "Install Free Version Update Now"
842
 
843
- #: includes/fs-plugin-info-dialog.php:739, templates/account.php:590
844
  msgid "Install Update Now"
845
  msgstr "Install Update Now"
846
 
847
- #: includes/fs-plugin-info-dialog.php:748
848
  msgid "Install Free Version Now"
849
  msgstr "Install Free Version Now"
850
 
851
- #: includes/fs-plugin-info-dialog.php:749, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:365, templates/account/partials/addon.php:418
852
  msgid "Install Now"
853
  msgstr "Install Now"
854
 
855
- #: includes/fs-plugin-info-dialog.php:765
856
  msgctxt "as download latest version"
857
  msgid "Download Latest Free Version"
858
  msgstr "Download Latest Free Version"
859
 
860
- #: includes/fs-plugin-info-dialog.php:766, templates/account.php:99, templates/add-ons.php:37, templates/account/partials/addon.php:25
861
  msgctxt "as download latest version"
862
  msgid "Download Latest"
863
  msgstr "Download Latest"
864
 
865
- #: includes/fs-plugin-info-dialog.php:781, templates/add-ons.php:329, templates/account/partials/addon.php:356, templates/account/partials/addon.php:412
866
  msgid "Activate this add-on"
867
  msgstr "Activate this add-on"
868
 
869
- #: includes/fs-plugin-info-dialog.php:783, templates/connect.php:452
870
  msgid "Activate Free Version"
871
  msgstr "Activate Free Version"
872
 
873
- #: includes/fs-plugin-info-dialog.php:784, templates/account.php:123, templates/add-ons.php:330, templates/account/partials/addon.php:48
874
  msgid "Activate"
875
  msgstr "Activate"
876
 
877
- #: includes/fs-plugin-info-dialog.php:994
878
  msgctxt "Plugin installer section title"
879
  msgid "Description"
880
  msgstr "Description"
881
 
882
- #: includes/fs-plugin-info-dialog.php:995
883
  msgctxt "Plugin installer section title"
884
  msgid "Installation"
885
  msgstr "Installation"
886
 
887
- #: includes/fs-plugin-info-dialog.php:996
888
  msgctxt "Plugin installer section title"
889
  msgid "FAQ"
890
  msgstr "FAQ"
891
 
892
- #: includes/fs-plugin-info-dialog.php:997, templates/plugin-info/description.php:55
893
  msgid "Screenshots"
894
  msgstr "Screenshots"
895
 
896
- #: includes/fs-plugin-info-dialog.php:998
897
  msgctxt "Plugin installer section title"
898
  msgid "Changelog"
899
  msgstr "Changelog"
900
 
901
- #: includes/fs-plugin-info-dialog.php:999
902
  msgctxt "Plugin installer section title"
903
  msgid "Reviews"
904
  msgstr "Reviews"
905
 
906
- #: includes/fs-plugin-info-dialog.php:1000
907
  msgctxt "Plugin installer section title"
908
  msgid "Other Notes"
909
  msgstr "Other Notes"
910
 
911
- #: includes/fs-plugin-info-dialog.php:1015
912
  msgctxt "Plugin installer section title"
913
  msgid "Features & Pricing"
914
  msgstr "Features & Pricing"
915
 
916
- #: includes/fs-plugin-info-dialog.php:1025
917
  msgid "Plugin Install"
918
  msgstr "Plugin Install"
919
 
920
- #: includes/fs-plugin-info-dialog.php:1097
921
  msgctxt "e.g. Professional Plan"
922
  msgid "%s Plan"
923
  msgstr "%s Plan"
924
 
925
- #: includes/fs-plugin-info-dialog.php:1123
926
  msgctxt "e.g. the best product"
927
  msgid "Best"
928
  msgstr "Best"
929
 
930
- #: includes/fs-plugin-info-dialog.php:1129, includes/fs-plugin-info-dialog.php:1149
931
  msgctxt "as every month"
932
  msgid "Monthly"
933
  msgstr "Monthly"
934
 
935
- #: includes/fs-plugin-info-dialog.php:1132
936
  msgctxt "as once a year"
937
  msgid "Annual"
938
  msgstr "Annual"
939
 
940
- #: includes/fs-plugin-info-dialog.php:1135
941
  msgid "Lifetime"
942
  msgstr "Lifetime"
943
 
944
- #: includes/fs-plugin-info-dialog.php:1149, includes/fs-plugin-info-dialog.php:1151, includes/fs-plugin-info-dialog.php:1153
945
  msgctxt "e.g. billed monthly"
946
  msgid "Billed %s"
947
  msgstr "Billed %s"
948
 
949
- #: includes/fs-plugin-info-dialog.php:1151
950
  msgctxt "as once a year"
951
  msgid "Annually"
952
  msgstr "Annually"
953
 
954
- #: includes/fs-plugin-info-dialog.php:1153
955
  msgctxt "as once a year"
956
  msgid "Once"
957
  msgstr "Once"
958
 
959
- #: includes/fs-plugin-info-dialog.php:1159
960
  msgid "Single Site License"
961
  msgstr "Single Site License"
962
 
963
- #: includes/fs-plugin-info-dialog.php:1161
964
  msgid "Unlimited Licenses"
965
  msgstr "Unlimited Licenses"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1163
968
  msgid "Up to %s Sites"
969
  msgstr "Up to %s Sites"
970
 
971
- #: includes/fs-plugin-info-dialog.php:1173, templates/plugin-info/features.php:82
972
  msgctxt "as monthly period"
973
  msgid "mo"
974
  msgstr "mo"
975
 
976
- #: includes/fs-plugin-info-dialog.php:1180, templates/plugin-info/features.php:80
977
  msgctxt "as annual period"
978
  msgid "year"
979
  msgstr "year"
980
 
981
- #: includes/fs-plugin-info-dialog.php:1234
982
  msgctxt "noun"
983
  msgid "Price"
984
  msgstr "Price"
985
 
986
- #: includes/fs-plugin-info-dialog.php:1282
987
  msgid "Save %s"
988
  msgstr "Save %s"
989
 
990
- #: includes/fs-plugin-info-dialog.php:1292
991
  msgid "No commitment for %s - cancel anytime"
992
  msgstr "No commitment for %s - cancel anytime"
993
 
994
- #: includes/fs-plugin-info-dialog.php:1295
995
  msgid "After your free %s, pay as little as %s"
996
  msgstr "After your free %s, pay as little as %s"
997
 
998
- #: includes/fs-plugin-info-dialog.php:1306
999
  msgid "Details"
1000
  msgstr "Details"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php:1310, templates/account.php:110, templates/debug.php:201, templates/debug.php:238, templates/debug.php:455, templates/account/partials/addon.php:36
1003
  msgctxt "product version"
1004
  msgid "Version"
1005
  msgstr "Version"
1006
 
1007
- #: includes/fs-plugin-info-dialog.php:1317
1008
  msgctxt "as the plugin author"
1009
  msgid "Author"
1010
  msgstr "Author"
1011
 
1012
- #: includes/fs-plugin-info-dialog.php:1324
1013
  msgid "Last Updated"
1014
  msgstr "Last Updated"
1015
 
1016
- #: includes/fs-plugin-info-dialog.php:1329, templates/account.php:476
1017
  msgctxt "x-ago"
1018
  msgid "%s ago"
1019
  msgstr "%s ago"
1020
 
1021
- #: includes/fs-plugin-info-dialog.php:1338
1022
  msgid "Requires WordPress Version"
1023
  msgstr "Requires WordPress Version"
1024
 
1025
- #: includes/fs-plugin-info-dialog.php:1339
1026
  msgid "%s or higher"
1027
  msgstr "%s or higher"
1028
 
1029
- #: includes/fs-plugin-info-dialog.php:1346
1030
  msgid "Compatible up to"
1031
  msgstr "Compatible up to"
1032
 
1033
- #: includes/fs-plugin-info-dialog.php:1354
1034
  msgid "Downloaded"
1035
  msgstr "Downloaded"
1036
 
1037
- #: includes/fs-plugin-info-dialog.php:1358
1038
  msgid "%s time"
1039
  msgstr "%s time"
1040
 
1041
- #: includes/fs-plugin-info-dialog.php:1360
1042
  msgid "%s times"
1043
  msgstr "%s times"
1044
 
1045
- #: includes/fs-plugin-info-dialog.php:1370
1046
  msgid "WordPress.org Plugin Page"
1047
  msgstr "WordPress.org Plugin Page"
1048
 
1049
- #: includes/fs-plugin-info-dialog.php:1378
1050
  msgid "Plugin Homepage"
1051
  msgstr "Plugin Homepage"
1052
 
1053
- #: includes/fs-plugin-info-dialog.php:1386, includes/fs-plugin-info-dialog.php:1468
1054
  msgid "Donate to this plugin"
1055
  msgstr "Donate to this plugin"
1056
 
1057
- #: includes/fs-plugin-info-dialog.php:1393
1058
  msgid "Average Rating"
1059
  msgstr "Average Rating"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:1400
1062
  msgid "based on %s"
1063
  msgstr "based on %s"
1064
 
1065
- #: includes/fs-plugin-info-dialog.php:1404
1066
  msgid "%s rating"
1067
  msgstr "%s rating"
1068
 
1069
- #: includes/fs-plugin-info-dialog.php:1406
1070
  msgid "%s ratings"
1071
  msgstr "%s ratings"
1072
 
1073
- #: includes/fs-plugin-info-dialog.php:1421
1074
  msgid "%s star"
1075
  msgstr "%s star"
1076
 
1077
- #: includes/fs-plugin-info-dialog.php:1423
1078
  msgid "%s stars"
1079
  msgstr "%s stars"
1080
 
1081
- #: includes/fs-plugin-info-dialog.php:1434
1082
  msgid "Click to see reviews that provided a rating of %s"
1083
  msgstr "Click to see reviews that provided a rating of %s"
1084
 
1085
- #: includes/fs-plugin-info-dialog.php:1447
1086
  msgid "Contributors"
1087
  msgstr "Contributors"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php:1476, includes/fs-plugin-info-dialog.php:1478
1090
  msgid "Warning"
1091
  msgstr "Warning"
1092
 
1093
- #: includes/fs-plugin-info-dialog.php:1476
1094
  msgid "This plugin has not been tested with your current version of WordPress."
1095
  msgstr "This plugin has not been tested with your current version of WordPress."
1096
 
1097
- #: includes/fs-plugin-info-dialog.php:1478
1098
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1099
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1100
 
1101
- #: includes/fs-plugin-info-dialog.php:1497
1102
  msgid "Paid add-on must be deployed to Freemius."
1103
  msgstr "Paid add-on must be deployed to Freemius."
1104
 
1105
- #: includes/fs-plugin-info-dialog.php:1498
1106
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1107
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1519
1110
  msgid "Newer Version (%s) Installed"
1111
  msgstr "Newer Version (%s) Installed"
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1520
1114
  msgid "Newer Free Version (%s) Installed"
1115
  msgstr "Newer Free Version (%s) Installed"
1116
 
1117
- #: includes/fs-plugin-info-dialog.php:1527
1118
  msgid "Latest Version Installed"
1119
  msgstr "Latest Version Installed"
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1528
1122
  msgid "Latest Free Version Installed"
1123
  msgstr "Latest Free Version Installed"
1124
 
@@ -1202,208 +1226,216 @@ msgstr "Plan"
1202
  msgid "Bundle Plan"
1203
  msgstr "Bundle Plan"
1204
 
1205
- #: templates/account.php:199
1206
  msgid "Free Trial"
1207
  msgstr "Free Trial"
1208
 
1209
- #: templates/account.php:210
1210
  msgid "Account Details"
1211
  msgstr "Account Details"
1212
 
1213
- #: templates/account.php:217, templates/forms/data-debug-mode.php:33
1214
  msgid "Start Debug"
1215
  msgstr "Start Debug"
1216
 
1217
- #: templates/account.php:219
1218
  msgid "Stop Debug"
1219
  msgstr "Stop Debug"
1220
 
1221
- #: templates/account.php:226
1222
  msgid "Billing & Invoices"
1223
  msgstr "Billing & Invoices"
1224
 
1225
- #: templates/account.php:237
1226
  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?"
1227
  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?"
1228
 
1229
- #: templates/account.php:239
1230
  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?"
1231
  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?"
1232
 
1233
- #: templates/account.php:242
1234
  msgid "Delete Account"
1235
  msgstr "Delete Account"
1236
 
1237
- #: templates/account.php:254, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35
1238
  msgid "Deactivate License"
1239
  msgstr "Deactivate License"
1240
 
1241
- #: templates/account.php:277, templates/forms/subscription-cancellation.php:125
1242
  msgid "Are you sure you want to proceed?"
1243
  msgstr "Are you sure you want to proceed?"
1244
 
1245
- #: templates/account.php:277, templates/account/partials/addon.php:255
1246
  msgid "Cancel Subscription"
1247
  msgstr "Cancel Subscription"
1248
 
1249
- #: templates/account.php:306, templates/account/partials/addon.php:340
1250
  msgctxt "as synchronize"
1251
  msgid "Sync"
1252
  msgstr "Sync"
1253
 
1254
- #: templates/account.php:321, templates/debug.php:505
1255
  msgid "Name"
1256
  msgstr "Name"
1257
 
1258
- #: templates/account.php:327, templates/debug.php:506
1259
  msgid "Email"
1260
  msgstr "Email"
1261
 
1262
- #: templates/account.php:334, templates/debug.php:369, templates/debug.php:555
1263
  msgid "User ID"
1264
  msgstr "User ID"
1265
 
1266
- #: templates/account.php:352, templates/account.php:670, templates/account.php:715, 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
1267
  msgid "ID"
1268
  msgstr "ID"
1269
 
1270
- #: templates/account.php:359
1271
  msgid "Site ID"
1272
  msgstr "Site ID"
1273
 
1274
- #: templates/account.php:362
1275
  msgid "No ID"
1276
  msgstr "No ID"
1277
 
1278
- #: templates/account.php:367, templates/debug.php:243, templates/debug.php:372, templates/debug.php:456, templates/debug.php:508, templates/account/partials/site.php:227
1279
  msgid "Public Key"
1280
  msgstr "Public Key"
1281
 
1282
- #: templates/account.php:373, templates/debug.php:373, templates/debug.php:457, templates/debug.php:509, templates/account/partials/site.php:239
1283
  msgid "Secret Key"
1284
  msgstr "Secret Key"
1285
 
1286
- #: templates/account.php:376
1287
  msgctxt "as secret encryption key missing"
1288
  msgid "No Secret"
1289
  msgstr "No Secret"
1290
 
1291
- #: templates/account.php:403, templates/account/partials/site.php:120, templates/account/partials/site.php:122
1292
  msgid "Trial"
1293
  msgstr "Trial"
1294
 
1295
- #: templates/account.php:430, templates/debug.php:561, templates/account/partials/site.php:260
1296
  msgid "License Key"
1297
  msgstr "License Key"
1298
 
1299
- #: templates/account.php:461
1300
  msgid "Join the Beta program"
1301
  msgstr "Join the Beta program"
1302
 
1303
- #: templates/account.php:467
1304
  msgid "not verified"
1305
  msgstr "not verified"
1306
 
1307
- #: templates/account.php:476, templates/account/partials/addon.php:190
1308
  msgid "Expired"
1309
  msgstr "Expired"
1310
 
1311
- #: templates/account.php:536
1312
  msgid "Premium version"
1313
  msgstr "Premium version"
1314
 
1315
- #: templates/account.php:538
1316
  msgid "Free version"
1317
  msgstr "Free version"
1318
 
1319
- #: templates/account.php:550
1320
  msgid "Verify Email"
1321
  msgstr "Verify Email"
1322
 
1323
- #: templates/account.php:564
1324
  msgid "Download %s Version"
1325
  msgstr "Download %s Version"
1326
 
1327
- #: templates/account.php:580
1328
  msgid "Download Paid Version"
1329
  msgstr "Download Paid Version"
1330
 
1331
- #: templates/account.php:598, templates/account.php:853, templates/account/partials/site.php:248, templates/account/partials/site.php:270
1332
  msgctxt "verb"
1333
  msgid "Show"
1334
  msgstr "Show"
1335
 
1336
- #: templates/account.php:613
1337
  msgid "What is your %s?"
1338
  msgstr "What is your %s?"
1339
 
1340
- #: templates/account.php:621, templates/account/billing.php:21
1341
  msgctxt "verb"
1342
  msgid "Edit"
1343
  msgstr "Edit"
1344
 
1345
- #: templates/account.php:625, templates/forms/user-change.php:27
1346
  msgid "Change User"
1347
  msgstr "Change User"
1348
 
1349
- #: templates/account.php:649
1350
  msgid "Sites"
1351
  msgstr "Sites"
1352
 
1353
- #: templates/account.php:662
1354
  msgid "Search by address"
1355
  msgstr "Search by address"
1356
 
1357
- #: templates/account.php:671, templates/debug.php:366
1358
  msgid "Address"
1359
  msgstr "Address"
1360
 
1361
- #: templates/account.php:672
1362
  msgid "License"
1363
  msgstr "License"
1364
 
1365
- #: templates/account.php:673
1366
  msgid "Plan"
1367
  msgstr "Plan"
1368
 
1369
- #: templates/account.php:718
1370
  msgctxt "as software license"
1371
  msgid "License"
1372
  msgstr "License"
1373
 
1374
- #: templates/account.php:847
1375
  msgctxt "verb"
1376
  msgid "Hide"
1377
  msgstr "Hide"
1378
 
1379
- #: templates/account.php:869, templates/forms/data-debug-mode.php:31
1380
  msgid "Processing"
1381
  msgstr "Processing"
1382
 
1383
- #: templates/account.php:872
1384
  msgid "Get updates for bleeding edge Beta versions of %s."
1385
  msgstr "Get updates for bleeding edge Beta versions of %s."
1386
 
1387
- #: templates/account.php:930
1388
  msgid "Cancelling %s"
1389
  msgstr "Cancelling %s"
1390
 
1391
- #: templates/account.php:930, templates/account.php:947, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133
1392
  msgid "trial"
1393
  msgstr "trial"
1394
 
1395
- #: templates/account.php:945, templates/forms/deactivation/form.php:150
1396
  msgid "Cancelling %s..."
1397
  msgstr "Cancelling %s..."
1398
 
1399
- #: templates/account.php:948, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134
1400
  msgid "subscription"
1401
  msgstr "subscription"
1402
 
1403
- #: templates/account.php:962
1404
  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?"
1405
  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?"
1406
 
 
 
 
 
 
 
 
 
1407
  #: templates/add-ons.php:38
1408
  msgid "View details"
1409
  msgstr "View details"
@@ -1533,7 +1565,7 @@ msgstr "License key"
1533
  msgid "Can't find your license key?"
1534
  msgstr "Can't find your license key?"
1535
 
1536
- #: templates/connect.php:323, templates/connect.php:694, templates/forms/deactivation/retry-skip.php:20
1537
  msgctxt "verb"
1538
  msgid "Skip"
1539
  msgstr "Skip"
@@ -1590,40 +1622,40 @@ msgstr "Plugins & Themes"
1590
  msgid "Title, slug, version, and is active"
1591
  msgstr "Title, slug, version, and is active"
1592
 
1593
- #: templates/connect.php:420, templates/forms/license-activation.php:41
1594
  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."
1595
  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."
1596
 
1597
- #: templates/connect.php:425
1598
  msgid "What permissions are being granted?"
1599
  msgstr "What permissions are being granted?"
1600
 
1601
- #: templates/connect.php:451
1602
  msgid "Don't have a license key?"
1603
  msgstr "Don't have a license key?"
1604
 
1605
- #: templates/connect.php:454
1606
  msgid "Have a license key?"
1607
  msgstr "Have a license key?"
1608
 
1609
- #: templates/connect.php:462
1610
  msgid "Privacy Policy"
1611
  msgstr "Privacy Policy"
1612
 
1613
- #: templates/connect.php:464
1614
  msgid "License Agreement"
1615
  msgstr "License Agreement"
1616
 
1617
- #: templates/connect.php:464
1618
  msgid "Terms of Service"
1619
  msgstr "Terms of Service"
1620
 
1621
- #: templates/connect.php:853
1622
  msgctxt "as in the process of sending an email"
1623
  msgid "Sending email"
1624
  msgstr "Sending email"
1625
 
1626
- #: templates/connect.php:854
1627
  msgctxt "as activating plugin"
1628
  msgid "Activating"
1629
  msgstr "Activating"
@@ -2056,135 +2088,135 @@ msgstr "Non-expiring"
2056
  msgid "Apply to become an affiliate"
2057
  msgstr "Apply to become an affiliate"
2058
 
2059
- #: templates/forms/affiliation.php:104
2060
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2061
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2062
 
2063
- #: templates/forms/affiliation.php:119
2064
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2065
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2066
 
2067
- #: templates/forms/affiliation.php:122
2068
  msgid "Your affiliation account was temporarily suspended."
2069
  msgstr "Your affiliation account was temporarily suspended."
2070
 
2071
- #: templates/forms/affiliation.php:125
2072
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2073
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2074
 
2075
- #: templates/forms/affiliation.php:128
2076
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2077
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2078
 
2079
- #: templates/forms/affiliation.php:141
2080
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2081
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2082
 
2083
- #: templates/forms/affiliation.php:142
2084
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2085
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2086
 
2087
- #: templates/forms/affiliation.php:145
2088
  msgid "Program Summary"
2089
  msgstr "Program Summary"
2090
 
2091
- #: templates/forms/affiliation.php:147
2092
  msgid "%s commission when a customer purchases a new license."
2093
  msgstr "%s commission when a customer purchases a new license."
2094
 
2095
- #: templates/forms/affiliation.php:149
2096
  msgid "Get commission for automated subscription renewals."
2097
  msgstr "Get commission for automated subscription renewals."
2098
 
2099
- #: templates/forms/affiliation.php:152
2100
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2101
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2102
 
2103
- #: templates/forms/affiliation.php:155
2104
  msgid "Unlimited commissions."
2105
  msgstr "Unlimited commissions."
2106
 
2107
- #: templates/forms/affiliation.php:157
2108
  msgid "%s minimum payout amount."
2109
  msgstr "%s minimum payout amount."
2110
 
2111
- #: templates/forms/affiliation.php:158
2112
  msgid "Payouts are in USD and processed monthly via PayPal."
2113
  msgstr "Payouts are in USD and processed monthly via PayPal."
2114
 
2115
- #: templates/forms/affiliation.php:159
2116
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2117
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2118
 
2119
- #: templates/forms/affiliation.php:162
2120
  msgid "Affiliate"
2121
  msgstr "Affiliate"
2122
 
2123
- #: templates/forms/affiliation.php:165, templates/forms/resend-key.php:23
2124
  msgid "Email address"
2125
  msgstr "Email address"
2126
 
2127
- #: templates/forms/affiliation.php:169
2128
  msgid "Full name"
2129
  msgstr "Full name"
2130
 
2131
- #: templates/forms/affiliation.php:173
2132
  msgid "PayPal account email address"
2133
  msgstr "PayPal account email address"
2134
 
2135
- #: templates/forms/affiliation.php:177
2136
  msgid "Where are you going to promote the %s?"
2137
  msgstr "Where are you going to promote the %s?"
2138
 
2139
- #: templates/forms/affiliation.php:179
2140
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2141
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2142
 
2143
- #: templates/forms/affiliation.php:181
2144
  msgid "Add another domain"
2145
  msgstr "Add another domain"
2146
 
2147
- #: templates/forms/affiliation.php:185
2148
  msgid "Extra Domains"
2149
  msgstr "Extra Domains"
2150
 
2151
- #: templates/forms/affiliation.php:186
2152
  msgid "Extra domains where you will be marketing the product from."
2153
  msgstr "Extra domains where you will be marketing the product from."
2154
 
2155
- #: templates/forms/affiliation.php:196
2156
  msgid "Promotion methods"
2157
  msgstr "Promotion methods"
2158
 
2159
- #: templates/forms/affiliation.php:199
2160
  msgid "Social media (Facebook, Twitter, etc.)"
2161
  msgstr "Social media (Facebook, Twitter, etc.)"
2162
 
2163
- #: templates/forms/affiliation.php:203
2164
  msgid "Mobile apps"
2165
  msgstr "Mobile apps"
2166
 
2167
- #: templates/forms/affiliation.php:207
2168
  msgid "Website, email, and social media statistics (optional)"
2169
  msgstr "Website, email, and social media statistics (optional)"
2170
 
2171
- #: templates/forms/affiliation.php:210
2172
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2173
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2174
 
2175
- #: templates/forms/affiliation.php:214
2176
  msgid "How will you promote us?"
2177
  msgstr "How will you promote us?"
2178
 
2179
- #: templates/forms/affiliation.php:217
2180
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2181
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2182
 
2183
- #: templates/forms/affiliation.php:223, templates/forms/resend-key.php:22
2184
  msgid "Cancel"
2185
  msgstr "Cancel"
2186
 
2187
- #: templates/forms/affiliation.php:225
2188
  msgid "Become an affiliate"
2189
  msgstr "Become an affiliate"
2190
 
@@ -2258,7 +2290,7 @@ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s t
2258
  msgid "Plugins & themes tracking"
2259
  msgstr "Plugins & themes tracking"
2260
 
2261
- #: templates/forms/optout.php:256
2262
  msgid "Saved"
2263
  msgstr "Saved"
2264
 
@@ -2470,19 +2502,19 @@ msgstr "deactivating"
2470
  msgid "switching"
2471
  msgstr "switching"
2472
 
2473
- #: templates/forms/deactivation/form.php:365
2474
  msgid "Submit & %s"
2475
  msgstr "Submit & %s"
2476
 
2477
- #: templates/forms/deactivation/form.php:386
2478
  msgid "Kindly tell us the reason so we can improve."
2479
  msgstr "Kindly tell us the reason so we can improve."
2480
 
2481
- #: templates/forms/deactivation/form.php:511
2482
  msgid "Yes - %s"
2483
  msgstr "Yes - %s"
2484
 
2485
- #: templates/forms/deactivation/form.php:518
2486
  msgid "Skip & %s"
2487
  msgstr "Skip & %s"
2488
 
1
+ # Copyright (C) 2020 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: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
  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
 
850
+ #: includes/fs-plugin-info-dialog.php:541
851
  msgid "Purchase More"
852
  msgstr "Purchase More"
853
 
854
+ #: includes/fs-plugin-info-dialog.php:542, templates/account/partials/addon.php:385
855
  msgctxt "verb"
856
  msgid "Purchase"
857
  msgstr "Purchase"
858
 
859
+ #: includes/fs-plugin-info-dialog.php:546
860
  msgid "Start my free %s"
861
  msgstr "Start my free %s"
862
 
863
+ #: includes/fs-plugin-info-dialog.php:744
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
 
871
+ #: includes/fs-plugin-info-dialog.php:754
872
  msgid "Install Free Version Now"
873
  msgstr "Install Free Version Now"
874
 
875
+ #: includes/fs-plugin-info-dialog.php:755, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:365, templates/account/partials/addon.php:418
876
  msgid "Install Now"
877
  msgstr "Install Now"
878
 
879
+ #: includes/fs-plugin-info-dialog.php:771
880
  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"
888
 
889
+ #: includes/fs-plugin-info-dialog.php:787, templates/add-ons.php:329, templates/account/partials/addon.php:356, templates/account/partials/addon.php:412
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
 
901
+ #: includes/fs-plugin-info-dialog.php:1002
902
  msgctxt "Plugin installer section title"
903
  msgid "Description"
904
  msgstr "Description"
905
 
906
+ #: includes/fs-plugin-info-dialog.php:1003
907
  msgctxt "Plugin installer section title"
908
  msgid "Installation"
909
  msgstr "Installation"
910
 
911
+ #: includes/fs-plugin-info-dialog.php:1004
912
  msgctxt "Plugin installer section title"
913
  msgid "FAQ"
914
  msgstr "FAQ"
915
 
916
+ #: includes/fs-plugin-info-dialog.php:1005, templates/plugin-info/description.php:55
917
  msgid "Screenshots"
918
  msgstr "Screenshots"
919
 
920
+ #: includes/fs-plugin-info-dialog.php:1006
921
  msgctxt "Plugin installer section title"
922
  msgid "Changelog"
923
  msgstr "Changelog"
924
 
925
+ #: includes/fs-plugin-info-dialog.php:1007
926
  msgctxt "Plugin installer section title"
927
  msgid "Reviews"
928
  msgstr "Reviews"
929
 
930
+ #: includes/fs-plugin-info-dialog.php:1008
931
  msgctxt "Plugin installer section title"
932
  msgid "Other Notes"
933
  msgstr "Other Notes"
934
 
935
+ #: includes/fs-plugin-info-dialog.php:1023
936
  msgctxt "Plugin installer section title"
937
  msgid "Features & Pricing"
938
  msgstr "Features & Pricing"
939
 
940
+ #: includes/fs-plugin-info-dialog.php:1033
941
  msgid "Plugin Install"
942
  msgstr "Plugin Install"
943
 
944
+ #: includes/fs-plugin-info-dialog.php:1105
945
  msgctxt "e.g. Professional Plan"
946
  msgid "%s Plan"
947
  msgstr "%s Plan"
948
 
949
+ #: includes/fs-plugin-info-dialog.php:1131
950
  msgctxt "e.g. the best product"
951
  msgid "Best"
952
  msgstr "Best"
953
 
954
+ #: includes/fs-plugin-info-dialog.php:1137, includes/fs-plugin-info-dialog.php:1157
955
  msgctxt "as every month"
956
  msgid "Monthly"
957
  msgstr "Monthly"
958
 
959
+ #: includes/fs-plugin-info-dialog.php:1140
960
  msgctxt "as once a year"
961
  msgid "Annual"
962
  msgstr "Annual"
963
 
964
+ #: includes/fs-plugin-info-dialog.php:1143
965
  msgid "Lifetime"
966
  msgstr "Lifetime"
967
 
968
+ #: includes/fs-plugin-info-dialog.php:1157, includes/fs-plugin-info-dialog.php:1159, includes/fs-plugin-info-dialog.php:1161
969
  msgctxt "e.g. billed monthly"
970
  msgid "Billed %s"
971
  msgstr "Billed %s"
972
 
973
+ #: includes/fs-plugin-info-dialog.php:1159
974
  msgctxt "as once a year"
975
  msgid "Annually"
976
  msgstr "Annually"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1161
979
  msgctxt "as once a year"
980
  msgid "Once"
981
  msgstr "Once"
982
 
983
+ #: includes/fs-plugin-info-dialog.php:1167
984
  msgid "Single Site License"
985
  msgstr "Single Site License"
986
 
987
+ #: includes/fs-plugin-info-dialog.php:1169
988
  msgid "Unlimited Licenses"
989
  msgstr "Unlimited Licenses"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1171
992
  msgid "Up to %s Sites"
993
  msgstr "Up to %s Sites"
994
 
995
+ #: includes/fs-plugin-info-dialog.php:1181, templates/plugin-info/features.php:82
996
  msgctxt "as monthly period"
997
  msgid "mo"
998
  msgstr "mo"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1188, templates/plugin-info/features.php:80
1001
  msgctxt "as annual period"
1002
  msgid "year"
1003
  msgstr "year"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1242
1006
  msgctxt "noun"
1007
  msgid "Price"
1008
  msgstr "Price"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php:1290
1011
  msgid "Save %s"
1012
  msgstr "Save %s"
1013
 
1014
+ #: includes/fs-plugin-info-dialog.php:1300
1015
  msgid "No commitment for %s - cancel anytime"
1016
  msgstr "No commitment for %s - cancel anytime"
1017
 
1018
+ #: includes/fs-plugin-info-dialog.php:1303
1019
  msgid "After your free %s, pay as little as %s"
1020
  msgstr "After your free %s, pay as little as %s"
1021
 
1022
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1030
 
1031
+ #: includes/fs-plugin-info-dialog.php:1325
1032
  msgctxt "as the plugin author"
1033
  msgid "Author"
1034
  msgstr "Author"
1035
 
1036
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1044
 
1045
+ #: includes/fs-plugin-info-dialog.php:1346
1046
  msgid "Requires WordPress Version"
1047
  msgstr "Requires WordPress Version"
1048
 
1049
+ #: includes/fs-plugin-info-dialog.php:1347
1050
  msgid "%s or higher"
1051
  msgstr "%s or higher"
1052
 
1053
+ #: includes/fs-plugin-info-dialog.php:1354
1054
  msgid "Compatible up to"
1055
  msgstr "Compatible up to"
1056
 
1057
+ #: includes/fs-plugin-info-dialog.php:1362
1058
  msgid "Downloaded"
1059
  msgstr "Downloaded"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php:1366
1062
  msgid "%s time"
1063
  msgstr "%s time"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php:1368
1066
  msgid "%s times"
1067
  msgstr "%s times"
1068
 
1069
+ #: includes/fs-plugin-info-dialog.php:1379
1070
  msgid "WordPress.org Plugin Page"
1071
  msgstr "WordPress.org Plugin Page"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1388
1074
  msgid "Plugin Homepage"
1075
  msgstr "Plugin Homepage"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1397, includes/fs-plugin-info-dialog.php:1481
1078
  msgid "Donate to this plugin"
1079
  msgstr "Donate to this plugin"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1404
1082
  msgid "Average Rating"
1083
  msgstr "Average Rating"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1411
1086
  msgid "based on %s"
1087
  msgstr "based on %s"
1088
 
1089
+ #: includes/fs-plugin-info-dialog.php:1415
1090
  msgid "%s rating"
1091
  msgstr "%s rating"
1092
 
1093
+ #: includes/fs-plugin-info-dialog.php:1417
1094
  msgid "%s ratings"
1095
  msgstr "%s ratings"
1096
 
1097
+ #: includes/fs-plugin-info-dialog.php:1432
1098
  msgid "%s star"
1099
  msgstr "%s star"
1100
 
1101
+ #: includes/fs-plugin-info-dialog.php:1434
1102
  msgid "%s stars"
1103
  msgstr "%s stars"
1104
 
1105
+ #: includes/fs-plugin-info-dialog.php:1446
1106
  msgid "Click to see reviews that provided a rating of %s"
1107
  msgstr "Click to see reviews that provided a rating of %s"
1108
 
1109
+ #: includes/fs-plugin-info-dialog.php:1459
1110
  msgid "Contributors"
1111
  msgstr "Contributors"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1489, includes/fs-plugin-info-dialog.php:1491
1114
  msgid "Warning"
1115
  msgstr "Warning"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1489
1118
  msgid "This plugin has not been tested with your current version of WordPress."
1119
  msgstr "This plugin has not been tested with your current version of WordPress."
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1491
1122
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1123
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1510
1126
  msgid "Paid add-on must be deployed to Freemius."
1127
  msgstr "Paid add-on must be deployed to Freemius."
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1511
1130
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1131
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1532
1134
  msgid "Newer Version (%s) Installed"
1135
  msgstr "Newer Version (%s) Installed"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php:1533
1138
  msgid "Newer Free Version (%s) Installed"
1139
  msgstr "Newer Free Version (%s) Installed"
1140
 
1141
+ #: includes/fs-plugin-info-dialog.php:1540
1142
  msgid "Latest Version Installed"
1143
  msgstr "Latest Version Installed"
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php:1541
1146
  msgid "Latest Free Version Installed"
1147
  msgstr "Latest Free Version Installed"
1148
 
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
+
1439
  #: templates/add-ons.php:38
1440
  msgid "View details"
1441
  msgstr "View details"
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"
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"
2088
  msgid "Apply to become an affiliate"
2089
  msgstr "Apply to become an affiliate"
2090
 
2091
+ #: templates/forms/affiliation.php:107
2092
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2093
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2094
 
2095
+ #: templates/forms/affiliation.php:122
2096
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2097
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2098
 
2099
+ #: templates/forms/affiliation.php:125
2100
  msgid "Your affiliation account was temporarily suspended."
2101
  msgstr "Your affiliation account was temporarily suspended."
2102
 
2103
+ #: templates/forms/affiliation.php:128
2104
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2105
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2106
 
2107
+ #: templates/forms/affiliation.php:131
2108
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2109
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2110
 
2111
+ #: templates/forms/affiliation.php:144
2112
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2113
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2114
 
2115
+ #: templates/forms/affiliation.php:145
2116
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2117
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2118
 
2119
+ #: templates/forms/affiliation.php:148
2120
  msgid "Program Summary"
2121
  msgstr "Program Summary"
2122
 
2123
+ #: templates/forms/affiliation.php:150
2124
  msgid "%s commission when a customer purchases a new license."
2125
  msgstr "%s commission when a customer purchases a new license."
2126
 
2127
+ #: templates/forms/affiliation.php:152
2128
  msgid "Get commission for automated subscription renewals."
2129
  msgstr "Get commission for automated subscription renewals."
2130
 
2131
+ #: templates/forms/affiliation.php:155
2132
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2133
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2134
 
2135
+ #: templates/forms/affiliation.php:158
2136
  msgid "Unlimited commissions."
2137
  msgstr "Unlimited commissions."
2138
 
2139
+ #: templates/forms/affiliation.php:160
2140
  msgid "%s minimum payout amount."
2141
  msgstr "%s minimum payout amount."
2142
 
2143
+ #: templates/forms/affiliation.php:161
2144
  msgid "Payouts are in USD and processed monthly via PayPal."
2145
  msgstr "Payouts are in USD and processed monthly via PayPal."
2146
 
2147
+ #: templates/forms/affiliation.php:162
2148
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2149
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2150
 
2151
+ #: templates/forms/affiliation.php:165
2152
  msgid "Affiliate"
2153
  msgstr "Affiliate"
2154
 
2155
+ #: templates/forms/affiliation.php:168, templates/forms/resend-key.php:23
2156
  msgid "Email address"
2157
  msgstr "Email address"
2158
 
2159
+ #: templates/forms/affiliation.php:172
2160
  msgid "Full name"
2161
  msgstr "Full name"
2162
 
2163
+ #: templates/forms/affiliation.php:176
2164
  msgid "PayPal account email address"
2165
  msgstr "PayPal account email address"
2166
 
2167
+ #: templates/forms/affiliation.php:180
2168
  msgid "Where are you going to promote the %s?"
2169
  msgstr "Where are you going to promote the %s?"
2170
 
2171
+ #: templates/forms/affiliation.php:182
2172
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2173
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2174
 
2175
+ #: templates/forms/affiliation.php:184
2176
  msgid "Add another domain"
2177
  msgstr "Add another domain"
2178
 
2179
+ #: templates/forms/affiliation.php:188
2180
  msgid "Extra Domains"
2181
  msgstr "Extra Domains"
2182
 
2183
+ #: templates/forms/affiliation.php:189
2184
  msgid "Extra domains where you will be marketing the product from."
2185
  msgstr "Extra domains where you will be marketing the product from."
2186
 
2187
+ #: templates/forms/affiliation.php:199
2188
  msgid "Promotion methods"
2189
  msgstr "Promotion methods"
2190
 
2191
+ #: templates/forms/affiliation.php:202
2192
  msgid "Social media (Facebook, Twitter, etc.)"
2193
  msgstr "Social media (Facebook, Twitter, etc.)"
2194
 
2195
+ #: templates/forms/affiliation.php:206
2196
  msgid "Mobile apps"
2197
  msgstr "Mobile apps"
2198
 
2199
+ #: templates/forms/affiliation.php:210
2200
  msgid "Website, email, and social media statistics (optional)"
2201
  msgstr "Website, email, and social media statistics (optional)"
2202
 
2203
+ #: templates/forms/affiliation.php:213
2204
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2205
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2206
 
2207
+ #: templates/forms/affiliation.php:217
2208
  msgid "How will you promote us?"
2209
  msgstr "How will you promote us?"
2210
 
2211
+ #: templates/forms/affiliation.php:220
2212
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2213
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2214
 
2215
+ #: templates/forms/affiliation.php:232, templates/forms/resend-key.php:22
2216
  msgid "Cancel"
2217
  msgstr "Cancel"
2218
 
2219
+ #: templates/forms/affiliation.php:234
2220
  msgid "Become an affiliate"
2221
  msgstr "Become an affiliate"
2222
 
2290
  msgid "Plugins & themes tracking"
2291
  msgstr "Plugins & themes tracking"
2292
 
2293
+ #: templates/forms/optout.php:261
2294
  msgid "Saved"
2295
  msgstr "Saved"
2296
 
2502
  msgid "switching"
2503
  msgstr "switching"
2504
 
2505
+ #: templates/forms/deactivation/form.php:369
2506
  msgid "Submit & %s"
2507
  msgstr "Submit & %s"
2508
 
2509
+ #: templates/forms/deactivation/form.php:390
2510
  msgid "Kindly tell us the reason so we can improve."
2511
  msgstr "Kindly tell us the reason so we can improve."
2512
 
2513
+ #: templates/forms/deactivation/form.php:515
2514
  msgid "Yes - %s"
2515
  msgstr "Yes - %s"
2516
 
2517
+ #: templates/forms/deactivation/form.php:522
2518
  msgid "Skip & %s"
2519
  msgstr "Skip & %s"
2520
 
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,13 +1,14 @@
1
- # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Carlos Longarela <carlos@longarela.eu>, 2017-2019
 
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-07-27 11:43+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: es_ES\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
@@ -21,811 +22,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1881, templates/account.php:873
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 "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."
27
 
28
- #: includes/class-freemius.php:1888
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "¿Deseas continuar con la actualización?"
31
 
32
- #: includes/class-freemius.php:2096
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 no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
35
 
36
- #: includes/class-freemius.php:2098
37
  msgid "Error"
38
  msgstr "Error"
39
 
40
- #: includes/class-freemius.php:2492
41
  msgid "I found a better %s"
42
  msgstr "He encontrado un %s mejor"
43
 
44
- #: includes/class-freemius.php:2494
45
  msgid "What's the %s's name?"
46
  msgstr "¿Cuál es el nombre de %s?"
47
 
48
- #: includes/class-freemius.php:2500
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Es una %stemporal . Sólo estoy depurando un problema"
51
 
52
- #: includes/class-freemius.php:2502
53
  msgid "Deactivation"
54
  msgstr "Desactivación"
55
 
56
- #: includes/class-freemius.php:2503
57
  msgid "Theme Switch"
58
  msgstr "Cambiar tema"
59
 
60
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Otra"
64
 
65
- #: includes/class-freemius.php:2520
66
  msgid "I no longer need the %s"
67
  msgstr "Ya no necesito el %s"
68
 
69
- #: includes/class-freemius.php:2527
70
  msgid "I only needed the %s for a short period"
71
  msgstr "Sólo necesitaba la %s por un corto período"
72
 
73
- #: includes/class-freemius.php:2533
74
  msgid "The %s broke my site"
75
  msgstr "%s ha roto mi sitio"
76
 
77
- #: includes/class-freemius.php:2540
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s de repente ha dejado de funcionar"
80
 
81
- #: includes/class-freemius.php:2550
82
  msgid "I can't pay for it anymore"
83
  msgstr "No puedo pagarlo durante más tiempo"
84
 
85
- #: includes/class-freemius.php:2552
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "¿Con qué precio te sentirías cómodo pagando?"
88
 
89
- #: includes/class-freemius.php:2558
90
  msgid "I don't like to share my information with you"
91
  msgstr "No me gusta compartir mi información contigo"
92
 
93
- #: includes/class-freemius.php:2579
94
  msgid "The %s didn't work"
95
  msgstr "El %s no funcionaba"
96
 
97
- #: includes/class-freemius.php:2589
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "No entiendo cómo hacerlo funcionar"
100
 
101
- #: includes/class-freemius.php:2597
102
  msgid "The %s is great, but I need specific feature that you don't support"
103
  msgstr "%s es genial, pero necesito una característica que no soportáis"
104
 
105
- #: includes/class-freemius.php:2599
106
  msgid "What feature?"
107
  msgstr "¿Qué característica?"
108
 
109
- #: includes/class-freemius.php:2603
110
  msgid "The %s is not working"
111
  msgstr " El %s no funciona"
112
 
113
- #: includes/class-freemius.php:2605
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
116
 
117
- #: includes/class-freemius.php:2609
118
  msgid "It's not what I was looking for"
119
  msgstr "No es lo que estaba buscando"
120
 
121
- #: includes/class-freemius.php:2611
122
  msgid "What you've been looking for?"
123
  msgstr "¿Que has estado buscando?"
124
 
125
- #: includes/class-freemius.php:2615
126
  msgid "The %s didn't work as expected"
127
  msgstr " El %s no funciona como esperaba"
128
 
129
- #: includes/class-freemius.php:2617
130
  msgid "What did you expect?"
131
  msgstr "¿Qué esperas?"
132
 
133
- #: includes/class-freemius.php3472, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Debug Freemius"
136
 
137
- #: includes/class-freemius.php:4224
138
  msgid "I don't know what is cURL or how to install it, help me!"
139
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
140
 
141
- #: includes/class-freemius.php:4226
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 "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."
144
 
145
- #: includes/class-freemius.php:4233
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 "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."
148
 
149
- #: includes/class-freemius.php:4338
150
  msgid "Yes - do your thing"
151
  msgstr "Vamos, adelante"
152
 
153
- #: includes/class-freemius.php:4343
154
  msgid "No - just deactivate"
155
  msgstr "No - sólo desactivar"
156
 
157
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
158
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
159
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
160
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
161
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
162
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
163
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
164
- #: includes/class-freemius.php21690, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Oops"
168
 
169
- #: includes/class-freemius.php:4457
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 "¡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."
172
 
173
- #: includes/class-freemius.php:4879
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s no se puede ejecutar sin %s."
177
 
178
- #: includes/class-freemius.php:4880
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s no se puede ejecutar sin el plugin."
182
 
183
- #: includes/class-freemius.php5053, includes/class-freemius.php5078,
184
- #: includes/class-freemius.php:20578
185
  msgid "Unexpected API error. Please contact the %s's author with the following error."
186
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
187
 
188
- #: includes/class-freemius.php:5777
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "La versión Premium %s ha sido activada con éxito."
191
 
192
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
- #: includes/class-freemius.php:5804
198
  msgid "You have a %s license."
199
  msgstr "Tienes una licencia %s."
200
 
201
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
202
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
203
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
204
- #: includes/class-freemius.php:20328
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Vaya"
208
 
209
- #: includes/class-freemius.php:6094
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 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."
212
 
213
- #: includes/class-freemius.php:6098
214
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
216
 
217
- #: includes/class-freemius.php6107, templates/add-ons.php186,
218
  #: templates/account/partials/addon.php:381
219
  msgid "More information about %s"
220
  msgstr "Más información sobre %s"
221
 
222
- #: includes/class-freemius.php:6108
223
  msgid "Purchase License"
224
  msgstr "Comprar licencia"
225
 
226
- #: includes/class-freemius.php7047, 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 "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."
229
 
230
- #: includes/class-freemius.php:7051
231
  msgid "start the trial"
232
  msgstr "comenzar el período de prueba"
233
 
234
- #: includes/class-freemius.php7052, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "completar la instalación"
237
 
238
- #: includes/class-freemius.php:7164
239
  msgid "You are just one step away - %s"
240
  msgstr "Estás a sólo un paso - %s"
241
 
242
- #: includes/class-freemius.php:7167
243
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
  msgid "Complete \"%s\" Activation Now"
245
  msgstr "Completar la activación de \"%s\" ahora"
246
 
247
- #: includes/class-freemius.php:7245
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
250
 
251
- #: includes/class-freemius.php:7249
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
254
 
255
- #: includes/class-freemius.php:7681
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "La actualización de %s se completó con éxito."
258
 
259
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
260
- #: includes/class-fs-plugin-updater.php1239,
261
- #: includes/class-fs-plugin-updater.php1246,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Complemento"
265
 
266
- #: includes/class-freemius.php9910, templates/account.php343,
267
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: includes/class-freemius.php9911, templates/account.php344,
272
- #: templates/account.php352, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Tema"
276
 
277
- #: includes/class-freemius.php:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "An unknown error has occurred while trying to set the user's beta mode."
279
  msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario."
280
 
281
- #: includes/class-freemius.php:12904
282
  msgid "Invalid new user ID or email address."
283
- msgstr "Invalid new user ID or email address."
284
 
285
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
286
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
287
  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."
288
 
289
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
290
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
291
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
292
 
293
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
294
  msgid "Change Ownership"
295
  msgstr "Cambiar propietario"
296
 
297
- #: includes/class-freemius.php:13438
298
  msgid "Invalid site details collection."
299
  msgstr "Colección de detalles del sitio no válida."
300
 
301
- #: includes/class-freemius.php:13558
302
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
303
  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?"
304
 
305
- #: includes/class-freemius.php:13560
306
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
307
  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?"
308
 
309
- #: includes/class-freemius.php:13834
310
  msgid "Account is pending activation."
311
  msgstr "La cuenta está pendiente de activación"
312
 
313
- #: includes/class-freemius.php13946,
314
  #: templates/forms/premium-versions-upgrade-handler.php:47
315
  msgid "Buy a license now"
316
  msgstr "Compra una licencia ahora"
317
 
318
- #: includes/class-freemius.php13958,
319
  #: templates/forms/premium-versions-upgrade-handler.php:46
320
  msgid "Renew your license now"
321
  msgstr "Renueva tu licencia ahora"
322
 
323
- #: includes/class-freemius.php:13962
324
  msgid "%s to access version %s security & feature updates, and support."
325
  msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
326
 
327
- #: includes/class-freemius.php:16387
328
  msgid "%s activation was successfully completed."
329
  msgstr "%s activación se completó con éxito."
330
 
331
- #: includes/class-freemius.php:16401
332
  msgid "Your account was successfully activated with the %s plan."
333
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
334
 
335
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
336
  msgid "Your trial has been successfully started."
337
  msgstr "Tu versión de prueba se ha iniciado con éxito."
338
 
339
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
340
- #: includes/class-freemius.php:17258
341
  msgid "Couldn't activate %s."
342
  msgstr "No se puede activar %s."
343
 
344
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
345
- #: includes/class-freemius.php:17259
346
  msgid "Please contact us with the following message:"
347
  msgstr "Por favor contáctanos con el siguiente mensaje:"
348
 
349
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
350
  msgid "An unknown error has occurred."
351
  msgstr "Se ha producido un error desconocido."
352
 
353
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
354
  msgid "Upgrade"
355
  msgstr "Actualizar"
356
 
357
- #: includes/class-freemius.php:17622
358
  msgid "Start Trial"
359
  msgstr "Comenzar el período de prueba"
360
 
361
- #: includes/class-freemius.php:17624
362
  msgid "Pricing"
363
  msgstr "Precio"
364
 
365
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
366
  msgid "Affiliation"
367
  msgstr "Afiliación"
368
 
369
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
370
- #: templates/account.php191, templates/debug.php:324
371
  msgid "Account"
372
  msgstr "Cuenta"
373
 
374
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
375
  #: includes/customizer/class-fs-customizer-support-section.php:60
376
  msgid "Contact Us"
377
  msgstr "Contáctanos"
378
 
379
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
380
- #: includes/class-freemius.php22603, templates/account.php119,
381
  #: templates/account/partials/addon.php:44
382
  msgid "Add-Ons"
383
  msgstr "Complementos"
384
 
385
- #: includes/class-freemius.php:17799
386
  msgctxt "ASCII arrow left icon"
387
  msgid "&#x2190;"
388
  msgstr "&#x2190;"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow right icon"
392
  msgid "&#x27a4;"
393
  msgstr "&#x27a4;"
394
 
395
- #: includes/class-freemius.php17801, templates/pricing.php:103
396
  msgctxt "noun"
397
  msgid "Pricing"
398
  msgstr "Precio"
399
 
400
- #: includes/class-freemius.php18014,
401
  #: includes/customizer/class-fs-customizer-support-section.php:67
402
  msgid "Support Forum"
403
  msgstr "Foro de soporte"
404
 
405
- #: includes/class-freemius.php:18988
406
  msgid "Your email has been successfully verified - you are AWESOME!"
407
  msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
408
 
409
- #: includes/class-freemius.php:18989
410
  msgctxt "a positive response"
411
  msgid "Right on"
412
  msgstr "Bien hecho"
413
 
414
- #: includes/class-freemius.php:19493
415
  msgid "seems like the key you entered doesn't match our records."
416
- msgstr "seems like the key you entered doesn't match our records."
417
 
418
- #: includes/class-freemius.php:19517
419
  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."
420
- 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."
421
 
422
- #: includes/class-freemius.php:19735
423
  msgid "Your %s Add-on plan was successfully upgraded."
424
  msgstr "Tu complemento %s del plan se actualizó con éxito."
425
 
426
- #: includes/class-freemius.php:19737
427
  msgid "%s Add-on was successfully purchased."
428
  msgstr "El complemento %s ha sido comprado correctamente."
429
 
430
- #: includes/class-freemius.php:19740
431
  msgid "Download the latest version"
432
  msgstr "Descargar la última versión"
433
 
434
- #: includes/class-freemius.php:19826
435
  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"
436
  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"
437
 
438
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
439
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
440
  msgid "Error received from the server:"
441
  msgstr "Error recibido del servidor:"
442
 
443
- #: includes/class-freemius.php:19842
444
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
445
  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."
446
 
447
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
448
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
449
  msgctxt ""
450
  msgid "Hmm"
451
  msgstr "Hmm"
452
 
453
- #: includes/class-freemius.php:20069
454
  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."
455
  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."
456
 
457
- #: includes/class-freemius.php20070, templates/account.php121,
458
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
459
  msgctxt "trial period"
460
  msgid "Trial"
461
  msgstr "Período de Prueba Gratuito"
462
 
463
- #: includes/class-freemius.php:20075
464
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
465
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
466
 
467
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
468
  msgid "Please contact us here"
469
  msgstr "Contacta aquí con nosotros"
470
 
471
- #: includes/class-freemius.php:20090
472
  msgid "Your plan was successfully activated."
473
  msgstr "Tu plan se activó con éxito."
474
 
475
- #: includes/class-freemius.php:20091
476
  msgid "Your plan was successfully upgraded."
477
  msgstr "Tu plan se actualizó con éxito."
478
 
479
- #: includes/class-freemius.php:20108
480
  msgid "Your plan was successfully changed to %s."
481
  msgstr "Tu plan se cambió correctamente a %s."
482
 
483
- #: includes/class-freemius.php:20124
484
  msgid "Your license has expired. You can still continue using the free %s forever."
485
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
486
 
487
- #: includes/class-freemius.php:20126
488
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
  msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
490
 
491
- #: includes/class-freemius.php:20134
492
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
493
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
494
 
495
- #: includes/class-freemius.php:20147
496
  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."
497
  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."
498
 
499
- #: includes/class-freemius.php:20173
500
  msgid "Your free trial has expired. You can still continue using all our free features."
501
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
502
 
503
- #: includes/class-freemius.php:20175
504
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
506
 
507
- #: includes/class-freemius.php:20283
508
  msgid "It looks like the license could not be activated."
509
  msgstr "Parece que la licencia no se pudo activar."
510
 
511
- #: includes/class-freemius.php:20325
512
  msgid "Your license was successfully activated."
513
  msgstr "Tu licencia fue activada correctamente."
514
 
515
- #: includes/class-freemius.php:20351
516
  msgid "It looks like your site currently doesn't have an active license."
517
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
518
 
519
- #: includes/class-freemius.php:20375
520
  msgid "It looks like the license deactivation failed."
521
  msgstr "Parece que la desactivación de licencia ha fallado."
522
 
523
- #: includes/class-freemius.php:20404
524
  msgid "Your %s license was successfully deactivated."
525
- msgstr "Your %s license was successfully deactivated."
526
 
527
- #: includes/class-freemius.php:20405
528
  msgid "Your license was successfully deactivated, you are back to the %s plan."
529
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
530
 
531
- #: includes/class-freemius.php:20408
532
  msgid "O.K"
533
  msgstr "O.K"
534
 
535
- #: includes/class-freemius.php:20461
536
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
537
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
538
 
539
- #: includes/class-freemius.php:20470
540
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
541
  msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
542
 
543
- #: includes/class-freemius.php:20512
544
  msgid "You are already running the %s in a trial mode."
545
  msgstr "Estás ejecutando %s en modo de prueba."
546
 
547
- #: includes/class-freemius.php:20523
548
  msgid "You already utilized a trial before."
549
  msgstr "Ya utilizaste un período de prueba antes."
550
 
551
- #: includes/class-freemius.php:20537
552
  msgid "Plan %s do not exist, therefore, can't start a trial."
553
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
554
 
555
- #: includes/class-freemius.php:20548
556
  msgid "Plan %s does not support a trial period."
557
  msgstr "El plan %s no admite un período de prueba."
558
 
559
- #: includes/class-freemius.php:20559
560
  msgid "None of the %s's plans supports a trial period."
561
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
562
 
563
- #: includes/class-freemius.php:20609
564
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
565
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
566
 
567
- #: includes/class-freemius.php:20645
568
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
569
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
570
 
571
- #: includes/class-freemius.php:20664
572
  msgid "Your %s free trial was successfully cancelled."
573
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
574
 
575
- #: includes/class-freemius.php:20980
576
  msgid "Version %s was released."
577
  msgstr "La versión %s se ha lanzado."
578
 
579
- #: includes/class-freemius.php:20980
580
  msgid "Please download %s."
581
  msgstr "Por favor descarga %s."
582
 
583
- #: includes/class-freemius.php:20987
584
  msgid "the latest %s version here"
585
  msgstr "la última versión %s aquí"
586
 
587
- #: includes/class-freemius.php:20992
588
  msgid "New"
589
  msgstr "Nuevo"
590
 
591
- #: includes/class-freemius.php:20997
592
  msgid "Seems like you got the latest release."
593
  msgstr "Parece que tienes la última versión."
594
 
595
- #: includes/class-freemius.php:20998
596
  msgid "You are all good!"
597
  msgstr "¡Está todo listo!"
598
 
599
- #: includes/class-freemius.php:21301
600
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
601
  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."
602
 
603
- #: includes/class-freemius.php:21441
604
  msgid "Site successfully opted in."
605
  msgstr "Sitio dado de alta correctamente."
606
 
607
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
608
  msgid "Awesome"
609
  msgstr "Increíble"
610
 
611
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
612
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
613
  msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
614
 
615
- #: includes/class-freemius.php:21459
616
  msgid "Thank you!"
617
  msgstr "¡Gracias!"
618
 
619
- #: includes/class-freemius.php:21466
620
  msgid "We will no longer be sending any usage data of %s on %s to %s."
621
  msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
622
 
623
- #: includes/class-freemius.php:21612
624
  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."
625
  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."
626
 
627
- #: includes/class-freemius.php:21618
628
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
629
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
630
 
631
- #: includes/class-freemius.php:21623
632
  msgid "%s is the new owner of the account."
633
  msgstr "%s es el nuevo dueño de la cuenta."
634
 
635
- #: includes/class-freemius.php:21625
636
  msgctxt "as congratulations"
637
  msgid "Congrats"
638
  msgstr "Felicidades"
639
 
640
- #: includes/class-freemius.php:21661
641
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
642
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
643
 
644
- #: includes/class-freemius.php:21673
645
  msgid "Please provide your full name."
646
  msgstr "Por favor, dinos tu nombre completo."
647
 
648
- #: includes/class-freemius.php:21678
649
  msgid "Your name was successfully updated."
650
  msgstr "Tu nombre fue actualizado correctamente."
651
 
652
- #: includes/class-freemius.php:21739
653
  msgid "You have successfully updated your %s."
654
  msgstr "Has actualizado correctamente tu %s."
655
 
656
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
657
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
658
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
659
 
660
- #: includes/class-freemius.php:21880
661
  msgctxt "advance notice of something that will need attention."
662
  msgid "Heads up"
663
  msgstr "Atención"
664
 
665
- #: includes/class-freemius.php:22339
666
  msgctxt "exclamation"
667
  msgid "Hey"
668
  msgstr "Hey"
669
 
670
- #: includes/class-freemius.php:22339
671
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
672
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
673
 
674
- #: includes/class-freemius.php:22347
675
  msgid "No commitment for %s days - cancel anytime!"
676
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
677
 
678
- #: includes/class-freemius.php:22348
679
  msgid "No credit card required"
680
  msgstr "No se necesita tarjeta de crédito"
681
 
682
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
683
  msgctxt "call to action"
684
  msgid "Start free trial"
685
  msgstr "Comenzar el período de prueba gratuito"
686
 
687
- #: includes/class-freemius.php:22432
688
  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!"
689
  msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
690
 
691
- #: includes/class-freemius.php:22441
692
  msgid "Learn more"
693
  msgstr "Saber más"
694
 
695
- #: includes/class-freemius.php22627, templates/account.php507,
696
- #: templates/account.php657, templates/connect.php179,
697
- #: templates/connect.php455, templates/forms/license-activation.php27,
698
  #: templates/account/partials/addon.php:321
699
  msgid "Activate License"
700
  msgstr "Activar licencia"
701
 
702
- #: includes/class-freemius.php22628, templates/account.php601,
703
- #: templates/account.php656, templates/account/partials/addon.php322,
704
  #: templates/account/partials/site.php:271
705
  msgid "Change License"
706
  msgstr "Cambiar licencia"
707
 
708
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
709
  msgid "Opt Out"
710
  msgstr "Darse de baja"
711
 
712
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
713
  #: templates/account/partials/site.php49,
714
  #: templates/account/partials/site.php:169
715
  msgid "Opt In"
716
  msgstr "Inscribirse"
717
 
718
- #: includes/class-freemius.php:22973
719
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
720
- 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"
721
 
722
- #: includes/class-freemius.php:22981
723
  msgid "Activate %s features"
724
  msgstr "Activar características %s"
725
 
726
- #: includes/class-freemius.php:22994
727
  msgid "Please follow these steps to complete the upgrade"
728
  msgstr "Por favor, sigue estos pasos para completar la actualización"
729
 
730
- #: includes/class-freemius.php:22998
731
  msgid "Download the latest %s version"
732
  msgstr "Descargar la última versión %s"
733
 
734
- #: includes/class-freemius.php:23002
735
  msgid "Upload and activate the downloaded version"
736
  msgstr "Cargar y activar la versión descargada"
737
 
738
- #: includes/class-freemius.php:23004
739
  msgid "How to upload and activate?"
740
  msgstr "¿Cómo subirlo y activarlo?"
741
 
742
- #: includes/class-freemius.php:23138
743
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
744
  msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
745
 
746
- #: includes/class-freemius.php:23299
747
  msgid "Auto installation only works for opted-in users."
748
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
749
 
750
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
751
- #: includes/class-fs-plugin-updater.php1218,
752
- #: includes/class-fs-plugin-updater.php:1232
753
  msgid "Invalid module ID."
754
  msgstr "Id de módulo no válido."
755
 
756
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
757
  msgid "Premium version already active."
758
  msgstr "Versión premium ya activa."
759
 
760
- #: includes/class-freemius.php:23325
761
  msgid "You do not have a valid license to access the premium version."
762
  msgstr "No tienes una licencia válida para acceder a la versión premium."
763
 
764
- #: includes/class-freemius.php:23332
765
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
766
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
767
 
768
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
769
  msgid "Premium add-on version already installed."
770
  msgstr "Versión del complemento premium ya instalada."
771
 
772
- #: includes/class-freemius.php:23700
773
  msgid "View paid features"
774
  msgstr "Ver las funciones de pago"
775
 
776
- #: includes/class-freemius.php:24022
777
  msgid "Thank you so much for using %s and its add-ons!"
778
  msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
779
 
780
- #: includes/class-freemius.php:24023
781
  msgid "Thank you so much for using %s!"
782
  msgstr "¡Muchas gracias por utilizar %s!"
783
 
784
- #: includes/class-freemius.php:24029
785
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
786
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
787
 
788
- #: includes/class-freemius.php:24033
789
  msgid "Thank you so much for using our products!"
790
  msgstr "¡Muchas gracias por utilizar nuestros productos!"
791
 
792
- #: includes/class-freemius.php:24034
793
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
794
  msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
795
 
796
- #: includes/class-freemius.php:24053
797
  msgid "%s and its add-ons"
798
  msgstr "%s y sus complementos"
799
 
800
- #: includes/class-freemius.php:24062
801
  msgid "Products"
802
  msgstr "Productos"
803
 
804
- #: includes/class-freemius.php24069, templates/connect.php:280
805
  msgid "Yes"
806
  msgstr "Si"
807
 
808
- #: includes/class-freemius.php24070, templates/connect.php:281
809
  msgid "send me security & feature updates, educational content and offers."
810
  msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
811
 
812
- #: includes/class-freemius.php24071, templates/connect.php:286
813
  msgid "No"
814
  msgstr "No"
815
 
816
- #: includes/class-freemius.php24073, templates/connect.php:288
817
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
818
  msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
819
 
820
- #: includes/class-freemius.php:24083
821
  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 :-)"
822
  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 :-)"
823
 
824
- #: includes/class-freemius.php24085, templates/connect.php:295
825
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
826
  msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
827
 
828
- #: includes/class-freemius.php:24367
829
  msgid "License key is empty."
830
  msgstr "La clave de licencia está vacía."
831
 
@@ -858,332 +883,332 @@ msgstr "nueva versión"
858
  msgid "Important Upgrade Notice:"
859
  msgstr "Aviso importante de actualización:"
860
 
861
- #: includes/class-fs-plugin-updater.php:1283
862
  msgid "Installing plugin: %s"
863
  msgstr "Instalando plugin: %s"
864
 
865
- #: includes/class-fs-plugin-updater.php:1324
866
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
867
  msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
868
 
869
- #: includes/class-fs-plugin-updater.php:1506
870
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
871
  msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
872
 
873
- #: includes/fs-plugin-info-dialog.php:535
874
  msgid "Purchase More"
875
  msgstr "Comprar más"
876
 
877
- #: includes/fs-plugin-info-dialog.php536,
878
  #: templates/account/partials/addon.php:385
879
  msgctxt "verb"
880
  msgid "Purchase"
881
  msgstr "Comprar"
882
 
883
- #: includes/fs-plugin-info-dialog.php:540
884
  msgid "Start my free %s"
885
  msgstr "Comenzar mi período gratuito de %s"
886
 
887
- #: includes/fs-plugin-info-dialog.php:738
888
  msgid "Install Free Version Update Now"
889
  msgstr "Instalar la actualización gratuita ahora"
890
 
891
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
892
  msgid "Install Update Now"
893
  msgstr "Instalar actualización ahora"
894
 
895
- #: includes/fs-plugin-info-dialog.php:748
896
  msgid "Install Free Version Now"
897
  msgstr "Instalar la versión gratuita ahora"
898
 
899
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
900
  #: templates/auto-installation.php111,
901
  #: templates/account/partials/addon.php365,
902
  #: templates/account/partials/addon.php:418
903
  msgid "Install Now"
904
  msgstr "Instalar ahora"
905
 
906
- #: includes/fs-plugin-info-dialog.php:765
907
  msgctxt "as download latest version"
908
  msgid "Download Latest Free Version"
909
  msgstr "Descargar la última versión gratuita"
910
 
911
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
912
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
913
  msgctxt "as download latest version"
914
  msgid "Download Latest"
915
  msgstr "Descargar la última"
916
 
917
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
918
  #: templates/account/partials/addon.php356,
919
  #: templates/account/partials/addon.php:412
920
  msgid "Activate this add-on"
921
  msgstr "Activar este complemento"
922
 
923
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
924
  msgid "Activate Free Version"
925
  msgstr "Activar versión gratuita"
926
 
927
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
928
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
929
  msgid "Activate"
930
  msgstr "Activar"
931
 
932
- #: includes/fs-plugin-info-dialog.php:994
933
  msgctxt "Plugin installer section title"
934
  msgid "Description"
935
  msgstr "Descripción"
936
 
937
- #: includes/fs-plugin-info-dialog.php:995
938
  msgctxt "Plugin installer section title"
939
  msgid "Installation"
940
  msgstr "Instalación"
941
 
942
- #: includes/fs-plugin-info-dialog.php:996
943
  msgctxt "Plugin installer section title"
944
  msgid "FAQ"
945
  msgstr "FAQ"
946
 
947
- #: includes/fs-plugin-info-dialog.php997,
948
  #: templates/plugin-info/description.php:55
949
  msgid "Screenshots"
950
  msgstr "Capturas de pantalla"
951
 
952
- #: includes/fs-plugin-info-dialog.php:998
953
  msgctxt "Plugin installer section title"
954
  msgid "Changelog"
955
  msgstr "Registro de cambios"
956
 
957
- #: includes/fs-plugin-info-dialog.php:999
958
  msgctxt "Plugin installer section title"
959
  msgid "Reviews"
960
  msgstr "Valoraciones"
961
 
962
- #: includes/fs-plugin-info-dialog.php:1000
963
  msgctxt "Plugin installer section title"
964
  msgid "Other Notes"
965
  msgstr "Otras notas"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1015
968
  msgctxt "Plugin installer section title"
969
  msgid "Features & Pricing"
970
  msgstr "Características y precios"
971
 
972
- #: includes/fs-plugin-info-dialog.php:1025
973
  msgid "Plugin Install"
974
  msgstr "Instalar plugin"
975
 
976
- #: includes/fs-plugin-info-dialog.php:1097
977
  msgctxt "e.g. Professional Plan"
978
  msgid "%s Plan"
979
  msgstr "Plan %s"
980
 
981
- #: includes/fs-plugin-info-dialog.php:1123
982
  msgctxt "e.g. the best product"
983
  msgid "Best"
984
  msgstr "El mejor"
985
 
986
- #: includes/fs-plugin-info-dialog.php1129,
987
- #: includes/fs-plugin-info-dialog.php:1149
988
  msgctxt "as every month"
989
  msgid "Monthly"
990
  msgstr "Mensual"
991
 
992
- #: includes/fs-plugin-info-dialog.php:1132
993
  msgctxt "as once a year"
994
  msgid "Annual"
995
  msgstr "Anual"
996
 
997
- #: includes/fs-plugin-info-dialog.php:1135
998
  msgid "Lifetime"
999
  msgstr "Permanente"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php1149,
1002
- #: includes/fs-plugin-info-dialog.php1151,
1003
- #: includes/fs-plugin-info-dialog.php:1153
1004
  msgctxt "e.g. billed monthly"
1005
  msgid "Billed %s"
1006
  msgstr "Facturado %s"
1007
 
1008
- #: includes/fs-plugin-info-dialog.php:1151
1009
  msgctxt "as once a year"
1010
  msgid "Annually"
1011
  msgstr "Anualmente"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1153
1014
  msgctxt "as once a year"
1015
  msgid "Once"
1016
  msgstr "Una vez"
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1159
1019
  msgid "Single Site License"
1020
  msgstr "Licencia para un único sitio"
1021
 
1022
- #: includes/fs-plugin-info-dialog.php:1161
1023
  msgid "Unlimited Licenses"
1024
  msgstr "Licencias ilimitadas"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1163
1027
  msgid "Up to %s Sites"
1028
  msgstr "Hasta %s sitios"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php1173,
1031
  #: templates/plugin-info/features.php:82
1032
  msgctxt "as monthly period"
1033
  msgid "mo"
1034
  msgstr "me"
1035
 
1036
- #: includes/fs-plugin-info-dialog.php1180,
1037
  #: templates/plugin-info/features.php:80
1038
  msgctxt "as annual period"
1039
  msgid "year"
1040
  msgstr "año"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1234
1043
  msgctxt "noun"
1044
  msgid "Price"
1045
  msgstr "Precio"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:1282
1048
  msgid "Save %s"
1049
  msgstr "Guardar %s"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:1292
1052
  msgid "No commitment for %s - cancel anytime"
1053
  msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:1295
1056
  msgid "After your free %s, pay as little as %s"
1057
  msgstr "Después de su período gratuito %s, pague sólo %s"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:1306
1060
  msgid "Details"
1061
  msgstr "Detalles"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1064
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1065
  #: templates/account/partials/addon.php:36
1066
  msgctxt "product version"
1067
  msgid "Version"
1068
  msgstr "Versión"
1069
 
1070
- #: includes/fs-plugin-info-dialog.php:1317
1071
  msgctxt "as the plugin author"
1072
  msgid "Author"
1073
  msgstr "Autor"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1324
1076
  msgid "Last Updated"
1077
  msgstr "Última actualización"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1080
  msgctxt "x-ago"
1081
  msgid "%s ago"
1082
  msgstr "hace %s"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1338
1085
  msgid "Requires WordPress Version"
1086
  msgstr "Necesita la versión de WordPress"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1339
1089
  msgid "%s or higher"
1090
  msgstr "%s o mayor"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1346
1093
  msgid "Compatible up to"
1094
  msgstr "Compatible hasta"
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1354
1097
  msgid "Downloaded"
1098
  msgstr "Descargado"
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1358
1101
  msgid "%s time"
1102
  msgstr "% vez"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php:1360
1105
  msgid "%s times"
1106
  msgstr "%s veces"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1370
1109
  msgid "WordPress.org Plugin Page"
1110
  msgstr "Página del plugin en WordPress.org"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1378
1113
  msgid "Plugin Homepage"
1114
  msgstr "Página web del plugin"
1115
 
1116
- #: includes/fs-plugin-info-dialog.php1386,
1117
- #: includes/fs-plugin-info-dialog.php:1468
1118
  msgid "Donate to this plugin"
1119
  msgstr "Donar a este plugin"
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1393
1122
  msgid "Average Rating"
1123
  msgstr "Calificación media"
1124
 
1125
- #: includes/fs-plugin-info-dialog.php:1400
1126
  msgid "based on %s"
1127
  msgstr "basado en %s"
1128
 
1129
- #: includes/fs-plugin-info-dialog.php:1404
1130
  msgid "%s rating"
1131
  msgstr "%s calificación"
1132
 
1133
- #: includes/fs-plugin-info-dialog.php:1406
1134
  msgid "%s ratings"
1135
  msgstr "%s calificaciones"
1136
 
1137
- #: includes/fs-plugin-info-dialog.php:1421
1138
  msgid "%s star"
1139
  msgstr "%s estrella"
1140
 
1141
- #: includes/fs-plugin-info-dialog.php:1423
1142
  msgid "%s stars"
1143
  msgstr "%s estrellas"
1144
 
1145
- #: includes/fs-plugin-info-dialog.php:1434
1146
  msgid "Click to see reviews that provided a rating of %s"
1147
  msgstr "Haz clic para ver los comentarios con una valoración de %s"
1148
 
1149
- #: includes/fs-plugin-info-dialog.php:1447
1150
  msgid "Contributors"
1151
  msgstr "Colaboradores"
1152
 
1153
- #: includes/fs-plugin-info-dialog.php1476,
1154
- #: includes/fs-plugin-info-dialog.php:1478
1155
  msgid "Warning"
1156
  msgstr "Atencion"
1157
 
1158
- #: includes/fs-plugin-info-dialog.php:1476
1159
  msgid "This plugin has not been tested with your current version of WordPress."
1160
  msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1161
 
1162
- #: includes/fs-plugin-info-dialog.php:1478
1163
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1164
  msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1165
 
1166
- #: includes/fs-plugin-info-dialog.php:1497
1167
  msgid "Paid add-on must be deployed to Freemius."
1168
  msgstr "El complemento de pago se debe implementar en Freemius."
1169
 
1170
- #: includes/fs-plugin-info-dialog.php:1498
1171
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1172
  msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1173
 
1174
- #: includes/fs-plugin-info-dialog.php:1519
1175
  msgid "Newer Version (%s) Installed"
1176
  msgstr "Versión más reciente (%s) instalada"
1177
 
1178
- #: includes/fs-plugin-info-dialog.php:1520
1179
  msgid "Newer Free Version (%s) Installed"
1180
  msgstr "Versión gratuita más reciente (%s) instalada"
1181
 
1182
- #: includes/fs-plugin-info-dialog.php:1527
1183
  msgid "Latest Version Installed"
1184
  msgstr "Última versión instalada"
1185
 
1186
- #: includes/fs-plugin-info-dialog.php:1528
1187
  msgid "Latest Free Version Installed"
1188
  msgstr "Última versión gratuita instalada"
1189
 
@@ -1290,223 +1315,231 @@ msgstr "Plan"
1290
  msgid "Bundle Plan"
1291
  msgstr "Plan combinado"
1292
 
1293
- #: templates/account.php:199
1294
  msgid "Free Trial"
1295
  msgstr "Período de prueba gratuito"
1296
 
1297
- #: templates/account.php:210
1298
  msgid "Account Details"
1299
  msgstr "Detalles de la cuenta"
1300
 
1301
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1302
  msgid "Start Debug"
1303
- msgstr "Start Debug"
1304
 
1305
- #: templates/account.php:219
1306
  msgid "Stop Debug"
1307
- msgstr "Stop Debug"
1308
 
1309
- #: templates/account.php:226
1310
  msgid "Billing & Invoices"
1311
  msgstr "Facturación y facturas"
1312
 
1313
- #: templates/account.php:237
1314
  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?"
1315
  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?"
1316
 
1317
- #: templates/account.php:239
1318
  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?"
1319
  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?"
1320
 
1321
- #: templates/account.php:242
1322
  msgid "Delete Account"
1323
  msgstr "Borrar cuenta"
1324
 
1325
- #: templates/account.php254, templates/account/partials/addon.php231,
1326
  #: templates/account/partials/deactivate-license-button.php:35
1327
  msgid "Deactivate License"
1328
  msgstr "Desactivar licencia"
1329
 
1330
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1331
  msgid "Are you sure you want to proceed?"
1332
  msgstr "¿Estás seguro que quieres proceder?"
1333
 
1334
- #: templates/account.php277, templates/account/partials/addon.php:255
1335
  msgid "Cancel Subscription"
1336
  msgstr "Cancelar suscripción"
1337
 
1338
- #: templates/account.php306, templates/account/partials/addon.php:340
1339
  msgctxt "as synchronize"
1340
  msgid "Sync"
1341
  msgstr "Sincronizar"
1342
 
1343
- #: templates/account.php321, templates/debug.php:505
1344
  msgid "Name"
1345
  msgstr "Nombre"
1346
 
1347
- #: templates/account.php327, templates/debug.php:506
1348
  msgid "Email"
1349
  msgstr "Correo electrónico"
1350
 
1351
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1352
  msgid "User ID"
1353
  msgstr "ID de usuario"
1354
 
1355
- #: templates/account.php352, templates/account.php670,
1356
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1357
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1358
  #: templates/debug.php632, templates/account/payments.php35,
1359
  #: templates/debug/logger.php:21
1360
  msgid "ID"
1361
  msgstr "ID"
1362
 
1363
- #: templates/account.php:359
1364
  msgid "Site ID"
1365
  msgstr "ID del sitio"
1366
 
1367
- #: templates/account.php:362
1368
  msgid "No ID"
1369
  msgstr "Sin ID"
1370
 
1371
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1372
  #: templates/debug.php456, templates/debug.php508,
1373
  #: templates/account/partials/site.php:227
1374
  msgid "Public Key"
1375
  msgstr "Clave pública"
1376
 
1377
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1378
  #: templates/debug.php509, templates/account/partials/site.php:239
1379
  msgid "Secret Key"
1380
  msgstr "Clave secreta"
1381
 
1382
- #: templates/account.php:376
1383
  msgctxt "as secret encryption key missing"
1384
  msgid "No Secret"
1385
  msgstr "Sin clave secreta"
1386
 
1387
- #: templates/account.php403, templates/account/partials/site.php120,
1388
  #: templates/account/partials/site.php:122
1389
  msgid "Trial"
1390
  msgstr "Período de prueba gratuito"
1391
 
1392
- #: templates/account.php430, templates/debug.php561,
1393
  #: templates/account/partials/site.php:260
1394
  msgid "License Key"
1395
  msgstr "Clave de licencia"
1396
 
1397
- #: templates/account.php:461
1398
  msgid "Join the Beta program"
1399
- msgstr "Únase al programa Beta"
1400
 
1401
- #: templates/account.php:467
1402
  msgid "not verified"
1403
  msgstr "no verificado"
1404
 
1405
- #: templates/account.php476, templates/account/partials/addon.php:190
1406
  msgid "Expired"
1407
  msgstr "Caducado"
1408
 
1409
- #: templates/account.php:536
1410
  msgid "Premium version"
1411
  msgstr "Versión premium"
1412
 
1413
- #: templates/account.php:538
1414
  msgid "Free version"
1415
  msgstr "Versión gratuita"
1416
 
1417
- #: templates/account.php:550
1418
  msgid "Verify Email"
1419
  msgstr "Verificar correo electrónico"
1420
 
1421
- #: templates/account.php:564
1422
  msgid "Download %s Version"
1423
  msgstr "Descargar versión %s"
1424
 
1425
- #: templates/account.php:580
1426
  msgid "Download Paid Version"
1427
- msgstr "Download Paid Version"
1428
 
1429
- #: templates/account.php598, templates/account.php853,
1430
  #: templates/account/partials/site.php248,
1431
  #: templates/account/partials/site.php:270
1432
  msgctxt "verb"
1433
  msgid "Show"
1434
  msgstr "Mostrar"
1435
 
1436
- #: templates/account.php:613
1437
  msgid "What is your %s?"
1438
  msgstr "¿Cual es tú %s?"
1439
 
1440
- #: templates/account.php621, templates/account/billing.php:21
1441
  msgctxt "verb"
1442
  msgid "Edit"
1443
  msgstr "Editar"
1444
 
1445
- #: templates/account.php625, templates/forms/user-change.php:27
1446
  msgid "Change User"
1447
- msgstr "Change User"
1448
 
1449
- #: templates/account.php:649
1450
  msgid "Sites"
1451
  msgstr "Sitios"
1452
 
1453
- #: templates/account.php:662
1454
  msgid "Search by address"
1455
  msgstr "Buscar por dirección"
1456
 
1457
- #: templates/account.php671, templates/debug.php:366
1458
  msgid "Address"
1459
  msgstr "Dirección"
1460
 
1461
- #: templates/account.php:672
1462
  msgid "License"
1463
  msgstr "Licencia"
1464
 
1465
- #: templates/account.php:673
1466
  msgid "Plan"
1467
  msgstr "Plan"
1468
 
1469
- #: templates/account.php:718
1470
  msgctxt "as software license"
1471
  msgid "License"
1472
  msgstr "Licencia"
1473
 
1474
- #: templates/account.php:847
1475
  msgctxt "verb"
1476
  msgid "Hide"
1477
  msgstr "Ocultar"
1478
 
1479
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1480
  msgid "Processing"
1481
  msgstr "Procesando"
1482
 
1483
- #: templates/account.php:872
1484
  msgid "Get updates for bleeding edge Beta versions of %s."
1485
  msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s."
1486
 
1487
- #: templates/account.php:930
1488
  msgid "Cancelling %s"
1489
  msgstr "Cancelando %s"
1490
 
1491
- #: templates/account.php930, templates/account.php947,
1492
  #: templates/forms/subscription-cancellation.php27,
1493
  #: templates/forms/deactivation/form.php:133
1494
  msgid "trial"
1495
  msgstr "período de prueba"
1496
 
1497
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1498
  msgid "Cancelling %s..."
1499
  msgstr "Cancelando %s..."
1500
 
1501
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1502
  #: templates/forms/deactivation/form.php:134
1503
  msgid "subscription"
1504
  msgstr "suscripción"
1505
 
1506
- #: templates/account.php:962
1507
  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?"
1508
  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?"
1509
 
 
 
 
 
 
 
 
 
1510
  #: templates/add-ons.php:38
1511
  msgid "View details"
1512
  msgstr "Ver detalles"
@@ -1517,7 +1550,7 @@ msgstr "Complementos para %s"
1517
 
1518
  #: templates/add-ons.php:58
1519
  msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1520
- msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1521
 
1522
  #: templates/add-ons.php:229
1523
  msgctxt "active add-on"
@@ -1638,7 +1671,7 @@ msgstr "Clave de licencia"
1638
  msgid "Can't find your license key?"
1639
  msgstr "¿No puedes encontrar tu clave de licencia?"
1640
 
1641
- #: templates/connect.php323, templates/connect.php694,
1642
  #: templates/forms/deactivation/retry-skip.php:20
1643
  msgctxt "verb"
1644
  msgid "Skip"
@@ -1666,7 +1699,7 @@ msgstr "Resumen del sitio"
1666
 
1667
  #: templates/connect.php:373
1668
  msgid "Site URL, WP version, PHP info"
1669
- msgstr "Site URL, WP version, PHP info"
1670
 
1671
  #: templates/connect.php:379
1672
  msgid "Admin Notices"
@@ -1690,46 +1723,46 @@ msgstr "Boletín"
1690
 
1691
  #: templates/connect.php:403
1692
  msgid "Plugins & Themes"
1693
- msgstr "Plugins & Themes"
1694
 
1695
  #: templates/connect.php:404
1696
  msgid "Title, slug, version, and is active"
1697
- msgstr "Title, slug, version, and is active"
1698
 
1699
- #: templates/connect.php420, templates/forms/license-activation.php:41
1700
  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."
1701
  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."
1702
 
1703
- #: templates/connect.php:425
1704
  msgid "What permissions are being granted?"
1705
  msgstr "¿Qué permisos se otorgan?"
1706
 
1707
- #: templates/connect.php:451
1708
  msgid "Don't have a license key?"
1709
  msgstr "¿No tienes una clave de licencia?"
1710
 
1711
- #: templates/connect.php:454
1712
  msgid "Have a license key?"
1713
  msgstr "¿Tienes una clave de licencia?"
1714
 
1715
- #: templates/connect.php:462
1716
  msgid "Privacy Policy"
1717
  msgstr "Política de privacidad"
1718
 
1719
- #: templates/connect.php:464
1720
  msgid "License Agreement"
1721
  msgstr "Acuerdo de licencia"
1722
 
1723
- #: templates/connect.php:464
1724
  msgid "Terms of Service"
1725
  msgstr "Términos de servicio"
1726
 
1727
- #: templates/connect.php:853
1728
  msgctxt "as in the process of sending an email"
1729
  msgid "Sending email"
1730
  msgstr "Enviando correo electrónico"
1731
 
1732
- #: templates/connect.php:854
1733
  msgctxt "as activating plugin"
1734
  msgid "Activating"
1735
  msgstr "Activando"
@@ -1886,7 +1919,7 @@ msgstr "ID del blog"
1886
 
1887
  #: templates/debug.php:370
1888
  msgid "License ID"
1889
- msgstr "License ID"
1890
 
1891
  #: templates/debug.php434, templates/debug.php533,
1892
  #: templates/account/partials/addon.php:435
@@ -2176,153 +2209,153 @@ msgstr "Sin caducidad"
2176
  msgid "Apply to become an affiliate"
2177
  msgstr "Aceptar para hacerse afiliado"
2178
 
2179
- #: templates/forms/affiliation.php:104
2180
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2181
  msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s."
2182
 
2183
- #: templates/forms/affiliation.php:119
2184
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2185
  msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional."
2186
 
2187
- #: templates/forms/affiliation.php:122
2188
  msgid "Your affiliation account was temporarily suspended."
2189
  msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente."
2190
 
2191
- #: templates/forms/affiliation.php:125
2192
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2193
  msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días."
2194
 
2195
- #: templates/forms/affiliation.php:128
2196
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2197
  msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte."
2198
 
2199
- #: templates/forms/affiliation.php:141
2200
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2201
  msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)"
2202
 
2203
- #: templates/forms/affiliation.php:142
2204
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2205
  msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!"
2206
 
2207
- #: templates/forms/affiliation.php:145
2208
  msgid "Program Summary"
2209
  msgstr "Sumario del programa"
2210
 
2211
- #: templates/forms/affiliation.php:147
2212
  msgid "%s commission when a customer purchases a new license."
2213
  msgstr "%s comisión cuando un cliente compra una nueva licencia."
2214
 
2215
- #: templates/forms/affiliation.php:149
2216
  msgid "Get commission for automated subscription renewals."
2217
  msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones."
2218
 
2219
- #: templates/forms/affiliation.php:152
2220
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2221
  msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales."
2222
 
2223
- #: templates/forms/affiliation.php:155
2224
  msgid "Unlimited commissions."
2225
  msgstr "Comisiones Ilimitadas"
2226
 
2227
- #: templates/forms/affiliation.php:157
2228
  msgid "%s minimum payout amount."
2229
  msgstr "%s cantidad mínima a pagar."
2230
 
2231
- #: templates/forms/affiliation.php:158
2232
  msgid "Payouts are in USD and processed monthly via PayPal."
2233
  msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal."
2234
 
2235
- #: templates/forms/affiliation.php:159
2236
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2237
  msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días."
2238
 
2239
- #: templates/forms/affiliation.php:162
2240
  msgid "Affiliate"
2241
  msgstr "Afiliado"
2242
 
2243
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2244
  msgid "Email address"
2245
  msgstr "Dirección de correo electrónico"
2246
 
2247
- #: templates/forms/affiliation.php:169
2248
  msgid "Full name"
2249
  msgstr "Nombre completo"
2250
 
2251
- #: templates/forms/affiliation.php:173
2252
  msgid "PayPal account email address"
2253
  msgstr "Dirección de correo electrónico de PayPal"
2254
 
2255
- #: templates/forms/affiliation.php:177
2256
  msgid "Where are you going to promote the %s?"
2257
  msgstr "¿Dónde vas a promocionar %s?"
2258
 
2259
- #: templates/forms/affiliation.php:179
2260
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2261
  msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s."
2262
 
2263
- #: templates/forms/affiliation.php:181
2264
  msgid "Add another domain"
2265
  msgstr "Añadir otro dominio"
2266
 
2267
- #: templates/forms/affiliation.php:185
2268
  msgid "Extra Domains"
2269
  msgstr "Dominios extra"
2270
 
2271
- #: templates/forms/affiliation.php:186
2272
  msgid "Extra domains where you will be marketing the product from."
2273
  msgstr "Dominios extra desde donde promocionarás el producto."
2274
 
2275
- #: templates/forms/affiliation.php:196
2276
  msgid "Promotion methods"
2277
  msgstr "Métodos de promoción"
2278
 
2279
- #: templates/forms/affiliation.php:199
2280
  msgid "Social media (Facebook, Twitter, etc.)"
2281
  msgstr "Social media (Facebook, Twitter, etc.)"
2282
 
2283
- #: templates/forms/affiliation.php:203
2284
  msgid "Mobile apps"
2285
  msgstr "Apps móviles "
2286
 
2287
- #: templates/forms/affiliation.php:207
2288
  msgid "Website, email, and social media statistics (optional)"
2289
  msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)"
2290
 
2291
- #: templates/forms/affiliation.php:210
2292
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2293
  msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)"
2294
 
2295
- #: templates/forms/affiliation.php:214
2296
  msgid "How will you promote us?"
2297
  msgstr "¿Como nos promocionarás?"
2298
 
2299
- #: templates/forms/affiliation.php:217
2300
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2301
  msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)"
2302
 
2303
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2304
  msgid "Cancel"
2305
  msgstr "Cancelar"
2306
 
2307
- #: templates/forms/affiliation.php:225
2308
  msgid "Become an affiliate"
2309
  msgstr "Hacerse afiliado"
2310
 
2311
  #: templates/forms/data-debug-mode.php:25
2312
  msgid "Please enter the license key to enable the debug mode:"
2313
- msgstr "Please enter the license key to enable the debug mode:"
2314
 
2315
  #: templates/forms/data-debug-mode.php:27
2316
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2317
- msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2318
 
2319
  #: templates/forms/data-debug-mode.php:32
2320
  msgid "Submit"
2321
- msgstr "Submit"
2322
 
2323
  #: templates/forms/data-debug-mode.php:36
2324
  msgid "User key"
2325
- msgstr "User key"
2326
 
2327
  #: templates/forms/license-activation.php:23
2328
  msgid "Please enter the license key that you received in the email right after the purchase:"
@@ -2334,7 +2367,7 @@ msgstr "Activar licencia"
2334
 
2335
  #: templates/forms/license-activation.php:181
2336
  msgid "Associate with the license owner's account."
2337
- msgstr "Associate with the license owner's account."
2338
 
2339
  #: templates/forms/optout.php:30
2340
  msgctxt "verb"
@@ -2348,19 +2381,19 @@ msgstr "Inscribirse"
2348
 
2349
  #: templates/forms/optout.php:34
2350
  msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2351
- msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2352
 
2353
  #: templates/forms/optout.php:36
2354
  msgid "Warning: Opting out will block automatic updates"
2355
- msgstr "Warning: Opting out will block automatic updates"
2356
 
2357
  #: templates/forms/optout.php:37
2358
  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."
2359
- 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."
2360
 
2361
  #: templates/forms/optout.php:39
2362
  msgid "I'd like to keep automatic updates"
2363
- msgstr "I'd like to keep automatic updates"
2364
 
2365
  #: templates/forms/optout.php:44
2366
  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 letting us continue with the tracking."
@@ -2368,7 +2401,7 @@ msgstr "El uso del seguimiento se hace con la intención de mejorar %s. Crear un
2368
 
2369
  #: templates/forms/optout.php:45
2370
  msgid "On second thought - I want to continue helping"
2371
- msgstr "On second thought - I want to continue helping"
2372
 
2373
  #: templates/forms/optout.php:49
2374
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
@@ -2376,11 +2409,11 @@ msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
2376
 
2377
  #: templates/forms/optout.php:74
2378
  msgid "Plugins & themes tracking"
2379
- msgstr "Plugins & themes tracking"
2380
 
2381
- #: templates/forms/optout.php:256
2382
  msgid "Saved"
2383
- msgstr "Saved"
2384
 
2385
  #: templates/forms/premium-versions-upgrade-handler.php:40
2386
  msgid "There is a new version of %s available."
@@ -2454,20 +2487,20 @@ msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empez
2454
 
2455
  #: templates/forms/user-change.php:26
2456
  msgid "By changing the user, you agree to transfer the account ownership to:"
2457
- msgstr "By changing the user, you agree to transfer the account ownership to:"
2458
 
2459
  #: templates/forms/user-change.php:28
2460
  msgid "I Agree - Change User"
2461
- msgstr "I Agree - Change User"
2462
 
2463
  #: templates/forms/user-change.php:30
2464
  msgid "Enter email address"
2465
- msgstr "Enter email address"
2466
 
2467
  #: templates/forms/user-change.php:81
2468
  msgctxt "close window"
2469
  msgid "Dismiss"
2470
- msgstr "Dismiss"
2471
 
2472
  #: templates/js/style-premium-theme.php:39
2473
  msgid "Premium"
@@ -2596,19 +2629,19 @@ msgstr "desactivando"
2596
  msgid "switching"
2597
  msgstr "cambiando"
2598
 
2599
- #: templates/forms/deactivation/form.php:365
2600
  msgid "Submit & %s"
2601
  msgstr "Enviar y %s"
2602
 
2603
- #: templates/forms/deactivation/form.php:386
2604
  msgid "Kindly tell us the reason so we can improve."
2605
  msgstr "Por favor, dínos la razón para que podamos mejorar."
2606
 
2607
- #: templates/forms/deactivation/form.php:511
2608
  msgid "Yes - %s"
2609
  msgstr "Si - %s"
2610
 
2611
- #: templates/forms/deactivation/form.php:518
2612
  msgid "Skip & %s"
2613
  msgstr "Saltar y %s"
2614
 
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
5
+ # David Perez <david@closemarketing.es>, 2020
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: 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
  "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
  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
 
898
+ #: includes/fs-plugin-info-dialog.php:541
899
  msgid "Purchase More"
900
  msgstr "Comprar más"
901
 
902
+ #: includes/fs-plugin-info-dialog.php542,
903
  #: templates/account/partials/addon.php:385
904
  msgctxt "verb"
905
  msgid "Purchase"
906
  msgstr "Comprar"
907
 
908
+ #: includes/fs-plugin-info-dialog.php:546
909
  msgid "Start my free %s"
910
  msgstr "Comenzar mi período gratuito de %s"
911
 
912
+ #: includes/fs-plugin-info-dialog.php:744
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
 
920
+ #: includes/fs-plugin-info-dialog.php:754
921
  msgid "Install Free Version Now"
922
  msgstr "Instalar la versión gratuita ahora"
923
 
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
  #: templates/auto-installation.php111,
926
  #: templates/account/partials/addon.php365,
927
  #: templates/account/partials/addon.php:418
928
  msgid "Install Now"
929
  msgstr "Instalar ahora"
930
 
931
+ #: includes/fs-plugin-info-dialog.php:771
932
  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"
940
  msgstr "Descargar la última"
941
 
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
  #: templates/account/partials/addon.php356,
944
  #: templates/account/partials/addon.php:412
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"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
  msgctxt "Plugin installer section title"
959
  msgid "Description"
960
  msgstr "Descripción"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
  msgctxt "Plugin installer section title"
964
  msgid "Installation"
965
  msgstr "Instalación"
966
 
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
  msgctxt "Plugin installer section title"
969
  msgid "FAQ"
970
  msgstr "FAQ"
971
 
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
  #: templates/plugin-info/description.php:55
974
  msgid "Screenshots"
975
  msgstr "Capturas de pantalla"
976
 
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
  msgctxt "Plugin installer section title"
979
  msgid "Changelog"
980
  msgstr "Registro de cambios"
981
 
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
  msgctxt "Plugin installer section title"
984
  msgid "Reviews"
985
  msgstr "Valoraciones"
986
 
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
  msgctxt "Plugin installer section title"
989
  msgid "Other Notes"
990
  msgstr "Otras notas"
991
 
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
  msgctxt "Plugin installer section title"
994
  msgid "Features & Pricing"
995
  msgstr "Características y precios"
996
 
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
  msgid "Plugin Install"
999
  msgstr "Instalar plugin"
1000
 
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
  msgctxt "e.g. Professional Plan"
1003
  msgid "%s Plan"
1004
  msgstr "Plan %s"
1005
 
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
  msgctxt "e.g. the best product"
1008
  msgid "Best"
1009
  msgstr "El mejor"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
  msgctxt "as every month"
1014
  msgid "Monthly"
1015
  msgstr "Mensual"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
  msgctxt "as once a year"
1019
  msgid "Annual"
1020
  msgstr "Anual"
1021
 
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
  msgid "Lifetime"
1024
  msgstr "Permanente"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
  msgctxt "e.g. billed monthly"
1030
  msgid "Billed %s"
1031
  msgstr "Facturado %s"
1032
 
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
  msgctxt "as once a year"
1035
  msgid "Annually"
1036
  msgstr "Anualmente"
1037
 
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
  msgctxt "as once a year"
1040
  msgid "Once"
1041
  msgstr "Una vez"
1042
 
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
  msgid "Single Site License"
1045
  msgstr "Licencia para un único sitio"
1046
 
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
  msgid "Unlimited Licenses"
1049
  msgstr "Licencias ilimitadas"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
  msgid "Up to %s Sites"
1053
  msgstr "Hasta %s sitios"
1054
 
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
  #: templates/plugin-info/features.php:82
1057
  msgctxt "as monthly period"
1058
  msgid "mo"
1059
  msgstr "me"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
  #: templates/plugin-info/features.php:80
1063
  msgctxt "as annual period"
1064
  msgid "year"
1065
  msgstr "año"
1066
 
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
  msgctxt "noun"
1069
  msgid "Price"
1070
  msgstr "Precio"
1071
 
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
  msgid "Save %s"
1074
  msgstr "Guardar %s"
1075
 
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
  msgid "No commitment for %s - cancel anytime"
1078
  msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1079
 
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
  msgid "After your free %s, pay as little as %s"
1082
  msgstr "Después de su período gratuito %s, pague sólo %s"
1083
 
1084
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1092
  msgid "Version"
1093
  msgstr "Versión"
1094
 
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
  msgctxt "as the plugin author"
1097
  msgid "Author"
1098
  msgstr "Autor"
1099
 
1100
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1108
 
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
  msgid "Requires WordPress Version"
1111
  msgstr "Necesita la versión de WordPress"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
  msgid "%s or higher"
1115
  msgstr "%s o mayor"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
  msgid "Compatible up to"
1119
  msgstr "Compatible hasta"
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
  msgid "Downloaded"
1123
  msgstr "Descargado"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
  msgid "%s time"
1127
  msgstr "% vez"
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
  msgid "%s times"
1131
  msgstr "%s veces"
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
  msgid "WordPress.org Plugin Page"
1135
  msgstr "Página del plugin en WordPress.org"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
  msgid "Plugin Homepage"
1139
  msgstr "Página web del plugin"
1140
 
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
  msgid "Donate to this plugin"
1144
  msgstr "Donar a este plugin"
1145
 
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
  msgid "Average Rating"
1148
  msgstr "Calificación media"
1149
 
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
  msgid "based on %s"
1152
  msgstr "basado en %s"
1153
 
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
  msgid "%s rating"
1156
  msgstr "%s calificación"
1157
 
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
  msgid "%s ratings"
1160
  msgstr "%s calificaciones"
1161
 
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
  msgid "%s star"
1164
  msgstr "%s estrella"
1165
 
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
  msgid "%s stars"
1168
  msgstr "%s estrellas"
1169
 
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
  msgid "Click to see reviews that provided a rating of %s"
1172
  msgstr "Haz clic para ver los comentarios con una valoración de %s"
1173
 
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
  msgid "Contributors"
1176
  msgstr "Colaboradores"
1177
 
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
  msgid "Warning"
1181
  msgstr "Atencion"
1182
 
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
  msgid "This plugin has not been tested with your current version of WordPress."
1185
  msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1186
 
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
  msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1190
 
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
  msgid "Paid add-on must be deployed to Freemius."
1193
  msgstr "El complemento de pago se debe implementar en Freemius."
1194
 
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
  msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1198
 
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
  msgid "Newer Version (%s) Installed"
1201
  msgstr "Versión más reciente (%s) instalada"
1202
 
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
  msgid "Newer Free Version (%s) Installed"
1205
  msgstr "Versión gratuita más reciente (%s) instalada"
1206
 
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
  msgid "Latest Version Installed"
1209
  msgstr "Última versión instalada"
1210
 
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Última versión gratuita instalada"
1214
 
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
+
1543
  #: templates/add-ons.php:38
1544
  msgid "View details"
1545
  msgstr "Ver detalles"
1550
 
1551
  #: templates/add-ons.php:58
1552
  msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+ msgstr "No pudimos cargar la lista de complementos. Probablemente sea un problema por nuestra parte, por favor, inténtalo de nuevo en unos minutos."
1554
 
1555
  #: templates/add-ons.php:229
1556
  msgctxt "active add-on"
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"
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
 
1704
  #: templates/connect.php:379
1705
  msgid "Admin Notices"
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"
1919
 
1920
  #: templates/debug.php:370
1921
  msgid "License ID"
1922
+ msgstr "ID de licencia"
1923
 
1924
  #: templates/debug.php434, templates/debug.php533,
1925
  #: templates/account/partials/addon.php:435
2209
  msgid "Apply to become an affiliate"
2210
  msgstr "Aceptar para hacerse afiliado"
2211
 
2212
+ #: templates/forms/affiliation.php:107
2213
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2214
  msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s."
2215
 
2216
+ #: templates/forms/affiliation.php:122
2217
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2218
  msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional."
2219
 
2220
+ #: templates/forms/affiliation.php:125
2221
  msgid "Your affiliation account was temporarily suspended."
2222
  msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente."
2223
 
2224
+ #: templates/forms/affiliation.php:128
2225
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2226
  msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días."
2227
 
2228
+ #: templates/forms/affiliation.php:131
2229
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2230
  msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte."
2231
 
2232
+ #: templates/forms/affiliation.php:144
2233
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2234
  msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)"
2235
 
2236
+ #: templates/forms/affiliation.php:145
2237
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2238
  msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!"
2239
 
2240
+ #: templates/forms/affiliation.php:148
2241
  msgid "Program Summary"
2242
  msgstr "Sumario del programa"
2243
 
2244
+ #: templates/forms/affiliation.php:150
2245
  msgid "%s commission when a customer purchases a new license."
2246
  msgstr "%s comisión cuando un cliente compra una nueva licencia."
2247
 
2248
+ #: templates/forms/affiliation.php:152
2249
  msgid "Get commission for automated subscription renewals."
2250
  msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones."
2251
 
2252
+ #: templates/forms/affiliation.php:155
2253
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2254
  msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales."
2255
 
2256
+ #: templates/forms/affiliation.php:158
2257
  msgid "Unlimited commissions."
2258
  msgstr "Comisiones Ilimitadas"
2259
 
2260
+ #: templates/forms/affiliation.php:160
2261
  msgid "%s minimum payout amount."
2262
  msgstr "%s cantidad mínima a pagar."
2263
 
2264
+ #: templates/forms/affiliation.php:161
2265
  msgid "Payouts are in USD and processed monthly via PayPal."
2266
  msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal."
2267
 
2268
+ #: templates/forms/affiliation.php:162
2269
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2270
  msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días."
2271
 
2272
+ #: templates/forms/affiliation.php:165
2273
  msgid "Affiliate"
2274
  msgstr "Afiliado"
2275
 
2276
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2277
  msgid "Email address"
2278
  msgstr "Dirección de correo electrónico"
2279
 
2280
+ #: templates/forms/affiliation.php:172
2281
  msgid "Full name"
2282
  msgstr "Nombre completo"
2283
 
2284
+ #: templates/forms/affiliation.php:176
2285
  msgid "PayPal account email address"
2286
  msgstr "Dirección de correo electrónico de PayPal"
2287
 
2288
+ #: templates/forms/affiliation.php:180
2289
  msgid "Where are you going to promote the %s?"
2290
  msgstr "¿Dónde vas a promocionar %s?"
2291
 
2292
+ #: templates/forms/affiliation.php:182
2293
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2294
  msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s."
2295
 
2296
+ #: templates/forms/affiliation.php:184
2297
  msgid "Add another domain"
2298
  msgstr "Añadir otro dominio"
2299
 
2300
+ #: templates/forms/affiliation.php:188
2301
  msgid "Extra Domains"
2302
  msgstr "Dominios extra"
2303
 
2304
+ #: templates/forms/affiliation.php:189
2305
  msgid "Extra domains where you will be marketing the product from."
2306
  msgstr "Dominios extra desde donde promocionarás el producto."
2307
 
2308
+ #: templates/forms/affiliation.php:199
2309
  msgid "Promotion methods"
2310
  msgstr "Métodos de promoción"
2311
 
2312
+ #: templates/forms/affiliation.php:202
2313
  msgid "Social media (Facebook, Twitter, etc.)"
2314
  msgstr "Social media (Facebook, Twitter, etc.)"
2315
 
2316
+ #: templates/forms/affiliation.php:206
2317
  msgid "Mobile apps"
2318
  msgstr "Apps móviles "
2319
 
2320
+ #: templates/forms/affiliation.php:210
2321
  msgid "Website, email, and social media statistics (optional)"
2322
  msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)"
2323
 
2324
+ #: templates/forms/affiliation.php:213
2325
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2326
  msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)"
2327
 
2328
+ #: templates/forms/affiliation.php:217
2329
  msgid "How will you promote us?"
2330
  msgstr "¿Como nos promocionarás?"
2331
 
2332
+ #: templates/forms/affiliation.php:220
2333
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2334
  msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)"
2335
 
2336
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2337
  msgid "Cancel"
2338
  msgstr "Cancelar"
2339
 
2340
+ #: templates/forms/affiliation.php:234
2341
  msgid "Become an affiliate"
2342
  msgstr "Hacerse afiliado"
2343
 
2344
  #: templates/forms/data-debug-mode.php:25
2345
  msgid "Please enter the license key to enable the debug mode:"
2346
+ msgstr "Por favor, introduce la clave de licencia para activar el modo de depuración:"
2347
 
2348
  #: templates/forms/data-debug-mode.php:27
2349
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2350
+ msgstr "Para entrar en el modo de depuración, introduce la clave secreta del propietario de la licencia (UserID = %d), que puedes encontrar en la sección \"Mi perfil\" de tu panel de control de usuario:"
2351
 
2352
  #: templates/forms/data-debug-mode.php:32
2353
  msgid "Submit"
2354
+ msgstr "Enviar"
2355
 
2356
  #: templates/forms/data-debug-mode.php:36
2357
  msgid "User key"
2358
+ msgstr "Clave de usuario"
2359
 
2360
  #: templates/forms/license-activation.php:23
2361
  msgid "Please enter the license key that you received in the email right after the purchase:"
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
 
2372
  #: templates/forms/optout.php:30
2373
  msgctxt "verb"
2381
 
2382
  #: templates/forms/optout.php:34
2383
  msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2384
+ msgstr "La conectividad con el motor de licencias se restableció correctamente. Las actualizaciones automáticas de seguridad y características ahora están disponibles a través del Panel de administración de WP."
2385
 
2386
  #: templates/forms/optout.php:36
2387
  msgid "Warning: Opting out will block automatic updates"
2388
+ msgstr "Advertencia: Si se opta por no participar, se bloquearán las actualizaciones automáticas"
2389
 
2390
  #: templates/forms/optout.php:37
2391
  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."
2392
+ msgstr "La conectividad continua con el motor de licencias es esencial para recibir actualizaciones automáticas de seguridad y características del producto de pago. Para recibir estas actualizaciones, datos como su clave de licencia, la versión %1$s y la versión de WordPress, se envían periódicamente al servidor para buscar actualizaciones. Al optar por no participar, entiendes que tu sitio no recibirá actualizaciones automáticas por %2$s desde el Panel de administración de WP. Esto puede poner su sitio en riesgo, y le recomendamos encarecidamente que mantenga esta conexión activa. Si opta por no participar, deberá comprobar si hay actualizaciones de %1$s e instalarlas manualmente."
2393
 
2394
  #: templates/forms/optout.php:39
2395
  msgid "I'd like to keep automatic updates"
2396
+ msgstr "Me gustaría mantener actualizaciones automáticas"
2397
 
2398
  #: templates/forms/optout.php:44
2399
  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 letting us continue with the tracking."
2401
 
2402
  #: templates/forms/optout.php:45
2403
  msgid "On second thought - I want to continue helping"
2404
+ msgstr "Pensándolo bien - quiero seguir ayudando"
2405
 
2406
  #: templates/forms/optout.php:49
2407
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2409
 
2410
  #: templates/forms/optout.php:74
2411
  msgid "Plugins & themes tracking"
2412
+ msgstr "Rastreo en Plugins y Temas"
2413
 
2414
+ #: templates/forms/optout.php:261
2415
  msgid "Saved"
2416
+ msgstr "Guardado"
2417
 
2418
  #: templates/forms/premium-versions-upgrade-handler.php:40
2419
  msgid "There is a new version of %s available."
2487
 
2488
  #: templates/forms/user-change.php:26
2489
  msgid "By changing the user, you agree to transfer the account ownership to:"
2490
+ msgstr "Al cambiar al usuario, usted acepta transferir la propiedad de la cuenta a:"
2491
 
2492
  #: templates/forms/user-change.php:28
2493
  msgid "I Agree - Change User"
2494
+ msgstr "Estoy de acuerdo - Cambiar usuario"
2495
 
2496
  #: templates/forms/user-change.php:30
2497
  msgid "Enter email address"
2498
+ msgstr "Introduce el correo electrónico"
2499
 
2500
  #: templates/forms/user-change.php:81
2501
  msgctxt "close window"
2502
  msgid "Dismiss"
2503
+ msgstr "Descartar"
2504
 
2505
  #: templates/js/style-premium-theme.php:39
2506
  msgid "Premium"
2629
  msgid "switching"
2630
  msgstr "cambiando"
2631
 
2632
+ #: templates/forms/deactivation/form.php:369
2633
  msgid "Submit & %s"
2634
  msgstr "Enviar y %s"
2635
 
2636
+ #: templates/forms/deactivation/form.php:390
2637
  msgid "Kindly tell us the reason so we can improve."
2638
  msgstr "Por favor, dínos la razón para que podamos mejorar."
2639
 
2640
+ #: templates/forms/deactivation/form.php:515
2641
  msgid "Yes - %s"
2642
  msgstr "Si - %s"
2643
 
2644
+ #: templates/forms/deactivation/form.php:522
2645
  msgid "Skip & %s"
2646
  msgstr "Saltar y %s"
2647
 
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) 2019 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-07-27 11:43+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,811 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
37
  msgid "Error"
38
  msgstr "Erreur"
39
 
40
- #: includes/class-freemius.php:2492
41
  msgid "I found a better %s"
42
  msgstr "J'ai trouvé un meilleur %s"
43
 
44
- #: includes/class-freemius.php:2494
45
  msgid "What's the %s's name?"
46
  msgstr "Quel est le nom du %s ?"
47
 
48
- #: includes/class-freemius.php:2500
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:2502
53
  msgid "Deactivation"
54
  msgstr "Désactivation"
55
 
56
- #: includes/class-freemius.php:2503
57
  msgid "Theme Switch"
58
  msgstr "Changement de Thème"
59
 
60
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Autre"
64
 
65
- #: includes/class-freemius.php:2520
66
  msgid "I no longer need the %s"
67
  msgstr "Je n'ai plus besoin du %s"
68
 
69
- #: includes/class-freemius.php:2527
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:2533
74
  msgid "The %s broke my site"
75
  msgstr "Le %s a cassé mon site"
76
 
77
- #: includes/class-freemius.php:2540
78
  msgid "The %s suddenly stopped working"
79
  msgstr "Le %s a soudainement arrêté de fonctionner"
80
 
81
- #: includes/class-freemius.php:2550
82
  msgid "I can't pay for it anymore"
83
  msgstr "Je ne peux plus payer pour ça"
84
 
85
- #: includes/class-freemius.php:2552
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Quel prix seriez-vous prêt à payer ?"
88
 
89
- #: includes/class-freemius.php:2558
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:2579
94
  msgid "The %s didn't work"
95
  msgstr "Le %s n'a pas fonctionné"
96
 
97
- #: includes/class-freemius.php:2589
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:2597
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:2599
106
  msgid "What feature?"
107
  msgstr "Quelle fonctionnalité ?"
108
 
109
- #: includes/class-freemius.php:2603
110
  msgid "The %s is not working"
111
  msgstr "Le %s ne fonctionne pas"
112
 
113
- #: includes/class-freemius.php:2605
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:2609
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:2611
122
  msgid "What you've been looking for?"
123
  msgstr "Que recherchez-vous ?"
124
 
125
- #: includes/class-freemius.php:2615
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:2617
130
  msgid "What did you expect?"
131
  msgstr "À quoi vous attendiez-vous ?"
132
 
133
- #: includes/class-freemius.php3472, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Débuggage Freemius"
136
 
137
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
150
  msgid "Yes - do your thing"
151
  msgstr "Oui - allez-y"
152
 
153
- #: includes/class-freemius.php:4343
154
  msgid "No - just deactivate"
155
  msgstr "Non - désactivation seulement"
156
 
157
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
158
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
159
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
160
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
161
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
162
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
163
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
164
- #: includes/class-freemius.php21690, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Oups"
168
 
169
- #: includes/class-freemius.php:4457
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:4879
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:4880
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.php5053, includes/class-freemius.php5078,
184
- #: includes/class-freemius.php:20578
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:5777
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.php5789, includes/class-freemius.php:7682
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Génial"
196
 
197
- #: includes/class-freemius.php:5804
198
  msgid "You have a %s license."
199
  msgstr "Vous avez une license pour %s."
200
 
201
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
202
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
203
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
204
- #: includes/class-freemius.php:20328
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Youpi"
208
 
209
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
223
  msgid "Purchase License"
224
  msgstr "Acheter une licence"
225
 
226
- #: includes/class-freemius.php7047, 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:7051
231
  msgid "start the trial"
232
  msgstr "commencer la période d'essai"
233
 
234
- #: includes/class-freemius.php7052, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "compléter l'installation"
237
 
238
- #: includes/class-freemius.php:7164
239
  msgid "You are just one step away - %s"
240
  msgstr "Il ne reste qu'une étape - %s"
241
 
242
- #: includes/class-freemius.php:7167
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:7245
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:7249
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Inscrivez-vous pour améliorer \"%s\" !"
254
 
255
- #: includes/class-freemius.php:7681
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.php9908, includes/class-fs-plugin-updater.php1044,
260
- #: includes/class-fs-plugin-updater.php1239,
261
- #: includes/class-fs-plugin-updater.php1246,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Add-On"
265
 
266
- #: includes/class-freemius.php9910, templates/account.php343,
267
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: includes/class-freemius.php9911, templates/account.php344,
272
- #: templates/account.php352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "An unknown error has occurred while trying to set the user's beta mode."
279
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
280
 
281
- #: includes/class-freemius.php:12904
282
  msgid "Invalid new user ID or email address."
283
  msgstr "Invalid new user ID or email address."
284
 
285
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
286
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
287
  msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
288
 
289
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
290
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
291
  msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
292
 
293
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
294
  msgid "Change Ownership"
295
  msgstr "Changement De Propriétaire"
296
 
297
- #: includes/class-freemius.php:13438
298
  msgid "Invalid site details collection."
299
  msgstr "Récupération des détails du site non valide."
300
 
301
- #: includes/class-freemius.php:13558
302
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
303
  msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
304
 
305
- #: includes/class-freemius.php:13560
306
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
307
  msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
308
 
309
- #: includes/class-freemius.php:13834
310
  msgid "Account is pending activation."
311
  msgstr "Compte en cours d'activation."
312
 
313
- #: includes/class-freemius.php13946,
314
  #: templates/forms/premium-versions-upgrade-handler.php:47
315
  msgid "Buy a license now"
316
  msgstr "Acheter une licence maintenant"
317
 
318
- #: includes/class-freemius.php13958,
319
  #: templates/forms/premium-versions-upgrade-handler.php:46
320
  msgid "Renew your license now"
321
  msgstr "Renouvelez votre licence maintenant"
322
 
323
- #: includes/class-freemius.php:13962
324
  msgid "%s to access version %s security & feature updates, and support."
325
  msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
326
 
327
- #: includes/class-freemius.php:16387
328
  msgid "%s activation was successfully completed."
329
  msgstr "L'activation de %s s'est terminée avec succès."
330
 
331
- #: includes/class-freemius.php:16401
332
  msgid "Your account was successfully activated with the %s plan."
333
  msgstr "Votre compte a été activé avec succès avec la formule %s."
334
 
335
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
336
  msgid "Your trial has been successfully started."
337
  msgstr "Votre période d'essai a bien démarré."
338
 
339
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
340
- #: includes/class-freemius.php:17258
341
  msgid "Couldn't activate %s."
342
  msgstr "Impossible d'activer %s."
343
 
344
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
345
- #: includes/class-freemius.php:17259
346
  msgid "Please contact us with the following message:"
347
  msgstr "Merci de nous contacter avec le message suivant :"
348
 
349
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
350
  msgid "An unknown error has occurred."
351
  msgstr "An unknown error has occurred."
352
 
353
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
354
  msgid "Upgrade"
355
  msgstr "Mise à jour"
356
 
357
- #: includes/class-freemius.php:17622
358
  msgid "Start Trial"
359
  msgstr "Essai gratuit"
360
 
361
- #: includes/class-freemius.php:17624
362
  msgid "Pricing"
363
  msgstr "Tarifs"
364
 
365
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
366
  msgid "Affiliation"
367
  msgstr "Affiliation"
368
 
369
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
370
- #: templates/account.php191, templates/debug.php:324
371
  msgid "Account"
372
  msgstr "Compte"
373
 
374
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
375
  #: includes/customizer/class-fs-customizer-support-section.php:60
376
  msgid "Contact Us"
377
  msgstr "Contactez Nous"
378
 
379
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
380
- #: includes/class-freemius.php22603, templates/account.php119,
381
  #: templates/account/partials/addon.php:44
382
  msgid "Add-Ons"
383
  msgstr "Add-Ons"
384
 
385
- #: includes/class-freemius.php:17799
386
  msgctxt "ASCII arrow left icon"
387
  msgid "&#x2190;"
388
  msgstr "&#x2190;"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow right icon"
392
  msgid "&#x27a4;"
393
  msgstr "&#x27a4;"
394
 
395
- #: includes/class-freemius.php17801, templates/pricing.php:103
396
  msgctxt "noun"
397
  msgid "Pricing"
398
  msgstr "Tarifs"
399
 
400
- #: includes/class-freemius.php18014,
401
  #: includes/customizer/class-fs-customizer-support-section.php:67
402
  msgid "Support Forum"
403
  msgstr "Forum de Support"
404
 
405
- #: includes/class-freemius.php:18988
406
  msgid "Your email has been successfully verified - you are AWESOME!"
407
  msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
408
 
409
- #: includes/class-freemius.php:18989
410
  msgctxt "a positive response"
411
  msgid "Right on"
412
  msgstr "Directement"
413
 
414
- #: includes/class-freemius.php:19493
415
  msgid "seems like the key you entered doesn't match our records."
416
  msgstr "seems like the key you entered doesn't match our records."
417
 
418
- #: includes/class-freemius.php:19517
419
  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."
420
  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."
421
 
422
- #: includes/class-freemius.php:19735
423
  msgid "Your %s Add-on plan was successfully upgraded."
424
  msgstr "Votre Add-on %s a bien été mis à jour."
425
 
426
- #: includes/class-freemius.php:19737
427
  msgid "%s Add-on was successfully purchased."
428
  msgstr "L'Add-on %s a bien été acheté."
429
 
430
- #: includes/class-freemius.php:19740
431
  msgid "Download the latest version"
432
  msgstr "Télécharger la dernière version"
433
 
434
- #: includes/class-freemius.php:19826
435
  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"
436
  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"
437
 
438
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
439
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
440
  msgid "Error received from the server:"
441
  msgstr "Une erreur a été reçu depuis le serveur :"
442
 
443
- #: includes/class-freemius.php:19842
444
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
445
  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."
446
 
447
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
448
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
449
  msgctxt ""
450
  msgid "Hmm"
451
  msgstr "Hmm"
452
 
453
- #: includes/class-freemius.php:20069
454
  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."
455
  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é."
456
 
457
- #: includes/class-freemius.php20070, templates/account.php121,
458
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
459
  msgctxt "trial period"
460
  msgid "Trial"
461
  msgstr "Période d'essai"
462
 
463
- #: includes/class-freemius.php:20075
464
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
465
  msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
466
 
467
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
468
  msgid "Please contact us here"
469
  msgstr "Merci de nous contacter ici"
470
 
471
- #: includes/class-freemius.php:20090
472
  msgid "Your plan was successfully activated."
473
  msgstr "Your plan was successfully activated."
474
 
475
- #: includes/class-freemius.php:20091
476
  msgid "Your plan was successfully upgraded."
477
  msgstr "Votre formule a bien été mise à jour."
478
 
479
- #: includes/class-freemius.php:20108
480
  msgid "Your plan was successfully changed to %s."
481
  msgstr "Votre formule a bien été modifié vers %s. "
482
 
483
- #: includes/class-freemius.php:20124
484
  msgid "Your license has expired. You can still continue using the free %s forever."
485
  msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
486
 
487
- #: includes/class-freemius.php:20126
488
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
  msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
490
 
491
- #: includes/class-freemius.php:20134
492
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
493
  msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
494
 
495
- #: includes/class-freemius.php:20147
496
  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."
497
  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."
498
 
499
- #: includes/class-freemius.php:20173
500
  msgid "Your free trial has expired. You can still continue using all our free features."
501
  msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
502
 
503
- #: includes/class-freemius.php:20175
504
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  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."
506
 
507
- #: includes/class-freemius.php:20283
508
  msgid "It looks like the license could not be activated."
509
  msgstr "Il semble que la licence ne puisse être activée."
510
 
511
- #: includes/class-freemius.php:20325
512
  msgid "Your license was successfully activated."
513
  msgstr "Votre licence a bien été activée."
514
 
515
- #: includes/class-freemius.php:20351
516
  msgid "It looks like your site currently doesn't have an active license."
517
  msgstr "Il semble que votre site n'ait pas de licence active."
518
 
519
- #: includes/class-freemius.php:20375
520
  msgid "It looks like the license deactivation failed."
521
  msgstr "Il semble que la désactivation de la licence a échoué."
522
 
523
- #: includes/class-freemius.php:20404
524
  msgid "Your %s license was successfully deactivated."
525
  msgstr "Your %s license was successfully deactivated."
526
 
527
- #: includes/class-freemius.php:20405
528
  msgid "Your license was successfully deactivated, you are back to the %s plan."
529
  msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
530
 
531
- #: includes/class-freemius.php:20408
532
  msgid "O.K"
533
  msgstr "O.K"
534
 
535
- #: includes/class-freemius.php:20461
536
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
537
  msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
538
 
539
- #: includes/class-freemius.php:20470
540
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
541
  msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
542
 
543
- #: includes/class-freemius.php:20512
544
  msgid "You are already running the %s in a trial mode."
545
  msgstr "Vous utilisez déjà le %s en période d'essai. "
546
 
547
- #: includes/class-freemius.php:20523
548
  msgid "You already utilized a trial before."
549
  msgstr "Vous avez déjà utilisé la période d'essai."
550
 
551
- #: includes/class-freemius.php:20537
552
  msgid "Plan %s do not exist, therefore, can't start a trial."
553
  msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
554
 
555
- #: includes/class-freemius.php:20548
556
  msgid "Plan %s does not support a trial period."
557
  msgstr "La formule %s ne propose pas de période d'essai."
558
 
559
- #: includes/class-freemius.php:20559
560
  msgid "None of the %s's plans supports a trial period."
561
  msgstr "Aucune formule du %s ne propose de période d'essai."
562
 
563
- #: includes/class-freemius.php:20609
564
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
565
  msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
566
 
567
- #: includes/class-freemius.php:20645
568
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
569
  msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
570
 
571
- #: includes/class-freemius.php:20664
572
  msgid "Your %s free trial was successfully cancelled."
573
  msgstr "Votre période d'essai %s a bien été annulé."
574
 
575
- #: includes/class-freemius.php:20980
576
  msgid "Version %s was released."
577
  msgstr "La version %s vient d'être publiée."
578
 
579
- #: includes/class-freemius.php:20980
580
  msgid "Please download %s."
581
  msgstr "Merci de télécharger %s."
582
 
583
- #: includes/class-freemius.php:20987
584
  msgid "the latest %s version here"
585
  msgstr "la dernière version de %s ici"
586
 
587
- #: includes/class-freemius.php:20992
588
  msgid "New"
589
  msgstr "Nouveau"
590
 
591
- #: includes/class-freemius.php:20997
592
  msgid "Seems like you got the latest release."
593
  msgstr "Il semble que vous ayez la dernière version."
594
 
595
- #: includes/class-freemius.php:20998
596
  msgid "You are all good!"
597
  msgstr "Vous êtes tout bon !"
598
 
599
- #: includes/class-freemius.php:21301
600
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
601
  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."
602
 
603
- #: includes/class-freemius.php:21441
604
  msgid "Site successfully opted in."
605
  msgstr "Site ajouté avec succès."
606
 
607
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
608
  msgid "Awesome"
609
  msgstr "Formidable"
610
 
611
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
612
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
613
  msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
614
 
615
- #: includes/class-freemius.php:21459
616
  msgid "Thank you!"
617
  msgstr "Merci !"
618
 
619
- #: includes/class-freemius.php:21466
620
  msgid "We will no longer be sending any usage data of %s on %s to %s."
621
  msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
622
 
623
- #: includes/class-freemius.php:21612
624
  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."
625
  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."
626
 
627
- #: includes/class-freemius.php:21618
628
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
629
  msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
630
 
631
- #: includes/class-freemius.php:21623
632
  msgid "%s is the new owner of the account."
633
  msgstr "%s est le nouveau propriétaire du compte."
634
 
635
- #: includes/class-freemius.php:21625
636
  msgctxt "as congratulations"
637
  msgid "Congrats"
638
  msgstr "Félicitations"
639
 
640
- #: includes/class-freemius.php:21661
641
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
642
  msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
643
 
644
- #: includes/class-freemius.php:21673
645
  msgid "Please provide your full name."
646
  msgstr "Merci d'indiquer vos prénom et nom."
647
 
648
- #: includes/class-freemius.php:21678
649
  msgid "Your name was successfully updated."
650
  msgstr "Votre nom a été mis à jour."
651
 
652
- #: includes/class-freemius.php:21739
653
  msgid "You have successfully updated your %s."
654
  msgstr "Votre %s a bien été mis à jour."
655
 
656
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
657
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
658
  msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
659
 
660
- #: includes/class-freemius.php:21880
661
  msgctxt "advance notice of something that will need attention."
662
  msgid "Heads up"
663
  msgstr "Avertissement"
664
 
665
- #: includes/class-freemius.php:22339
666
  msgctxt "exclamation"
667
  msgid "Hey"
668
  msgstr "Hey"
669
 
670
- #: includes/class-freemius.php:22339
671
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
672
  msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
673
 
674
- #: includes/class-freemius.php:22347
675
  msgid "No commitment for %s days - cancel anytime!"
676
  msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
677
 
678
- #: includes/class-freemius.php:22348
679
  msgid "No credit card required"
680
  msgstr "Pas besoin de carte bancaire"
681
 
682
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
683
  msgctxt "call to action"
684
  msgid "Start free trial"
685
  msgstr "Commencer l'essai gratuit"
686
 
687
- #: includes/class-freemius.php:22432
688
  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!"
689
  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 !"
690
 
691
- #: includes/class-freemius.php:22441
692
  msgid "Learn more"
693
  msgstr "En savoir plus"
694
 
695
- #: includes/class-freemius.php22627, templates/account.php507,
696
- #: templates/account.php657, templates/connect.php179,
697
- #: templates/connect.php455, templates/forms/license-activation.php27,
698
  #: templates/account/partials/addon.php:321
699
  msgid "Activate License"
700
  msgstr "Activer la licence"
701
 
702
- #: includes/class-freemius.php22628, templates/account.php601,
703
- #: templates/account.php656, templates/account/partials/addon.php322,
704
  #: templates/account/partials/site.php:271
705
  msgid "Change License"
706
  msgstr "Changer la licence"
707
 
708
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
709
  msgid "Opt Out"
710
  msgstr "Désinscription"
711
 
712
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
713
  #: templates/account/partials/site.php49,
714
  #: templates/account/partials/site.php:169
715
  msgid "Opt In"
716
  msgstr "Inscription"
717
 
718
- #: includes/class-freemius.php:22973
719
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
720
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
721
 
722
- #: includes/class-freemius.php:22981
723
  msgid "Activate %s features"
724
  msgstr "Activer les fonctionnalités %s"
725
 
726
- #: includes/class-freemius.php:22994
727
  msgid "Please follow these steps to complete the upgrade"
728
  msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
729
 
730
- #: includes/class-freemius.php:22998
731
  msgid "Download the latest %s version"
732
  msgstr "Télécharger la dernière version %s"
733
 
734
- #: includes/class-freemius.php:23002
735
  msgid "Upload and activate the downloaded version"
736
  msgstr "Téléverser et activer la version téléchargée"
737
 
738
- #: includes/class-freemius.php:23004
739
  msgid "How to upload and activate?"
740
  msgstr "Comment téléverser et activer ?"
741
 
742
- #: includes/class-freemius.php:23138
743
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
744
  msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
745
 
746
- #: includes/class-freemius.php:23299
747
  msgid "Auto installation only works for opted-in users."
748
  msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
749
 
750
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
751
- #: includes/class-fs-plugin-updater.php1218,
752
- #: includes/class-fs-plugin-updater.php:1232
753
  msgid "Invalid module ID."
754
  msgstr "ID du module non valide."
755
 
756
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
757
  msgid "Premium version already active."
758
  msgstr "Version premium déjà active."
759
 
760
- #: includes/class-freemius.php:23325
761
  msgid "You do not have a valid license to access the premium version."
762
  msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
763
 
764
- #: includes/class-freemius.php:23332
765
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
766
  msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
767
 
768
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
769
  msgid "Premium add-on version already installed."
770
  msgstr "La version premium de l'add-on est déjà installée."
771
 
772
- #: includes/class-freemius.php:23700
773
  msgid "View paid features"
774
  msgstr "Voir les fonctionnalités payantes"
775
 
776
- #: includes/class-freemius.php:24022
777
  msgid "Thank you so much for using %s and its add-ons!"
778
  msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
779
 
780
- #: includes/class-freemius.php:24023
781
  msgid "Thank you so much for using %s!"
782
  msgstr "Merci beaucoup d'utiliser %s !"
783
 
784
- #: includes/class-freemius.php:24029
785
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
786
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
787
 
788
- #: includes/class-freemius.php:24033
789
  msgid "Thank you so much for using our products!"
790
  msgstr "Merci beaucoup d'utiliser nos produits !"
791
 
792
- #: includes/class-freemius.php:24034
793
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
794
  msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
795
 
796
- #: includes/class-freemius.php:24053
797
  msgid "%s and its add-ons"
798
  msgstr "%s et ses add-ons"
799
 
800
- #: includes/class-freemius.php:24062
801
  msgid "Products"
802
  msgstr "Produits"
803
 
804
- #: includes/class-freemius.php24069, templates/connect.php:280
805
  msgid "Yes"
806
  msgstr "Oui"
807
 
808
- #: includes/class-freemius.php24070, templates/connect.php:281
809
  msgid "send me security & feature updates, educational content and offers."
810
  msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
811
 
812
- #: includes/class-freemius.php24071, templates/connect.php:286
813
  msgid "No"
814
  msgstr "Non"
815
 
816
- #: includes/class-freemius.php24073, templates/connect.php:288
817
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
818
  msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
819
 
820
- #: includes/class-freemius.php:24083
821
  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 :-)"
822
  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 :-)"
823
 
824
- #: includes/class-freemius.php24085, templates/connect.php:295
825
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
826
  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 :"
827
 
828
- #: includes/class-freemius.php:24367
829
  msgid "License key is empty."
830
  msgstr "La clé de licence est vide."
831
 
@@ -858,332 +882,332 @@ msgstr "Nouvelle version"
858
  msgid "Important Upgrade Notice:"
859
  msgstr "Information importante de mise à jour :"
860
 
861
- #: includes/class-fs-plugin-updater.php:1283
862
  msgid "Installing plugin: %s"
863
  msgstr "Installation du plugin : %s"
864
 
865
- #: includes/class-fs-plugin-updater.php:1324
866
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
867
  msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
868
 
869
- #: includes/class-fs-plugin-updater.php:1506
870
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
871
  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."
872
 
873
- #: includes/fs-plugin-info-dialog.php:535
874
  msgid "Purchase More"
875
  msgstr "Purchase More"
876
 
877
- #: includes/fs-plugin-info-dialog.php536,
878
  #: templates/account/partials/addon.php:385
879
  msgctxt "verb"
880
  msgid "Purchase"
881
  msgstr "Acheter"
882
 
883
- #: includes/fs-plugin-info-dialog.php:540
884
  msgid "Start my free %s"
885
  msgstr "Commencer ma %s gratuite"
886
 
887
- #: includes/fs-plugin-info-dialog.php:738
888
  msgid "Install Free Version Update Now"
889
  msgstr "Installer la dernière mise à jour gratuite maintenant"
890
 
891
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
892
  msgid "Install Update Now"
893
  msgstr "Installer la mise à jour maintenant"
894
 
895
- #: includes/fs-plugin-info-dialog.php:748
896
  msgid "Install Free Version Now"
897
  msgstr "Installer la version gratuite maintenant"
898
 
899
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
900
  #: templates/auto-installation.php111,
901
  #: templates/account/partials/addon.php365,
902
  #: templates/account/partials/addon.php:418
903
  msgid "Install Now"
904
  msgstr "Installer maintenant"
905
 
906
- #: includes/fs-plugin-info-dialog.php:765
907
  msgctxt "as download latest version"
908
  msgid "Download Latest Free Version"
909
  msgstr "Télécharger la dernière version gratuite"
910
 
911
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
912
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
913
  msgctxt "as download latest version"
914
  msgid "Download Latest"
915
  msgstr "Télécharger la dernière version"
916
 
917
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
918
  #: templates/account/partials/addon.php356,
919
  #: templates/account/partials/addon.php:412
920
  msgid "Activate this add-on"
921
  msgstr "Activer cet add-on"
922
 
923
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
924
  msgid "Activate Free Version"
925
  msgstr "Activez la version gratuite"
926
 
927
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
928
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
929
  msgid "Activate"
930
  msgstr "Activer"
931
 
932
- #: includes/fs-plugin-info-dialog.php:994
933
  msgctxt "Plugin installer section title"
934
  msgid "Description"
935
  msgstr "Description"
936
 
937
- #: includes/fs-plugin-info-dialog.php:995
938
  msgctxt "Plugin installer section title"
939
  msgid "Installation"
940
  msgstr "Installation"
941
 
942
- #: includes/fs-plugin-info-dialog.php:996
943
  msgctxt "Plugin installer section title"
944
  msgid "FAQ"
945
  msgstr "FAQ"
946
 
947
- #: includes/fs-plugin-info-dialog.php997,
948
  #: templates/plugin-info/description.php:55
949
  msgid "Screenshots"
950
  msgstr "Captures d'écran"
951
 
952
- #: includes/fs-plugin-info-dialog.php:998
953
  msgctxt "Plugin installer section title"
954
  msgid "Changelog"
955
  msgstr "Changelog"
956
 
957
- #: includes/fs-plugin-info-dialog.php:999
958
  msgctxt "Plugin installer section title"
959
  msgid "Reviews"
960
  msgstr "Commentaires"
961
 
962
- #: includes/fs-plugin-info-dialog.php:1000
963
  msgctxt "Plugin installer section title"
964
  msgid "Other Notes"
965
  msgstr "Autres Informations"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1015
968
  msgctxt "Plugin installer section title"
969
  msgid "Features & Pricing"
970
  msgstr "Fonctionnalités & Tarifs"
971
 
972
- #: includes/fs-plugin-info-dialog.php:1025
973
  msgid "Plugin Install"
974
  msgstr "Installation du Plugin"
975
 
976
- #: includes/fs-plugin-info-dialog.php:1097
977
  msgctxt "e.g. Professional Plan"
978
  msgid "%s Plan"
979
  msgstr "Formule %s"
980
 
981
- #: includes/fs-plugin-info-dialog.php:1123
982
  msgctxt "e.g. the best product"
983
  msgid "Best"
984
  msgstr "Best"
985
 
986
- #: includes/fs-plugin-info-dialog.php1129,
987
- #: includes/fs-plugin-info-dialog.php:1149
988
  msgctxt "as every month"
989
  msgid "Monthly"
990
  msgstr "Mensuel"
991
 
992
- #: includes/fs-plugin-info-dialog.php:1132
993
  msgctxt "as once a year"
994
  msgid "Annual"
995
  msgstr "Annuel"
996
 
997
- #: includes/fs-plugin-info-dialog.php:1135
998
  msgid "Lifetime"
999
  msgstr "À vie"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php1149,
1002
- #: includes/fs-plugin-info-dialog.php1151,
1003
- #: includes/fs-plugin-info-dialog.php:1153
1004
  msgctxt "e.g. billed monthly"
1005
  msgid "Billed %s"
1006
  msgstr "%s Facturé"
1007
 
1008
- #: includes/fs-plugin-info-dialog.php:1151
1009
  msgctxt "as once a year"
1010
  msgid "Annually"
1011
  msgstr "Annuel"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1153
1014
  msgctxt "as once a year"
1015
  msgid "Once"
1016
  msgstr "Une fois"
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1159
1019
  msgid "Single Site License"
1020
  msgstr "Licence 1 site"
1021
 
1022
- #: includes/fs-plugin-info-dialog.php:1161
1023
  msgid "Unlimited Licenses"
1024
  msgstr "Licences sites illimités"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1163
1027
  msgid "Up to %s Sites"
1028
  msgstr "Jusqu'à %s Sites"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php1173,
1031
  #: templates/plugin-info/features.php:82
1032
  msgctxt "as monthly period"
1033
  msgid "mo"
1034
  msgstr "mois"
1035
 
1036
- #: includes/fs-plugin-info-dialog.php1180,
1037
  #: templates/plugin-info/features.php:80
1038
  msgctxt "as annual period"
1039
  msgid "year"
1040
  msgstr "année"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1234
1043
  msgctxt "noun"
1044
  msgid "Price"
1045
  msgstr "Tarif"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:1282
1048
  msgid "Save %s"
1049
  msgstr "Économisez %s"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:1292
1052
  msgid "No commitment for %s - cancel anytime"
1053
  msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:1295
1056
  msgid "After your free %s, pay as little as %s"
1057
  msgstr "Après vos %s gratuits, payez seulement %s"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:1306
1060
  msgid "Details"
1061
  msgstr "Détails"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1064
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1065
  #: templates/account/partials/addon.php:36
1066
  msgctxt "product version"
1067
  msgid "Version"
1068
  msgstr "Version"
1069
 
1070
- #: includes/fs-plugin-info-dialog.php:1317
1071
  msgctxt "as the plugin author"
1072
  msgid "Author"
1073
  msgstr "Auteur"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1324
1076
  msgid "Last Updated"
1077
  msgstr "Dernière mise à jour"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1080
  msgctxt "x-ago"
1081
  msgid "%s ago"
1082
  msgstr "Il y a %s"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1338
1085
  msgid "Requires WordPress Version"
1086
  msgstr "Version de WordPress requise"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1339
1089
  msgid "%s or higher"
1090
  msgstr "%s ou plus"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1346
1093
  msgid "Compatible up to"
1094
  msgstr "Compatible jusqu'à"
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1354
1097
  msgid "Downloaded"
1098
  msgstr "Téléchargé"
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1358
1101
  msgid "%s time"
1102
  msgstr "%s fois"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php:1360
1105
  msgid "%s times"
1106
  msgstr "%s fois"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1370
1109
  msgid "WordPress.org Plugin Page"
1110
  msgstr "Page WordPress.org du plugin"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1378
1113
  msgid "Plugin Homepage"
1114
  msgstr "Site Web du plugin"
1115
 
1116
- #: includes/fs-plugin-info-dialog.php1386,
1117
- #: includes/fs-plugin-info-dialog.php:1468
1118
  msgid "Donate to this plugin"
1119
  msgstr "Faire une donation pour ce plugin"
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1393
1122
  msgid "Average Rating"
1123
  msgstr "Note moyenne"
1124
 
1125
- #: includes/fs-plugin-info-dialog.php:1400
1126
  msgid "based on %s"
1127
  msgstr "Basé sur %s"
1128
 
1129
- #: includes/fs-plugin-info-dialog.php:1404
1130
  msgid "%s rating"
1131
  msgstr "%s notation"
1132
 
1133
- #: includes/fs-plugin-info-dialog.php:1406
1134
  msgid "%s ratings"
1135
  msgstr "%snotations "
1136
 
1137
- #: includes/fs-plugin-info-dialog.php:1421
1138
  msgid "%s star"
1139
  msgstr "%s étoile"
1140
 
1141
- #: includes/fs-plugin-info-dialog.php:1423
1142
  msgid "%s stars"
1143
  msgstr "%s étoiles"
1144
 
1145
- #: includes/fs-plugin-info-dialog.php:1434
1146
  msgid "Click to see reviews that provided a rating of %s"
1147
  msgstr "Cliquez pour voir les avis avec une notation de %s"
1148
 
1149
- #: includes/fs-plugin-info-dialog.php:1447
1150
  msgid "Contributors"
1151
  msgstr "Contributeurs"
1152
 
1153
- #: includes/fs-plugin-info-dialog.php1476,
1154
- #: includes/fs-plugin-info-dialog.php:1478
1155
  msgid "Warning"
1156
  msgstr "Attention"
1157
 
1158
- #: includes/fs-plugin-info-dialog.php:1476
1159
  msgid "This plugin has not been tested with your current version of WordPress."
1160
  msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1161
 
1162
- #: includes/fs-plugin-info-dialog.php:1478
1163
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1164
  msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1165
 
1166
- #: includes/fs-plugin-info-dialog.php:1497
1167
  msgid "Paid add-on must be deployed to Freemius."
1168
  msgstr "Les add-ons payant doivent être déposés sur Freemius"
1169
 
1170
- #: includes/fs-plugin-info-dialog.php:1498
1171
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1172
  msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1173
 
1174
- #: includes/fs-plugin-info-dialog.php:1519
1175
  msgid "Newer Version (%s) Installed"
1176
  msgstr "Nouvelle Version (%s) Installée"
1177
 
1178
- #: includes/fs-plugin-info-dialog.php:1520
1179
  msgid "Newer Free Version (%s) Installed"
1180
  msgstr "La nouvelle version gratuite ( %s ) a été installé"
1181
 
1182
- #: includes/fs-plugin-info-dialog.php:1527
1183
  msgid "Latest Version Installed"
1184
  msgstr "Dernière Version Installée"
1185
 
1186
- #: includes/fs-plugin-info-dialog.php:1528
1187
  msgid "Latest Free Version Installed"
1188
  msgstr "La dernière version gratuite a été installé"
1189
 
@@ -1290,223 +1314,231 @@ msgstr "Formule"
1290
  msgid "Bundle Plan"
1291
  msgstr "Bundle Plan"
1292
 
1293
- #: templates/account.php:199
1294
  msgid "Free Trial"
1295
  msgstr "Essai gratuit"
1296
 
1297
- #: templates/account.php:210
1298
  msgid "Account Details"
1299
  msgstr "Détails du compte"
1300
 
1301
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1302
  msgid "Start Debug"
1303
  msgstr "Start Debug"
1304
 
1305
- #: templates/account.php:219
1306
  msgid "Stop Debug"
1307
  msgstr "Stop Debug"
1308
 
1309
- #: templates/account.php:226
1310
  msgid "Billing & Invoices"
1311
  msgstr "Billing & Invoices"
1312
 
1313
- #: templates/account.php:237
1314
  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?"
1315
  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 ? "
1316
 
1317
- #: templates/account.php:239
1318
  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?"
1319
  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 ?"
1320
 
1321
- #: templates/account.php:242
1322
  msgid "Delete Account"
1323
  msgstr "Supprimer le compte"
1324
 
1325
- #: templates/account.php254, templates/account/partials/addon.php231,
1326
  #: templates/account/partials/deactivate-license-button.php:35
1327
  msgid "Deactivate License"
1328
  msgstr "Désactiver la licence"
1329
 
1330
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1331
  msgid "Are you sure you want to proceed?"
1332
  msgstr "Êtes-vous de vouloir continuer ?"
1333
 
1334
- #: templates/account.php277, templates/account/partials/addon.php:255
1335
  msgid "Cancel Subscription"
1336
  msgstr "Annuler l'abonnement"
1337
 
1338
- #: templates/account.php306, templates/account/partials/addon.php:340
1339
  msgctxt "as synchronize"
1340
  msgid "Sync"
1341
  msgstr "Synchroniser"
1342
 
1343
- #: templates/account.php321, templates/debug.php:505
1344
  msgid "Name"
1345
  msgstr "Nom"
1346
 
1347
- #: templates/account.php327, templates/debug.php:506
1348
  msgid "Email"
1349
  msgstr "Email"
1350
 
1351
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1352
  msgid "User ID"
1353
  msgstr "User ID"
1354
 
1355
- #: templates/account.php352, templates/account.php670,
1356
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1357
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1358
  #: templates/debug.php632, templates/account/payments.php35,
1359
  #: templates/debug/logger.php:21
1360
  msgid "ID"
1361
  msgstr "ID"
1362
 
1363
- #: templates/account.php:359
1364
  msgid "Site ID"
1365
  msgstr "Site ID"
1366
 
1367
- #: templates/account.php:362
1368
  msgid "No ID"
1369
  msgstr "ID manquant"
1370
 
1371
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1372
  #: templates/debug.php456, templates/debug.php508,
1373
  #: templates/account/partials/site.php:227
1374
  msgid "Public Key"
1375
  msgstr "Clef publique"
1376
 
1377
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1378
  #: templates/debug.php509, templates/account/partials/site.php:239
1379
  msgid "Secret Key"
1380
  msgstr "Clef secrête"
1381
 
1382
- #: templates/account.php:376
1383
  msgctxt "as secret encryption key missing"
1384
  msgid "No Secret"
1385
  msgstr "Clef secrète manquante"
1386
 
1387
- #: templates/account.php403, templates/account/partials/site.php120,
1388
  #: templates/account/partials/site.php:122
1389
  msgid "Trial"
1390
  msgstr "Période d'essai"
1391
 
1392
- #: templates/account.php430, templates/debug.php561,
1393
  #: templates/account/partials/site.php:260
1394
  msgid "License Key"
1395
  msgstr "Clef de licence"
1396
 
1397
- #: templates/account.php:461
1398
  msgid "Join the Beta program"
1399
  msgstr "Join the Beta program"
1400
 
1401
- #: templates/account.php:467
1402
  msgid "not verified"
1403
  msgstr "Non vérifié"
1404
 
1405
- #: templates/account.php476, templates/account/partials/addon.php:190
1406
  msgid "Expired"
1407
  msgstr "Expiré"
1408
 
1409
- #: templates/account.php:536
1410
  msgid "Premium version"
1411
  msgstr "Version premium"
1412
 
1413
- #: templates/account.php:538
1414
  msgid "Free version"
1415
  msgstr "Version gratuite"
1416
 
1417
- #: templates/account.php:550
1418
  msgid "Verify Email"
1419
  msgstr "Vérifier l'email"
1420
 
1421
- #: templates/account.php:564
1422
  msgid "Download %s Version"
1423
  msgstr "Télécharger la version %s"
1424
 
1425
- #: templates/account.php:580
1426
  msgid "Download Paid Version"
1427
  msgstr "Download Paid Version"
1428
 
1429
- #: templates/account.php598, templates/account.php853,
1430
  #: templates/account/partials/site.php248,
1431
  #: templates/account/partials/site.php:270
1432
  msgctxt "verb"
1433
  msgid "Show"
1434
  msgstr "Afficher"
1435
 
1436
- #: templates/account.php:613
1437
  msgid "What is your %s?"
1438
  msgstr "Quel est votre %s ?"
1439
 
1440
- #: templates/account.php621, templates/account/billing.php:21
1441
  msgctxt "verb"
1442
  msgid "Edit"
1443
  msgstr "Éditer"
1444
 
1445
- #: templates/account.php625, templates/forms/user-change.php:27
1446
  msgid "Change User"
1447
  msgstr "Change User"
1448
 
1449
- #: templates/account.php:649
1450
  msgid "Sites"
1451
  msgstr "Sites"
1452
 
1453
- #: templates/account.php:662
1454
  msgid "Search by address"
1455
  msgstr "Recherche par adresse"
1456
 
1457
- #: templates/account.php671, templates/debug.php:366
1458
  msgid "Address"
1459
  msgstr "Adresse"
1460
 
1461
- #: templates/account.php:672
1462
  msgid "License"
1463
  msgstr "Licence"
1464
 
1465
- #: templates/account.php:673
1466
  msgid "Plan"
1467
  msgstr "Formule"
1468
 
1469
- #: templates/account.php:718
1470
  msgctxt "as software license"
1471
  msgid "License"
1472
  msgstr "Licence"
1473
 
1474
- #: templates/account.php:847
1475
  msgctxt "verb"
1476
  msgid "Hide"
1477
  msgstr "Cacher"
1478
 
1479
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1480
  msgid "Processing"
1481
  msgstr "Traitement en cours"
1482
 
1483
- #: templates/account.php:872
1484
  msgid "Get updates for bleeding edge Beta versions of %s."
1485
  msgstr "Get updates for bleeding edge Beta versions of %s."
1486
 
1487
- #: templates/account.php:930
1488
  msgid "Cancelling %s"
1489
  msgstr "Annulation de %s"
1490
 
1491
- #: templates/account.php930, templates/account.php947,
1492
  #: templates/forms/subscription-cancellation.php27,
1493
  #: templates/forms/deactivation/form.php:133
1494
  msgid "trial"
1495
  msgstr "essai"
1496
 
1497
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1498
  msgid "Cancelling %s..."
1499
  msgstr "Annulation de %s..."
1500
 
1501
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1502
  #: templates/forms/deactivation/form.php:134
1503
  msgid "subscription"
1504
  msgstr "abonnement"
1505
 
1506
- #: templates/account.php:962
1507
  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?"
1508
  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 ?"
1509
 
 
 
 
 
 
 
 
 
1510
  #: templates/add-ons.php:38
1511
  msgid "View details"
1512
  msgstr "Voir les détails"
@@ -1638,7 +1670,7 @@ msgstr "Clef de licence"
1638
  msgid "Can't find your license key?"
1639
  msgstr "Vous ne trouvez pas votre clef de licence ?"
1640
 
1641
- #: templates/connect.php323, templates/connect.php694,
1642
  #: templates/forms/deactivation/retry-skip.php:20
1643
  msgctxt "verb"
1644
  msgid "Skip"
@@ -1696,40 +1728,40 @@ msgstr "Plugins & Themes"
1696
  msgid "Title, slug, version, and is active"
1697
  msgstr "Title, slug, version, and is active"
1698
 
1699
- #: templates/connect.php420, templates/forms/license-activation.php:41
1700
  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."
1701
  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."
1702
 
1703
- #: templates/connect.php:425
1704
  msgid "What permissions are being granted?"
1705
  msgstr "Quelles autorisations sont accordées ?"
1706
 
1707
- #: templates/connect.php:451
1708
  msgid "Don't have a license key?"
1709
  msgstr "Vous n'avez pas de clef de licence ?"
1710
 
1711
- #: templates/connect.php:454
1712
  msgid "Have a license key?"
1713
  msgstr "Vous avez une clef de licence ?"
1714
 
1715
- #: templates/connect.php:462
1716
  msgid "Privacy Policy"
1717
  msgstr "Politique de confidentialité"
1718
 
1719
- #: templates/connect.php:464
1720
  msgid "License Agreement"
1721
  msgstr "Contrat de licence"
1722
 
1723
- #: templates/connect.php:464
1724
  msgid "Terms of Service"
1725
  msgstr "Conditions générales de service"
1726
 
1727
- #: templates/connect.php:853
1728
  msgctxt "as in the process of sending an email"
1729
  msgid "Sending email"
1730
  msgstr "Email en cours d'envoi"
1731
 
1732
- #: templates/connect.php:854
1733
  msgctxt "as activating plugin"
1734
  msgid "Activating"
1735
  msgstr "Activation en cours"
@@ -2176,135 +2208,135 @@ msgstr "Sans expiration"
2176
  msgid "Apply to become an affiliate"
2177
  msgstr "Postuler pour devenir un affilié"
2178
 
2179
- #: templates/forms/affiliation.php:104
2180
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2181
  msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
2182
 
2183
- #: templates/forms/affiliation.php:119
2184
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2185
  msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations."
2186
 
2187
- #: templates/forms/affiliation.php:122
2188
  msgid "Your affiliation account was temporarily suspended."
2189
  msgstr "Votre compte affilié a été suspendu temporairement."
2190
 
2191
- #: templates/forms/affiliation.php:125
2192
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2193
  msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours."
2194
 
2195
- #: templates/forms/affiliation.php:128
2196
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2197
  msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support."
2198
 
2199
- #: templates/forms/affiliation.php:141
2200
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2201
  msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
2202
 
2203
- #: templates/forms/affiliation.php:142
2204
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2205
  msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
2206
 
2207
- #: templates/forms/affiliation.php:145
2208
  msgid "Program Summary"
2209
  msgstr "Sommaire du programme"
2210
 
2211
- #: templates/forms/affiliation.php:147
2212
  msgid "%s commission when a customer purchases a new license."
2213
  msgstr "Commission de %s quand un client achète une nouvelle licence."
2214
 
2215
- #: templates/forms/affiliation.php:149
2216
  msgid "Get commission for automated subscription renewals."
2217
  msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
2218
 
2219
- #: templates/forms/affiliation.php:152
2220
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2221
  msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
2222
 
2223
- #: templates/forms/affiliation.php:155
2224
  msgid "Unlimited commissions."
2225
  msgstr "Commissions illimitées."
2226
 
2227
- #: templates/forms/affiliation.php:157
2228
  msgid "%s minimum payout amount."
2229
  msgstr "Montant de paiement minimum %s."
2230
 
2231
- #: templates/forms/affiliation.php:158
2232
  msgid "Payouts are in USD and processed monthly via PayPal."
2233
  msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
2234
 
2235
- #: templates/forms/affiliation.php:159
2236
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2237
  msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
2238
 
2239
- #: templates/forms/affiliation.php:162
2240
  msgid "Affiliate"
2241
  msgstr "Affiliation"
2242
 
2243
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2244
  msgid "Email address"
2245
  msgstr "Adresse email"
2246
 
2247
- #: templates/forms/affiliation.php:169
2248
  msgid "Full name"
2249
  msgstr "Nom complet"
2250
 
2251
- #: templates/forms/affiliation.php:173
2252
  msgid "PayPal account email address"
2253
  msgstr "Adresse email du compte PayPal"
2254
 
2255
- #: templates/forms/affiliation.php:177
2256
  msgid "Where are you going to promote the %s?"
2257
  msgstr "Où allez-vous faire la promotion du %s ? "
2258
 
2259
- #: templates/forms/affiliation.php:179
2260
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2261
  msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
2262
 
2263
- #: templates/forms/affiliation.php:181
2264
  msgid "Add another domain"
2265
  msgstr "Ajouter une autre adresse"
2266
 
2267
- #: templates/forms/affiliation.php:185
2268
  msgid "Extra Domains"
2269
  msgstr "Adresses supplémentaires"
2270
 
2271
- #: templates/forms/affiliation.php:186
2272
  msgid "Extra domains where you will be marketing the product from."
2273
  msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
2274
 
2275
- #: templates/forms/affiliation.php:196
2276
  msgid "Promotion methods"
2277
  msgstr "Méthodes de promotion"
2278
 
2279
- #: templates/forms/affiliation.php:199
2280
  msgid "Social media (Facebook, Twitter, etc.)"
2281
  msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
2282
 
2283
- #: templates/forms/affiliation.php:203
2284
  msgid "Mobile apps"
2285
  msgstr "Applications mobiles"
2286
 
2287
- #: templates/forms/affiliation.php:207
2288
  msgid "Website, email, and social media statistics (optional)"
2289
  msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
2290
 
2291
- #: templates/forms/affiliation.php:210
2292
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2293
  msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)"
2294
 
2295
- #: templates/forms/affiliation.php:214
2296
  msgid "How will you promote us?"
2297
  msgstr "Comment allez-vous faire de la promotion ?"
2298
 
2299
- #: templates/forms/affiliation.php:217
2300
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2301
  msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
2302
 
2303
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2304
  msgid "Cancel"
2305
  msgstr "Annuler"
2306
 
2307
- #: templates/forms/affiliation.php:225
2308
  msgid "Become an affiliate"
2309
  msgstr "Devenir un affilié"
2310
 
@@ -2378,7 +2410,7 @@ msgstr "En cliquant \"Désincription\", nous n'enverrons plus d'informations de
2378
  msgid "Plugins & themes tracking"
2379
  msgstr "Plugins & themes tracking"
2380
 
2381
- #: templates/forms/optout.php:256
2382
  msgid "Saved"
2383
  msgstr "Saved"
2384
 
@@ -2467,7 +2499,7 @@ msgstr "Enter email address"
2467
  #: templates/forms/user-change.php:81
2468
  msgctxt "close window"
2469
  msgid "Dismiss"
2470
- msgstr "Dismiss"
2471
 
2472
  #: templates/js/style-premium-theme.php:39
2473
  msgid "Premium"
@@ -2596,19 +2628,19 @@ msgstr "Désactivation"
2596
  msgid "switching"
2597
  msgstr "Changement"
2598
 
2599
- #: templates/forms/deactivation/form.php:365
2600
  msgid "Submit & %s"
2601
  msgstr "Envoyer & %s"
2602
 
2603
- #: templates/forms/deactivation/form.php:386
2604
  msgid "Kindly tell us the reason so we can improve."
2605
  msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2606
 
2607
- #: templates/forms/deactivation/form.php:511
2608
  msgid "Yes - %s"
2609
  msgstr "Oui - %s"
2610
 
2611
- #: templates/forms/deactivation/form.php:518
2612
  msgid "Skip & %s"
2613
  msgstr "Passer & %s"
2614
 
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
  "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
  "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
  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
 
897
+ #: includes/fs-plugin-info-dialog.php:541
898
  msgid "Purchase More"
899
  msgstr "Purchase More"
900
 
901
+ #: includes/fs-plugin-info-dialog.php542,
902
  #: templates/account/partials/addon.php:385
903
  msgctxt "verb"
904
  msgid "Purchase"
905
  msgstr "Acheter"
906
 
907
+ #: includes/fs-plugin-info-dialog.php:546
908
  msgid "Start my free %s"
909
  msgstr "Commencer ma %s gratuite"
910
 
911
+ #: includes/fs-plugin-info-dialog.php:744
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
 
919
+ #: includes/fs-plugin-info-dialog.php:754
920
  msgid "Install Free Version Now"
921
  msgstr "Installer la version gratuite maintenant"
922
 
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
  #: templates/auto-installation.php111,
925
  #: templates/account/partials/addon.php365,
926
  #: templates/account/partials/addon.php:418
927
  msgid "Install Now"
928
  msgstr "Installer maintenant"
929
 
930
+ #: includes/fs-plugin-info-dialog.php:771
931
  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"
939
  msgstr "Télécharger la dernière version"
940
 
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
  #: templates/account/partials/addon.php356,
943
  #: templates/account/partials/addon.php:412
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"
955
 
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
  msgctxt "Plugin installer section title"
958
  msgid "Description"
959
  msgstr "Description"
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
  msgctxt "Plugin installer section title"
963
  msgid "Installation"
964
  msgstr "Installation"
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
  msgctxt "Plugin installer section title"
968
  msgid "FAQ"
969
  msgstr "FAQ"
970
 
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
  #: templates/plugin-info/description.php:55
973
  msgid "Screenshots"
974
  msgstr "Captures d'écran"
975
 
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
  msgctxt "Plugin installer section title"
978
  msgid "Changelog"
979
  msgstr "Changelog"
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
  msgctxt "Plugin installer section title"
983
  msgid "Reviews"
984
  msgstr "Commentaires"
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
  msgctxt "Plugin installer section title"
988
  msgid "Other Notes"
989
  msgstr "Autres Informations"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
  msgctxt "Plugin installer section title"
993
  msgid "Features & Pricing"
994
  msgstr "Fonctionnalités & Tarifs"
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
  msgid "Plugin Install"
998
  msgstr "Installation du Plugin"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
  msgctxt "e.g. Professional Plan"
1002
  msgid "%s Plan"
1003
  msgstr "Formule %s"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
  msgctxt "e.g. the best product"
1007
  msgid "Best"
1008
  msgstr "Best"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
  msgctxt "as every month"
1013
  msgid "Monthly"
1014
  msgstr "Mensuel"
1015
 
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
  msgctxt "as once a year"
1018
  msgid "Annual"
1019
  msgstr "Annuel"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
  msgid "Lifetime"
1023
  msgstr "À vie"
1024
 
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
  msgctxt "e.g. billed monthly"
1029
  msgid "Billed %s"
1030
  msgstr "%s Facturé"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
  msgctxt "as once a year"
1034
  msgid "Annually"
1035
  msgstr "Annuel"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
  msgctxt "as once a year"
1039
  msgid "Once"
1040
  msgstr "Une fois"
1041
 
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
  msgid "Single Site License"
1044
  msgstr "Licence 1 site"
1045
 
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
  msgid "Unlimited Licenses"
1048
  msgstr "Licences sites illimités"
1049
 
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
  msgid "Up to %s Sites"
1052
  msgstr "Jusqu'à %s Sites"
1053
 
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
  #: templates/plugin-info/features.php:82
1056
  msgctxt "as monthly period"
1057
  msgid "mo"
1058
  msgstr "mois"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
  #: templates/plugin-info/features.php:80
1062
  msgctxt "as annual period"
1063
  msgid "year"
1064
  msgstr "année"
1065
 
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
  msgctxt "noun"
1068
  msgid "Price"
1069
  msgstr "Tarif"
1070
 
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
  msgid "Save %s"
1073
  msgstr "Économisez %s"
1074
 
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
  msgid "No commitment for %s - cancel anytime"
1077
  msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1078
 
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
  msgid "After your free %s, pay as little as %s"
1081
  msgstr "Après vos %s gratuits, payez seulement %s"
1082
 
1083
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1091
  msgid "Version"
1092
  msgstr "Version"
1093
 
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
  msgctxt "as the plugin author"
1096
  msgid "Author"
1097
  msgstr "Auteur"
1098
 
1099
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1107
 
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
  msgid "Requires WordPress Version"
1110
  msgstr "Version de WordPress requise"
1111
 
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
  msgid "%s or higher"
1114
  msgstr "%s ou plus"
1115
 
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
  msgid "Compatible up to"
1118
  msgstr "Compatible jusqu'à"
1119
 
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
  msgid "Downloaded"
1122
  msgstr "Téléchargé"
1123
 
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
  msgid "%s time"
1126
  msgstr "%s fois"
1127
 
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
  msgid "%s times"
1130
  msgstr "%s fois"
1131
 
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
  msgid "WordPress.org Plugin Page"
1134
  msgstr "Page WordPress.org du plugin"
1135
 
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
  msgid "Plugin Homepage"
1138
  msgstr "Site Web du plugin"
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
  msgid "Donate to this plugin"
1143
  msgstr "Faire une donation pour ce plugin"
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
  msgid "Average Rating"
1147
  msgstr "Note moyenne"
1148
 
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
  msgid "based on %s"
1151
  msgstr "Basé sur %s"
1152
 
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
  msgid "%s rating"
1155
  msgstr "%s notation"
1156
 
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
  msgid "%s ratings"
1159
  msgstr "%snotations "
1160
 
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
  msgid "%s star"
1163
  msgstr "%s étoile"
1164
 
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
  msgid "%s stars"
1167
  msgstr "%s étoiles"
1168
 
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
  msgid "Click to see reviews that provided a rating of %s"
1171
  msgstr "Cliquez pour voir les avis avec une notation de %s"
1172
 
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
  msgid "Contributors"
1175
  msgstr "Contributeurs"
1176
 
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
  msgid "Warning"
1180
  msgstr "Attention"
1181
 
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
  msgid "This plugin has not been tested with your current version of WordPress."
1184
  msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1185
 
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
  msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1189
 
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
  msgid "Paid add-on must be deployed to Freemius."
1192
  msgstr "Les add-ons payant doivent être déposés sur Freemius"
1193
 
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
  msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1197
 
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
  msgid "Newer Version (%s) Installed"
1200
  msgstr "Nouvelle Version (%s) Installée"
1201
 
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
  msgid "Newer Free Version (%s) Installed"
1204
  msgstr "La nouvelle version gratuite ( %s ) a été installé"
1205
 
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
  msgid "Latest Version Installed"
1208
  msgstr "Dernière Version Installée"
1209
 
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "La dernière version gratuite a été installé"
1213
 
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
+
1542
  #: templates/add-ons.php:38
1543
  msgid "View details"
1544
  msgstr "Voir les détails"
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"
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"
2208
  msgid "Apply to become an affiliate"
2209
  msgstr "Postuler pour devenir un affilié"
2210
 
2211
+ #: templates/forms/affiliation.php:107
2212
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2213
  msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
2214
 
2215
+ #: templates/forms/affiliation.php:122
2216
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2217
  msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations."
2218
 
2219
+ #: templates/forms/affiliation.php:125
2220
  msgid "Your affiliation account was temporarily suspended."
2221
  msgstr "Votre compte affilié a été suspendu temporairement."
2222
 
2223
+ #: templates/forms/affiliation.php:128
2224
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2225
  msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours."
2226
 
2227
+ #: templates/forms/affiliation.php:131
2228
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2229
  msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support."
2230
 
2231
+ #: templates/forms/affiliation.php:144
2232
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2233
  msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
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!"
2237
  msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
2238
 
2239
+ #: templates/forms/affiliation.php:148
2240
  msgid "Program Summary"
2241
  msgstr "Sommaire du programme"
2242
 
2243
+ #: templates/forms/affiliation.php:150
2244
  msgid "%s commission when a customer purchases a new license."
2245
  msgstr "Commission de %s quand un client achète une nouvelle licence."
2246
 
2247
+ #: templates/forms/affiliation.php:152
2248
  msgid "Get commission for automated subscription renewals."
2249
  msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
2250
 
2251
+ #: templates/forms/affiliation.php:155
2252
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2253
  msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
2254
 
2255
+ #: templates/forms/affiliation.php:158
2256
  msgid "Unlimited commissions."
2257
  msgstr "Commissions illimitées."
2258
 
2259
+ #: templates/forms/affiliation.php:160
2260
  msgid "%s minimum payout amount."
2261
  msgstr "Montant de paiement minimum %s."
2262
 
2263
+ #: templates/forms/affiliation.php:161
2264
  msgid "Payouts are in USD and processed monthly via PayPal."
2265
  msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
2266
 
2267
+ #: templates/forms/affiliation.php:162
2268
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2269
  msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
2270
 
2271
+ #: templates/forms/affiliation.php:165
2272
  msgid "Affiliate"
2273
  msgstr "Affiliation"
2274
 
2275
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2276
  msgid "Email address"
2277
  msgstr "Adresse email"
2278
 
2279
+ #: templates/forms/affiliation.php:172
2280
  msgid "Full name"
2281
  msgstr "Nom complet"
2282
 
2283
+ #: templates/forms/affiliation.php:176
2284
  msgid "PayPal account email address"
2285
  msgstr "Adresse email du compte PayPal"
2286
 
2287
+ #: templates/forms/affiliation.php:180
2288
  msgid "Where are you going to promote the %s?"
2289
  msgstr "Où allez-vous faire la promotion du %s ? "
2290
 
2291
+ #: templates/forms/affiliation.php:182
2292
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2293
  msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
2294
 
2295
+ #: templates/forms/affiliation.php:184
2296
  msgid "Add another domain"
2297
  msgstr "Ajouter une autre adresse"
2298
 
2299
+ #: templates/forms/affiliation.php:188
2300
  msgid "Extra Domains"
2301
  msgstr "Adresses supplémentaires"
2302
 
2303
+ #: templates/forms/affiliation.php:189
2304
  msgid "Extra domains where you will be marketing the product from."
2305
  msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
2306
 
2307
+ #: templates/forms/affiliation.php:199
2308
  msgid "Promotion methods"
2309
  msgstr "Méthodes de promotion"
2310
 
2311
+ #: templates/forms/affiliation.php:202
2312
  msgid "Social media (Facebook, Twitter, etc.)"
2313
  msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
2314
 
2315
+ #: templates/forms/affiliation.php:206
2316
  msgid "Mobile apps"
2317
  msgstr "Applications mobiles"
2318
 
2319
+ #: templates/forms/affiliation.php:210
2320
  msgid "Website, email, and social media statistics (optional)"
2321
  msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
2322
 
2323
+ #: templates/forms/affiliation.php:213
2324
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2325
  msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)"
2326
 
2327
+ #: templates/forms/affiliation.php:217
2328
  msgid "How will you promote us?"
2329
  msgstr "Comment allez-vous faire de la promotion ?"
2330
 
2331
+ #: templates/forms/affiliation.php:220
2332
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2333
  msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
2334
 
2335
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2336
  msgid "Cancel"
2337
  msgstr "Annuler"
2338
 
2339
+ #: templates/forms/affiliation.php:234
2340
  msgid "Become an affiliate"
2341
  msgstr "Devenir un affilié"
2342
 
2410
  msgid "Plugins & themes tracking"
2411
  msgstr "Plugins & themes tracking"
2412
 
2413
+ #: templates/forms/optout.php:261
2414
  msgid "Saved"
2415
  msgstr "Saved"
2416
 
2499
  #: templates/forms/user-change.php:81
2500
  msgctxt "close window"
2501
  msgid "Dismiss"
2502
+ msgstr "Fermer"
2503
 
2504
  #: templates/js/style-premium-theme.php:39
2505
  msgid "Premium"
2628
  msgid "switching"
2629
  msgstr "Changement"
2630
 
2631
+ #: templates/forms/deactivation/form.php:369
2632
  msgid "Submit & %s"
2633
  msgstr "Envoyer & %s"
2634
 
2635
+ #: templates/forms/deactivation/form.php:390
2636
  msgid "Kindly tell us the reason so we can improve."
2637
  msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2638
 
2639
+ #: templates/forms/deactivation/form.php:515
2640
  msgid "Yes - %s"
2641
  msgstr "Oui - %s"
2642
 
2643
+ #: templates/forms/deactivation/form.php:522
2644
  msgid "Skip & %s"
2645
  msgstr "Passer & %s"
2646
 
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) 2019 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-07-27 11:43+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,811 +22,835 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
38
  msgid "Error"
39
  msgstr "שגיאה"
40
 
41
- #: includes/class-freemius.php:2492
42
  msgid "I found a better %s"
43
  msgstr "מצאתי %s יותר טוב"
44
 
45
- #: includes/class-freemius.php:2494
46
  msgid "What's the %s's name?"
47
  msgstr "What's the %s's name?"
48
 
49
- #: includes/class-freemius.php:2500
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:2502
54
  msgid "Deactivation"
55
  msgstr "דיאקטיבציה"
56
 
57
- #: includes/class-freemius.php:2503
58
  msgid "Theme Switch"
59
  msgstr "החלפת תֵמָה"
60
 
61
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "אחר"
65
 
66
- #: includes/class-freemius.php:2520
67
  msgid "I no longer need the %s"
68
  msgstr "I no longer need the %s"
69
 
70
- #: includes/class-freemius.php:2527
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:2533
75
  msgid "The %s broke my site"
76
  msgstr "ה%s הרס לי את האתר"
77
 
78
- #: includes/class-freemius.php:2540
79
  msgid "The %s suddenly stopped working"
80
  msgstr "ה%s הפסיק פתאום לעבוד"
81
 
82
- #: includes/class-freemius.php:2550
83
  msgid "I can't pay for it anymore"
84
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
85
 
86
- #: includes/class-freemius.php:2552
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
89
 
90
- #: includes/class-freemius.php:2558
91
  msgid "I don't like to share my information with you"
92
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
93
 
94
- #: includes/class-freemius.php:2579
95
  msgid "The %s didn't work"
96
  msgstr "ה%s לא עבד"
97
 
98
- #: includes/class-freemius.php:2589
99
  msgid "I couldn't understand how to make it work"
100
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
101
 
102
- #: includes/class-freemius.php:2597
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:2599
107
  msgid "What feature?"
108
  msgstr "איזה פיטצ'ר?"
109
 
110
- #: includes/class-freemius.php:2603
111
  msgid "The %s is not working"
112
  msgstr "ה%s לא עובד"
113
 
114
- #: includes/class-freemius.php:2605
115
  msgid "Kindly share what didn't work so we can fix it for future users..."
116
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
117
 
118
- #: includes/class-freemius.php:2609
119
  msgid "It's not what I was looking for"
120
  msgstr "חיפשתי משהו אחר"
121
 
122
- #: includes/class-freemius.php:2611
123
  msgid "What you've been looking for?"
124
  msgstr "מה חיפשת?"
125
 
126
- #: includes/class-freemius.php:2615
127
  msgid "The %s didn't work as expected"
128
  msgstr "ה%s לא עבד כמצופה"
129
 
130
- #: includes/class-freemius.php:2617
131
  msgid "What did you expect?"
132
  msgstr "למה ציפית?"
133
 
134
- #: includes/class-freemius.php3472, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "ניפוי תקלות פרימיוס"
137
 
138
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
151
  msgid "Yes - do your thing"
152
  msgstr "כן - בצעו את מה שצריך"
153
 
154
- #: includes/class-freemius.php:4343
155
  msgid "No - just deactivate"
156
  msgstr "לא - פשוט כבה"
157
 
158
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
159
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
160
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
161
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
162
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
163
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
164
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
165
- #: includes/class-freemius.php21690, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "אופס"
169
 
170
- #: includes/class-freemius.php:4457
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:4879
175
  msgctxt "addonX cannot run without pluginY"
176
  msgid "%s cannot run without %s."
177
  msgstr "%s לא יכול לעבוד ללא %s."
178
 
179
- #: includes/class-freemius.php:4880
180
  msgctxt "addonX cannot run..."
181
  msgid "%s cannot run without the plugin."
182
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
183
 
184
- #: includes/class-freemius.php5053, includes/class-freemius.php5078,
185
- #: includes/class-freemius.php:20578
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:5777
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s version was successfully activated."
192
 
193
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "יש"
197
 
198
- #: includes/class-freemius.php:5804
199
  msgid "You have a %s license."
200
  msgstr "יש לך רישיון %s."
201
 
202
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
203
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
204
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
205
- #: includes/class-freemius.php:20328
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "יששש"
209
 
210
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
224
  msgid "Purchase License"
225
  msgstr "קניית רישיון"
226
 
227
- #: includes/class-freemius.php7047, 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:7051
232
  msgid "start the trial"
233
  msgstr "התחל תקופת ניסיון"
234
 
235
- #: includes/class-freemius.php7052, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "השלם התקנה"
238
 
239
- #: includes/class-freemius.php:7164
240
  msgid "You are just one step away - %s"
241
  msgstr "You are just one step away - %s"
242
 
243
- #: includes/class-freemius.php:7167
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:7245
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:7249
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt in to make \"%s\" better!"
255
 
256
- #: includes/class-freemius.php:7681
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "The upgrade of %s was successfully completed."
259
 
260
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
261
- #: includes/class-fs-plugin-updater.php1239,
262
- #: includes/class-fs-plugin-updater.php1246,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Add-On"
266
 
267
- #: includes/class-freemius.php9910, templates/account.php343,
268
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "תוסף"
271
 
272
- #: includes/class-freemius.php9911, templates/account.php344,
273
- #: templates/account.php352, templates/debug.php358, templates/debug.php549,
274
  #: templates/forms/deactivation/form.php:71
275
  msgid "Theme"
276
  msgstr "תבנית"
277
 
278
- #: includes/class-freemius.php:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
  msgid "An unknown error has occurred while trying to set the user's beta mode."
280
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
281
 
282
- #: includes/class-freemius.php:12904
283
  msgid "Invalid new user ID or email address."
284
  msgstr "Invalid new user ID or email address."
285
 
286
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
287
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
288
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
289
 
290
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
291
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
292
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
293
 
294
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
295
  msgid "Change Ownership"
296
  msgstr "עדכון בעלות"
297
 
298
- #: includes/class-freemius.php:13438
299
  msgid "Invalid site details collection."
300
  msgstr "Invalid site details collection."
301
 
302
- #: includes/class-freemius.php:13558
303
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
304
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
305
 
306
- #: includes/class-freemius.php:13560
307
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
308
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
309
 
310
- #: includes/class-freemius.php:13834
311
  msgid "Account is pending activation."
312
  msgstr "Account is pending activation."
313
 
314
- #: includes/class-freemius.php13946,
315
  #: templates/forms/premium-versions-upgrade-handler.php:47
316
  msgid "Buy a license now"
317
  msgstr "Buy a license now"
318
 
319
- #: includes/class-freemius.php13958,
320
  #: templates/forms/premium-versions-upgrade-handler.php:46
321
  msgid "Renew your license now"
322
  msgstr "Renew your license now"
323
 
324
- #: includes/class-freemius.php:13962
325
  msgid "%s to access version %s security & feature updates, and support."
326
  msgstr "%s to access version %s security & feature updates, and support."
327
 
328
- #: includes/class-freemius.php:16387
329
  msgid "%s activation was successfully completed."
330
  msgstr "הפעלת %s הושלמה בהצלחה."
331
 
332
- #: includes/class-freemius.php:16401
333
  msgid "Your account was successfully activated with the %s plan."
334
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
335
 
336
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
337
  msgid "Your trial has been successfully started."
338
  msgstr "הניסיון שלך הופעל בהצלחה."
339
 
340
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
341
- #: includes/class-freemius.php:17258
342
  msgid "Couldn't activate %s."
343
  msgstr "לא ניתן להפעיל את %s."
344
 
345
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
346
- #: includes/class-freemius.php:17259
347
  msgid "Please contact us with the following message:"
348
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
349
 
350
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
351
  msgid "An unknown error has occurred."
352
  msgstr "An unknown error has occurred."
353
 
354
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
355
  msgid "Upgrade"
356
  msgstr "שדרג"
357
 
358
- #: includes/class-freemius.php:17622
359
  msgid "Start Trial"
360
  msgstr "התחל תקופת ניסיון"
361
 
362
- #: includes/class-freemius.php:17624
363
  msgid "Pricing"
364
  msgstr "מחירון"
365
 
366
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
367
  msgid "Affiliation"
368
  msgstr "אפיליאציה"
369
 
370
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
371
- #: templates/account.php191, templates/debug.php:324
372
  msgid "Account"
373
  msgstr "חשבון"
374
 
375
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
376
  #: includes/customizer/class-fs-customizer-support-section.php:60
377
  msgid "Contact Us"
378
  msgstr "יצירת קשר"
379
 
380
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
381
- #: includes/class-freemius.php22603, templates/account.php119,
382
  #: templates/account/partials/addon.php:44
383
  msgid "Add-Ons"
384
  msgstr "Add-Ons"
385
 
386
- #: includes/class-freemius.php:17799
387
  msgctxt "ASCII arrow left icon"
388
  msgid "&#x2190;"
389
  msgstr "&#x2190;"
390
 
391
- #: includes/class-freemius.php:17799
392
  msgctxt "ASCII arrow right icon"
393
  msgid "&#x27a4;"
394
  msgstr "&#x27a4;"
395
 
396
- #: includes/class-freemius.php17801, templates/pricing.php:103
397
  msgctxt "noun"
398
  msgid "Pricing"
399
  msgstr "מחירון"
400
 
401
- #: includes/class-freemius.php18014,
402
  #: includes/customizer/class-fs-customizer-support-section.php:67
403
  msgid "Support Forum"
404
  msgstr "פורום תמיכה"
405
 
406
- #: includes/class-freemius.php:18988
407
  msgid "Your email has been successfully verified - you are AWESOME!"
408
  msgstr "Your email has been successfully verified - you are AWESOME!"
409
 
410
- #: includes/class-freemius.php:18989
411
  msgctxt "a positive response"
412
  msgid "Right on"
413
  msgstr "מעולה"
414
 
415
- #: includes/class-freemius.php:19493
416
  msgid "seems like the key you entered doesn't match our records."
417
  msgstr "seems like the key you entered doesn't match our records."
418
 
419
- #: includes/class-freemius.php:19517
420
  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."
421
  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."
422
 
423
- #: includes/class-freemius.php:19735
424
  msgid "Your %s Add-on plan was successfully upgraded."
425
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
426
 
427
- #: includes/class-freemius.php:19737
428
  msgid "%s Add-on was successfully purchased."
429
  msgstr "ההרחבה %s נרכשה בהצלחה."
430
 
431
- #: includes/class-freemius.php:19740
432
  msgid "Download the latest version"
433
  msgstr "הורד את הגרסה האחרונה"
434
 
435
- #: includes/class-freemius.php:19826
436
  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"
437
  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"
438
 
439
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
440
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
441
  msgid "Error received from the server:"
442
  msgstr "הוחזרה שגיאה מהשרת:"
443
 
444
- #: includes/class-freemius.php:19842
445
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
446
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
447
 
448
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
449
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
450
  msgctxt ""
451
  msgid "Hmm"
452
  msgstr "אממ"
453
 
454
- #: includes/class-freemius.php:20069
455
  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."
456
  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."
457
 
458
- #: includes/class-freemius.php20070, templates/account.php121,
459
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
460
  msgctxt "trial period"
461
  msgid "Trial"
462
  msgstr "ניסיון"
463
 
464
- #: includes/class-freemius.php:20075
465
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
466
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
467
 
468
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
469
  msgid "Please contact us here"
470
  msgstr "אנא צור איתנו קשר כאן"
471
 
472
- #: includes/class-freemius.php:20090
473
  msgid "Your plan was successfully activated."
474
  msgstr "Your plan was successfully activated."
475
 
476
- #: includes/class-freemius.php:20091
477
  msgid "Your plan was successfully upgraded."
478
  msgstr "החבילה שודרגה בהצלחה."
479
 
480
- #: includes/class-freemius.php:20108
481
  msgid "Your plan was successfully changed to %s."
482
  msgstr "החבילה עודכנה בהצלחה אל %s."
483
 
484
- #: includes/class-freemius.php:20124
485
  msgid "Your license has expired. You can still continue using the free %s forever."
486
  msgstr "Your license has expired. You can still continue using the free %s forever."
487
 
488
- #: includes/class-freemius.php:20126
489
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
490
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
491
 
492
- #: includes/class-freemius.php:20134
493
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
494
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
495
 
496
- #: includes/class-freemius.php:20147
497
  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."
498
  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."
499
 
500
- #: includes/class-freemius.php:20173
501
  msgid "Your free trial has expired. You can still continue using all our free features."
502
  msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
503
 
504
- #: includes/class-freemius.php:20175
505
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
 
508
- #: includes/class-freemius.php:20283
509
  msgid "It looks like the license could not be activated."
510
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
511
 
512
- #: includes/class-freemius.php:20325
513
  msgid "Your license was successfully activated."
514
  msgstr "הרישיון הופעל בהצלחה."
515
 
516
- #: includes/class-freemius.php:20351
517
  msgid "It looks like your site currently doesn't have an active license."
518
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
519
 
520
- #: includes/class-freemius.php:20375
521
  msgid "It looks like the license deactivation failed."
522
  msgstr "נראה שניתוק הרישיון נכשל."
523
 
524
- #: includes/class-freemius.php:20404
525
  msgid "Your %s license was successfully deactivated."
526
  msgstr "Your %s license was successfully deactivated."
527
 
528
- #: includes/class-freemius.php:20405
529
  msgid "Your license was successfully deactivated, you are back to the %s plan."
530
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
531
 
532
- #: includes/class-freemius.php:20408
533
  msgid "O.K"
534
  msgstr "אוקיי"
535
 
536
- #: includes/class-freemius.php:20461
537
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
538
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
539
 
540
- #: includes/class-freemius.php:20470
541
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
542
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
543
 
544
- #: includes/class-freemius.php:20512
545
  msgid "You are already running the %s in a trial mode."
546
  msgstr "You are already running the %s in a trial mode."
547
 
548
- #: includes/class-freemius.php:20523
549
  msgid "You already utilized a trial before."
550
  msgstr "הניסיון כבר נוצל בעבר."
551
 
552
- #: includes/class-freemius.php:20537
553
  msgid "Plan %s do not exist, therefore, can't start a trial."
554
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
555
 
556
- #: includes/class-freemius.php:20548
557
  msgid "Plan %s does not support a trial period."
558
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
559
 
560
- #: includes/class-freemius.php:20559
561
  msgid "None of the %s's plans supports a trial period."
562
  msgstr "None of the %s's plans supports a trial period."
563
 
564
- #: includes/class-freemius.php:20609
565
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
566
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
567
 
568
- #: includes/class-freemius.php:20645
569
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
570
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
571
 
572
- #: includes/class-freemius.php:20664
573
  msgid "Your %s free trial was successfully cancelled."
574
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
575
 
576
- #: includes/class-freemius.php:20980
577
  msgid "Version %s was released."
578
  msgstr "גרסה %s הושקה."
579
 
580
- #: includes/class-freemius.php:20980
581
  msgid "Please download %s."
582
  msgstr "נא להוריד את %s."
583
 
584
- #: includes/class-freemius.php:20987
585
  msgid "the latest %s version here"
586
  msgstr "גרסת ה-%s האחרונה כאן"
587
 
588
- #: includes/class-freemius.php:20992
589
  msgid "New"
590
  msgstr "חדש"
591
 
592
- #: includes/class-freemius.php:20997
593
  msgid "Seems like you got the latest release."
594
  msgstr "נראה שיש לך את הגרסה האחרונה."
595
 
596
- #: includes/class-freemius.php:20998
597
  msgid "You are all good!"
598
  msgstr "את\\ה מסודר!"
599
 
600
- #: includes/class-freemius.php:21301
601
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
602
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
603
 
604
- #: includes/class-freemius.php:21441
605
  msgid "Site successfully opted in."
606
  msgstr "Site successfully opted in."
607
 
608
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
609
  msgid "Awesome"
610
  msgstr "אדיר"
611
 
612
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
613
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
614
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
615
 
616
- #: includes/class-freemius.php:21459
617
  msgid "Thank you!"
618
  msgstr "תודה רבה!"
619
 
620
- #: includes/class-freemius.php:21466
621
  msgid "We will no longer be sending any usage data of %s on %s to %s."
622
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
623
 
624
- #: includes/class-freemius.php:21612
625
  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."
626
  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."
627
 
628
- #: includes/class-freemius.php:21618
629
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
630
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
631
 
632
- #: includes/class-freemius.php:21623
633
  msgid "%s is the new owner of the account."
634
  msgstr "%s הינו הבעלים החד של חשבון זה."
635
 
636
- #: includes/class-freemius.php:21625
637
  msgctxt "as congratulations"
638
  msgid "Congrats"
639
  msgstr "מזל טוב"
640
 
641
- #: includes/class-freemius.php:21661
642
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
643
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
644
 
645
- #: includes/class-freemius.php:21673
646
  msgid "Please provide your full name."
647
  msgstr "נא למלא את שמך המלא."
648
 
649
- #: includes/class-freemius.php:21678
650
  msgid "Your name was successfully updated."
651
  msgstr "שמך עודכן בהצלחה."
652
 
653
- #: includes/class-freemius.php:21739
654
  msgid "You have successfully updated your %s."
655
  msgstr "עידכנת בהצלחה את ה%s."
656
 
657
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
658
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
659
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
660
 
661
- #: includes/class-freemius.php:21880
662
  msgctxt "advance notice of something that will need attention."
663
  msgid "Heads up"
664
  msgstr "לתשמות לבך"
665
 
666
- #: includes/class-freemius.php:22339
667
  msgctxt "exclamation"
668
  msgid "Hey"
669
  msgstr "היי"
670
 
671
- #: includes/class-freemius.php:22339
672
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
673
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
674
 
675
- #: includes/class-freemius.php:22347
676
  msgid "No commitment for %s days - cancel anytime!"
677
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
678
 
679
- #: includes/class-freemius.php:22348
680
  msgid "No credit card required"
681
  msgstr "לא נדרש כרטיס אשראי"
682
 
683
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
684
  msgctxt "call to action"
685
  msgid "Start free trial"
686
  msgstr "התחלת ניסיון חינם"
687
 
688
- #: includes/class-freemius.php:22432
689
  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!"
690
  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!"
691
 
692
- #: includes/class-freemius.php:22441
693
  msgid "Learn more"
694
  msgstr "Learn more"
695
 
696
- #: includes/class-freemius.php22627, templates/account.php507,
697
- #: templates/account.php657, templates/connect.php179,
698
- #: templates/connect.php455, templates/forms/license-activation.php27,
699
  #: templates/account/partials/addon.php:321
700
  msgid "Activate License"
701
  msgstr "הפעלת רישיון"
702
 
703
- #: includes/class-freemius.php22628, templates/account.php601,
704
- #: templates/account.php656, templates/account/partials/addon.php322,
705
  #: templates/account/partials/site.php:271
706
  msgid "Change License"
707
  msgstr "שינוי רישיון"
708
 
709
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
710
  msgid "Opt Out"
711
  msgstr "Opt Out"
712
 
713
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
714
  #: templates/account/partials/site.php49,
715
  #: templates/account/partials/site.php:169
716
  msgid "Opt In"
717
  msgstr "Opt In"
718
 
719
- #: includes/class-freemius.php:22973
720
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
721
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
722
 
723
- #: includes/class-freemius.php:22981
724
  msgid "Activate %s features"
725
  msgstr "Activate %s features"
726
 
727
- #: includes/class-freemius.php:22994
728
  msgid "Please follow these steps to complete the upgrade"
729
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
730
 
731
- #: includes/class-freemius.php:22998
732
  msgid "Download the latest %s version"
733
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
734
 
735
- #: includes/class-freemius.php:23002
736
  msgid "Upload and activate the downloaded version"
737
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
738
 
739
- #: includes/class-freemius.php:23004
740
  msgid "How to upload and activate?"
741
  msgstr "איך להעלות ולהפעיל?"
742
 
743
- #: includes/class-freemius.php:23138
744
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
745
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
746
 
747
- #: includes/class-freemius.php:23299
748
  msgid "Auto installation only works for opted-in users."
749
  msgstr "Auto installation only works for opted-in users."
750
 
751
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
752
- #: includes/class-fs-plugin-updater.php1218,
753
- #: includes/class-fs-plugin-updater.php:1232
754
  msgid "Invalid module ID."
755
  msgstr "מזהה המודול לא תקני."
756
 
757
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
758
  msgid "Premium version already active."
759
  msgstr "הגרסה בתשלום כבר פעילה."
760
 
761
- #: includes/class-freemius.php:23325
762
  msgid "You do not have a valid license to access the premium version."
763
  msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
764
 
765
- #: includes/class-freemius.php:23332
766
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
767
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
768
 
769
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
770
  msgid "Premium add-on version already installed."
771
  msgstr "Premium add-on version already installed."
772
 
773
- #: includes/class-freemius.php:23700
774
  msgid "View paid features"
775
  msgstr "צפה בפיטצ'רים שבתשלום"
776
 
777
- #: includes/class-freemius.php:24022
778
  msgid "Thank you so much for using %s and its add-ons!"
779
  msgstr "Thank you so much for using %s and its add-ons!"
780
 
781
- #: includes/class-freemius.php:24023
782
  msgid "Thank you so much for using %s!"
783
  msgstr "אנו מודים לך על היותך כמשתמש של %s!"
784
 
785
- #: includes/class-freemius.php:24029
786
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
787
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
788
 
789
- #: includes/class-freemius.php:24033
790
  msgid "Thank you so much for using our products!"
791
  msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
792
 
793
- #: includes/class-freemius.php:24034
794
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
795
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
796
 
797
- #: includes/class-freemius.php:24053
798
  msgid "%s and its add-ons"
799
  msgstr "%s and its add-ons"
800
 
801
- #: includes/class-freemius.php:24062
802
  msgid "Products"
803
  msgstr "מוצרים"
804
 
805
- #: includes/class-freemius.php24069, templates/connect.php:280
806
  msgid "Yes"
807
  msgstr "כן"
808
 
809
- #: includes/class-freemius.php24070, templates/connect.php:281
810
  msgid "send me security & feature updates, educational content and offers."
811
  msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
812
 
813
- #: includes/class-freemius.php24071, templates/connect.php:286
814
  msgid "No"
815
  msgstr "לא"
816
 
817
- #: includes/class-freemius.php24073, templates/connect.php:288
818
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
819
  msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
820
 
821
- #: includes/class-freemius.php:24083
822
  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 :-)"
823
  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 :-)"
824
 
825
- #: includes/class-freemius.php24085, templates/connect.php:295
826
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
827
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
828
 
829
- #: includes/class-freemius.php:24367
830
  msgid "License key is empty."
831
  msgstr "מפתח הרישיון ריק."
832
 
@@ -859,332 +883,332 @@ msgstr "new version"
859
  msgid "Important Upgrade Notice:"
860
  msgstr "Important Upgrade Notice:"
861
 
862
- #: includes/class-fs-plugin-updater.php:1283
863
  msgid "Installing plugin: %s"
864
  msgstr "Installing plugin: %s"
865
 
866
- #: includes/class-fs-plugin-updater.php:1324
867
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
868
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
869
 
870
- #: includes/class-fs-plugin-updater.php:1506
871
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
872
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
873
 
874
- #: includes/fs-plugin-info-dialog.php:535
875
  msgid "Purchase More"
876
  msgstr "Purchase More"
877
 
878
- #: includes/fs-plugin-info-dialog.php536,
879
  #: templates/account/partials/addon.php:385
880
  msgctxt "verb"
881
  msgid "Purchase"
882
  msgstr "רכישה"
883
 
884
- #: includes/fs-plugin-info-dialog.php:540
885
  msgid "Start my free %s"
886
  msgstr "התחל את %s הניסיון שלי"
887
 
888
- #: includes/fs-plugin-info-dialog.php:738
889
  msgid "Install Free Version Update Now"
890
  msgstr "התקן עדכון גרסה חינאמית עכשיו"
891
 
892
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
893
  msgid "Install Update Now"
894
  msgstr "התקן עדכון במיידי"
895
 
896
- #: includes/fs-plugin-info-dialog.php:748
897
  msgid "Install Free Version Now"
898
  msgstr "התקן גרסה חינאמית עכשיו"
899
 
900
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
901
  #: templates/auto-installation.php111,
902
  #: templates/account/partials/addon.php365,
903
  #: templates/account/partials/addon.php:418
904
  msgid "Install Now"
905
  msgstr "התקן עכשיו"
906
 
907
- #: includes/fs-plugin-info-dialog.php:765
908
  msgctxt "as download latest version"
909
  msgid "Download Latest Free Version"
910
  msgstr "Download Latest Free Version"
911
 
912
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
913
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
914
  msgctxt "as download latest version"
915
  msgid "Download Latest"
916
  msgstr "הורד גרסה אחרונה"
917
 
918
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
919
  #: templates/account/partials/addon.php356,
920
  #: templates/account/partials/addon.php:412
921
  msgid "Activate this add-on"
922
  msgstr "הפעל את ההרחבה"
923
 
924
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
925
  msgid "Activate Free Version"
926
  msgstr "הפעלת גירסה חינאמית"
927
 
928
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
929
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
930
  msgid "Activate"
931
  msgstr "הפעלה"
932
 
933
- #: includes/fs-plugin-info-dialog.php:994
934
  msgctxt "Plugin installer section title"
935
  msgid "Description"
936
  msgstr "תיאור"
937
 
938
- #: includes/fs-plugin-info-dialog.php:995
939
  msgctxt "Plugin installer section title"
940
  msgid "Installation"
941
  msgstr "התקנה"
942
 
943
- #: includes/fs-plugin-info-dialog.php:996
944
  msgctxt "Plugin installer section title"
945
  msgid "FAQ"
946
  msgstr "שאלות נפוצות"
947
 
948
- #: includes/fs-plugin-info-dialog.php997,
949
  #: templates/plugin-info/description.php:55
950
  msgid "Screenshots"
951
  msgstr "צילומי מסך"
952
 
953
- #: includes/fs-plugin-info-dialog.php:998
954
  msgctxt "Plugin installer section title"
955
  msgid "Changelog"
956
  msgstr "לוג שינויים"
957
 
958
- #: includes/fs-plugin-info-dialog.php:999
959
  msgctxt "Plugin installer section title"
960
  msgid "Reviews"
961
  msgstr "ביקורות"
962
 
963
- #: includes/fs-plugin-info-dialog.php:1000
964
  msgctxt "Plugin installer section title"
965
  msgid "Other Notes"
966
  msgstr "היערות נוספות"
967
 
968
- #: includes/fs-plugin-info-dialog.php:1015
969
  msgctxt "Plugin installer section title"
970
  msgid "Features & Pricing"
971
  msgstr "פיטצ'רים ומחירים"
972
 
973
- #: includes/fs-plugin-info-dialog.php:1025
974
  msgid "Plugin Install"
975
  msgstr "התקנת תוסף"
976
 
977
- #: includes/fs-plugin-info-dialog.php:1097
978
  msgctxt "e.g. Professional Plan"
979
  msgid "%s Plan"
980
  msgstr "חבילה %s"
981
 
982
- #: includes/fs-plugin-info-dialog.php:1123
983
  msgctxt "e.g. the best product"
984
  msgid "Best"
985
  msgstr "הכי טוב"
986
 
987
- #: includes/fs-plugin-info-dialog.php1129,
988
- #: includes/fs-plugin-info-dialog.php:1149
989
  msgctxt "as every month"
990
  msgid "Monthly"
991
  msgstr "חודשי"
992
 
993
- #: includes/fs-plugin-info-dialog.php:1132
994
  msgctxt "as once a year"
995
  msgid "Annual"
996
  msgstr "שנתי"
997
 
998
- #: includes/fs-plugin-info-dialog.php:1135
999
  msgid "Lifetime"
1000
  msgstr "לכל החיים"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php1149,
1003
- #: includes/fs-plugin-info-dialog.php1151,
1004
- #: includes/fs-plugin-info-dialog.php:1153
1005
  msgctxt "e.g. billed monthly"
1006
  msgid "Billed %s"
1007
  msgstr "מחוייב על בסיס %s"
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:1151
1010
  msgctxt "as once a year"
1011
  msgid "Annually"
1012
  msgstr "שנתי"
1013
 
1014
- #: includes/fs-plugin-info-dialog.php:1153
1015
  msgctxt "as once a year"
1016
  msgid "Once"
1017
  msgstr "פעם אחת"
1018
 
1019
- #: includes/fs-plugin-info-dialog.php:1159
1020
  msgid "Single Site License"
1021
  msgstr "רשיון לאתר אחד"
1022
 
1023
- #: includes/fs-plugin-info-dialog.php:1161
1024
  msgid "Unlimited Licenses"
1025
  msgstr "רשיונות ללא הגבלה"
1026
 
1027
- #: includes/fs-plugin-info-dialog.php:1163
1028
  msgid "Up to %s Sites"
1029
  msgstr "עד %s אתרים"
1030
 
1031
- #: includes/fs-plugin-info-dialog.php1173,
1032
  #: templates/plugin-info/features.php:82
1033
  msgctxt "as monthly period"
1034
  msgid "mo"
1035
  msgstr "חודשים"
1036
 
1037
- #: includes/fs-plugin-info-dialog.php1180,
1038
  #: templates/plugin-info/features.php:80
1039
  msgctxt "as annual period"
1040
  msgid "year"
1041
  msgstr "שנה"
1042
 
1043
- #: includes/fs-plugin-info-dialog.php:1234
1044
  msgctxt "noun"
1045
  msgid "Price"
1046
  msgstr "מחיר"
1047
 
1048
- #: includes/fs-plugin-info-dialog.php:1282
1049
  msgid "Save %s"
1050
  msgstr "שמירת %s"
1051
 
1052
- #: includes/fs-plugin-info-dialog.php:1292
1053
  msgid "No commitment for %s - cancel anytime"
1054
  msgstr "No commitment for %s - cancel anytime"
1055
 
1056
- #: includes/fs-plugin-info-dialog.php:1295
1057
  msgid "After your free %s, pay as little as %s"
1058
  msgstr "After your free %s, pay as little as %s"
1059
 
1060
- #: includes/fs-plugin-info-dialog.php:1306
1061
  msgid "Details"
1062
  msgstr "פרטים"
1063
 
1064
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1065
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1066
  #: templates/account/partials/addon.php:36
1067
  msgctxt "product version"
1068
  msgid "Version"
1069
  msgstr "גרסה"
1070
 
1071
- #: includes/fs-plugin-info-dialog.php:1317
1072
  msgctxt "as the plugin author"
1073
  msgid "Author"
1074
  msgstr "Author"
1075
 
1076
- #: includes/fs-plugin-info-dialog.php:1324
1077
  msgid "Last Updated"
1078
  msgstr "עודכן לאחרונה"
1079
 
1080
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1081
  msgctxt "x-ago"
1082
  msgid "%s ago"
1083
  msgstr "לפני %s"
1084
 
1085
- #: includes/fs-plugin-info-dialog.php:1338
1086
  msgid "Requires WordPress Version"
1087
  msgstr "Requires WordPress Version"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php:1339
1090
  msgid "%s or higher"
1091
  msgstr "%s ומעלה"
1092
 
1093
- #: includes/fs-plugin-info-dialog.php:1346
1094
  msgid "Compatible up to"
1095
  msgstr "Compatible up to"
1096
 
1097
- #: includes/fs-plugin-info-dialog.php:1354
1098
  msgid "Downloaded"
1099
  msgstr "Downloaded"
1100
 
1101
- #: includes/fs-plugin-info-dialog.php:1358
1102
  msgid "%s time"
1103
  msgstr "פעם %s"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php:1360
1106
  msgid "%s times"
1107
  msgstr "%s פעמים"
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1370
1110
  msgid "WordPress.org Plugin Page"
1111
  msgstr "WordPress.org Plugin Page"
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1378
1114
  msgid "Plugin Homepage"
1115
  msgstr "עמוד התוסף"
1116
 
1117
- #: includes/fs-plugin-info-dialog.php1386,
1118
- #: includes/fs-plugin-info-dialog.php:1468
1119
  msgid "Donate to this plugin"
1120
  msgstr "תרום לתוסף"
1121
 
1122
- #: includes/fs-plugin-info-dialog.php:1393
1123
  msgid "Average Rating"
1124
  msgstr "דירוג ממוצע"
1125
 
1126
- #: includes/fs-plugin-info-dialog.php:1400
1127
  msgid "based on %s"
1128
  msgstr "מבוסס על %s"
1129
 
1130
- #: includes/fs-plugin-info-dialog.php:1404
1131
  msgid "%s rating"
1132
  msgstr "דרוג %s"
1133
 
1134
- #: includes/fs-plugin-info-dialog.php:1406
1135
  msgid "%s ratings"
1136
  msgstr "%s דרוגים"
1137
 
1138
- #: includes/fs-plugin-info-dialog.php:1421
1139
  msgid "%s star"
1140
  msgstr "כוכב %s"
1141
 
1142
- #: includes/fs-plugin-info-dialog.php:1423
1143
  msgid "%s stars"
1144
  msgstr "%s כוכבים"
1145
 
1146
- #: includes/fs-plugin-info-dialog.php:1434
1147
  msgid "Click to see reviews that provided a rating of %s"
1148
  msgstr "Click to see reviews that provided a rating of %s"
1149
 
1150
- #: includes/fs-plugin-info-dialog.php:1447
1151
  msgid "Contributors"
1152
  msgstr "תורמים"
1153
 
1154
- #: includes/fs-plugin-info-dialog.php1476,
1155
- #: includes/fs-plugin-info-dialog.php:1478
1156
  msgid "Warning"
1157
  msgstr "Warning"
1158
 
1159
- #: includes/fs-plugin-info-dialog.php:1476
1160
  msgid "This plugin has not been tested with your current version of WordPress."
1161
  msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1162
 
1163
- #: includes/fs-plugin-info-dialog.php:1478
1164
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1165
  msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1166
 
1167
- #: includes/fs-plugin-info-dialog.php:1497
1168
  msgid "Paid add-on must be deployed to Freemius."
1169
  msgstr "Paid add-on must be deployed to Freemius."
1170
 
1171
- #: includes/fs-plugin-info-dialog.php:1498
1172
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1173
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1174
 
1175
- #: includes/fs-plugin-info-dialog.php:1519
1176
  msgid "Newer Version (%s) Installed"
1177
  msgstr "גרסה חדשה (%s) הותקנה"
1178
 
1179
- #: includes/fs-plugin-info-dialog.php:1520
1180
  msgid "Newer Free Version (%s) Installed"
1181
  msgstr "Newer Free Version (%s) Installed"
1182
 
1183
- #: includes/fs-plugin-info-dialog.php:1527
1184
  msgid "Latest Version Installed"
1185
  msgstr "הגרסה האחרונה הותקנה"
1186
 
1187
- #: includes/fs-plugin-info-dialog.php:1528
1188
  msgid "Latest Free Version Installed"
1189
  msgstr "גרסה חינאמית עדכנית הותקנה"
1190
 
@@ -1291,223 +1315,231 @@ msgstr "חבילה"
1291
  msgid "Bundle Plan"
1292
  msgstr "Bundle Plan"
1293
 
1294
- #: templates/account.php:199
1295
  msgid "Free Trial"
1296
  msgstr "ניסיון חינם"
1297
 
1298
- #: templates/account.php:210
1299
  msgid "Account Details"
1300
  msgstr "פרטי חשבון"
1301
 
1302
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1303
  msgid "Start Debug"
1304
  msgstr "Start Debug"
1305
 
1306
- #: templates/account.php:219
1307
  msgid "Stop Debug"
1308
  msgstr "Stop Debug"
1309
 
1310
- #: templates/account.php:226
1311
  msgid "Billing & Invoices"
1312
  msgstr "Billing & Invoices"
1313
 
1314
- #: templates/account.php:237
1315
  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?"
1316
  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?"
1317
 
1318
- #: templates/account.php:239
1319
  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?"
1320
  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?"
1321
 
1322
- #: templates/account.php:242
1323
  msgid "Delete Account"
1324
  msgstr "מחיקת חשבון"
1325
 
1326
- #: templates/account.php254, templates/account/partials/addon.php231,
1327
  #: templates/account/partials/deactivate-license-button.php:35
1328
  msgid "Deactivate License"
1329
  msgstr "שיחרור רישיון"
1330
 
1331
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1332
  msgid "Are you sure you want to proceed?"
1333
  msgstr "האם את/ה בטוח רוצה להמשיך?"
1334
 
1335
- #: templates/account.php277, templates/account/partials/addon.php:255
1336
  msgid "Cancel Subscription"
1337
  msgstr "בטל מנוי"
1338
 
1339
- #: templates/account.php306, templates/account/partials/addon.php:340
1340
  msgctxt "as synchronize"
1341
  msgid "Sync"
1342
  msgstr "סינכרון"
1343
 
1344
- #: templates/account.php321, templates/debug.php:505
1345
  msgid "Name"
1346
  msgstr "שם"
1347
 
1348
- #: templates/account.php327, templates/debug.php:506
1349
  msgid "Email"
1350
  msgstr "דוא\"ל"
1351
 
1352
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1353
  msgid "User ID"
1354
  msgstr "מזהה משתמש"
1355
 
1356
- #: templates/account.php352, templates/account.php670,
1357
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1358
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1359
  #: templates/debug.php632, templates/account/payments.php35,
1360
  #: templates/debug/logger.php:21
1361
  msgid "ID"
1362
  msgstr "מזהה"
1363
 
1364
- #: templates/account.php:359
1365
  msgid "Site ID"
1366
  msgstr "מזהה אתר"
1367
 
1368
- #: templates/account.php:362
1369
  msgid "No ID"
1370
  msgstr "אין מזהה"
1371
 
1372
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1373
  #: templates/debug.php456, templates/debug.php508,
1374
  #: templates/account/partials/site.php:227
1375
  msgid "Public Key"
1376
  msgstr "מפתח פומבי"
1377
 
1378
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1379
  #: templates/debug.php509, templates/account/partials/site.php:239
1380
  msgid "Secret Key"
1381
  msgstr "מפתח סודי"
1382
 
1383
- #: templates/account.php:376
1384
  msgctxt "as secret encryption key missing"
1385
  msgid "No Secret"
1386
  msgstr "אין מפתח סודי"
1387
 
1388
- #: templates/account.php403, templates/account/partials/site.php120,
1389
  #: templates/account/partials/site.php:122
1390
  msgid "Trial"
1391
  msgstr "ניסיון"
1392
 
1393
- #: templates/account.php430, templates/debug.php561,
1394
  #: templates/account/partials/site.php:260
1395
  msgid "License Key"
1396
  msgstr "License Key"
1397
 
1398
- #: templates/account.php:461
1399
  msgid "Join the Beta program"
1400
  msgstr "Join the Beta program"
1401
 
1402
- #: templates/account.php:467
1403
  msgid "not verified"
1404
  msgstr "לא מאומת"
1405
 
1406
- #: templates/account.php476, templates/account/partials/addon.php:190
1407
  msgid "Expired"
1408
  msgstr "פג תוקף"
1409
 
1410
- #: templates/account.php:536
1411
  msgid "Premium version"
1412
  msgstr "גירסת פרימיום"
1413
 
1414
- #: templates/account.php:538
1415
  msgid "Free version"
1416
  msgstr "גירסה חינאמית"
1417
 
1418
- #: templates/account.php:550
1419
  msgid "Verify Email"
1420
  msgstr "אמת כתובת דוא\"ל"
1421
 
1422
- #: templates/account.php:564
1423
  msgid "Download %s Version"
1424
  msgstr "הורד גרסת %s"
1425
 
1426
- #: templates/account.php:580
1427
  msgid "Download Paid Version"
1428
  msgstr "Download Paid Version"
1429
 
1430
- #: templates/account.php598, templates/account.php853,
1431
  #: templates/account/partials/site.php248,
1432
  #: templates/account/partials/site.php:270
1433
  msgctxt "verb"
1434
  msgid "Show"
1435
  msgstr "הצג"
1436
 
1437
- #: templates/account.php:613
1438
  msgid "What is your %s?"
1439
  msgstr "מה ה%s שלך?"
1440
 
1441
- #: templates/account.php621, templates/account/billing.php:21
1442
  msgctxt "verb"
1443
  msgid "Edit"
1444
  msgstr "ערוך"
1445
 
1446
- #: templates/account.php625, templates/forms/user-change.php:27
1447
  msgid "Change User"
1448
  msgstr "Change User"
1449
 
1450
- #: templates/account.php:649
1451
  msgid "Sites"
1452
  msgstr "אתרים"
1453
 
1454
- #: templates/account.php:662
1455
  msgid "Search by address"
1456
  msgstr "חפש לפי כתובת"
1457
 
1458
- #: templates/account.php671, templates/debug.php:366
1459
  msgid "Address"
1460
  msgstr "כתובת"
1461
 
1462
- #: templates/account.php:672
1463
  msgid "License"
1464
  msgstr "רישיון"
1465
 
1466
- #: templates/account.php:673
1467
  msgid "Plan"
1468
  msgstr "חבילה"
1469
 
1470
- #: templates/account.php:718
1471
  msgctxt "as software license"
1472
  msgid "License"
1473
  msgstr "רישיון"
1474
 
1475
- #: templates/account.php:847
1476
  msgctxt "verb"
1477
  msgid "Hide"
1478
  msgstr "הסתר"
1479
 
1480
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1481
  msgid "Processing"
1482
  msgstr "Processing"
1483
 
1484
- #: templates/account.php:872
1485
  msgid "Get updates for bleeding edge Beta versions of %s."
1486
  msgstr "Get updates for bleeding edge Beta versions of %s."
1487
 
1488
- #: templates/account.php:930
1489
  msgid "Cancelling %s"
1490
  msgstr "Cancelling %s"
1491
 
1492
- #: templates/account.php930, templates/account.php947,
1493
  #: templates/forms/subscription-cancellation.php27,
1494
  #: templates/forms/deactivation/form.php:133
1495
  msgid "trial"
1496
  msgstr "trial"
1497
 
1498
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1499
  msgid "Cancelling %s..."
1500
  msgstr "Cancelling %s..."
1501
 
1502
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1503
  #: templates/forms/deactivation/form.php:134
1504
  msgid "subscription"
1505
  msgstr "subscription"
1506
 
1507
- #: templates/account.php:962
1508
  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?"
1509
  msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1510
 
 
 
 
 
 
 
 
 
1511
  #: templates/add-ons.php:38
1512
  msgid "View details"
1513
  msgstr "פרטים נוספים"
@@ -1639,7 +1671,7 @@ msgstr "מפתח רישיון"
1639
  msgid "Can't find your license key?"
1640
  msgstr "האם אינך מוצא את מפתח הרישיון?"
1641
 
1642
- #: templates/connect.php323, templates/connect.php694,
1643
  #: templates/forms/deactivation/retry-skip.php:20
1644
  msgctxt "verb"
1645
  msgid "Skip"
@@ -1697,40 +1729,40 @@ msgstr "Plugins & Themes"
1697
  msgid "Title, slug, version, and is active"
1698
  msgstr "Title, slug, version, and is active"
1699
 
1700
- #: templates/connect.php420, templates/forms/license-activation.php:41
1701
  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."
1702
  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."
1703
 
1704
- #: templates/connect.php:425
1705
  msgid "What permissions are being granted?"
1706
  msgstr "מהן ההרשאות המוענקות?"
1707
 
1708
- #: templates/connect.php:451
1709
  msgid "Don't have a license key?"
1710
  msgstr "האם אין ברשותך מפתח רישיון?"
1711
 
1712
- #: templates/connect.php:454
1713
  msgid "Have a license key?"
1714
  msgstr "האם ברשותך רישיון?"
1715
 
1716
- #: templates/connect.php:462
1717
  msgid "Privacy Policy"
1718
  msgstr "מדיניות פרטיות"
1719
 
1720
- #: templates/connect.php:464
1721
  msgid "License Agreement"
1722
  msgstr "License Agreement"
1723
 
1724
- #: templates/connect.php:464
1725
  msgid "Terms of Service"
1726
  msgstr "תנאי השירות"
1727
 
1728
- #: templates/connect.php:853
1729
  msgctxt "as in the process of sending an email"
1730
  msgid "Sending email"
1731
  msgstr "שולח דוא\"ל"
1732
 
1733
- #: templates/connect.php:854
1734
  msgctxt "as activating plugin"
1735
  msgid "Activating"
1736
  msgstr "מפעיל"
@@ -2177,135 +2209,135 @@ msgstr "Non-expiring"
2177
  msgid "Apply to become an affiliate"
2178
  msgstr "Apply to become an affiliate"
2179
 
2180
- #: templates/forms/affiliation.php:104
2181
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2182
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2183
 
2184
- #: templates/forms/affiliation.php:119
2185
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2186
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2187
 
2188
- #: templates/forms/affiliation.php:122
2189
  msgid "Your affiliation account was temporarily suspended."
2190
  msgstr "Your affiliation account was temporarily suspended."
2191
 
2192
- #: templates/forms/affiliation.php:125
2193
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2194
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2195
 
2196
- #: templates/forms/affiliation.php:128
2197
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2198
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2199
 
2200
- #: templates/forms/affiliation.php:141
2201
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2202
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2203
 
2204
- #: templates/forms/affiliation.php:142
2205
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2206
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2207
 
2208
- #: templates/forms/affiliation.php:145
2209
  msgid "Program Summary"
2210
  msgstr "Program Summary"
2211
 
2212
- #: templates/forms/affiliation.php:147
2213
  msgid "%s commission when a customer purchases a new license."
2214
  msgstr "%s commission when a customer purchases a new license."
2215
 
2216
- #: templates/forms/affiliation.php:149
2217
  msgid "Get commission for automated subscription renewals."
2218
  msgstr "Get commission for automated subscription renewals."
2219
 
2220
- #: templates/forms/affiliation.php:152
2221
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2222
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2223
 
2224
- #: templates/forms/affiliation.php:155
2225
  msgid "Unlimited commissions."
2226
  msgstr "Unlimited commissions."
2227
 
2228
- #: templates/forms/affiliation.php:157
2229
  msgid "%s minimum payout amount."
2230
  msgstr "%s minimum payout amount."
2231
 
2232
- #: templates/forms/affiliation.php:158
2233
  msgid "Payouts are in USD and processed monthly via PayPal."
2234
  msgstr "Payouts are in USD and processed monthly via PayPal."
2235
 
2236
- #: templates/forms/affiliation.php:159
2237
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2238
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2239
 
2240
- #: templates/forms/affiliation.php:162
2241
  msgid "Affiliate"
2242
  msgstr "Affiliate"
2243
 
2244
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2245
  msgid "Email address"
2246
  msgstr "כתובת דוא\"ל"
2247
 
2248
- #: templates/forms/affiliation.php:169
2249
  msgid "Full name"
2250
  msgstr "Full name"
2251
 
2252
- #: templates/forms/affiliation.php:173
2253
  msgid "PayPal account email address"
2254
  msgstr "PayPal account email address"
2255
 
2256
- #: templates/forms/affiliation.php:177
2257
  msgid "Where are you going to promote the %s?"
2258
  msgstr "Where are you going to promote the %s?"
2259
 
2260
- #: templates/forms/affiliation.php:179
2261
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2262
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2263
 
2264
- #: templates/forms/affiliation.php:181
2265
  msgid "Add another domain"
2266
  msgstr "Add another domain"
2267
 
2268
- #: templates/forms/affiliation.php:185
2269
  msgid "Extra Domains"
2270
  msgstr "Extra Domains"
2271
 
2272
- #: templates/forms/affiliation.php:186
2273
  msgid "Extra domains where you will be marketing the product from."
2274
  msgstr "Extra domains where you will be marketing the product from."
2275
 
2276
- #: templates/forms/affiliation.php:196
2277
  msgid "Promotion methods"
2278
  msgstr "Promotion methods"
2279
 
2280
- #: templates/forms/affiliation.php:199
2281
  msgid "Social media (Facebook, Twitter, etc.)"
2282
  msgstr "Social media (Facebook, Twitter, etc.)"
2283
 
2284
- #: templates/forms/affiliation.php:203
2285
  msgid "Mobile apps"
2286
  msgstr "Mobile apps"
2287
 
2288
- #: templates/forms/affiliation.php:207
2289
  msgid "Website, email, and social media statistics (optional)"
2290
  msgstr "Website, email, and social media statistics (optional)"
2291
 
2292
- #: templates/forms/affiliation.php:210
2293
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2294
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2295
 
2296
- #: templates/forms/affiliation.php:214
2297
  msgid "How will you promote us?"
2298
  msgstr "How will you promote us?"
2299
 
2300
- #: templates/forms/affiliation.php:217
2301
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2302
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2303
 
2304
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2305
  msgid "Cancel"
2306
  msgstr "בטל"
2307
 
2308
- #: templates/forms/affiliation.php:225
2309
  msgid "Become an affiliate"
2310
  msgstr "Become an affiliate"
2311
 
@@ -2379,7 +2411,7 @@ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s t
2379
  msgid "Plugins & themes tracking"
2380
  msgstr "Plugins & themes tracking"
2381
 
2382
- #: templates/forms/optout.php:256
2383
  msgid "Saved"
2384
  msgstr "Saved"
2385
 
@@ -2468,7 +2500,7 @@ msgstr "Enter email address"
2468
  #: templates/forms/user-change.php:81
2469
  msgctxt "close window"
2470
  msgid "Dismiss"
2471
- msgstr "Dismiss"
2472
 
2473
  #: templates/js/style-premium-theme.php:39
2474
  msgid "Premium"
@@ -2597,19 +2629,19 @@ msgstr "deactivating"
2597
  msgid "switching"
2598
  msgstr "switching"
2599
 
2600
- #: templates/forms/deactivation/form.php:365
2601
  msgid "Submit & %s"
2602
  msgstr "Submit & %s"
2603
 
2604
- #: templates/forms/deactivation/form.php:386
2605
  msgid "Kindly tell us the reason so we can improve."
2606
  msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2607
 
2608
- #: templates/forms/deactivation/form.php:511
2609
  msgid "Yes - %s"
2610
  msgstr "Yes - %s"
2611
 
2612
- #: templates/forms/deactivation/form.php:518
2613
  msgid "Skip & %s"
2614
  msgstr "דלג ו%s"
2615
 
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
  "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
  "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
  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
 
898
+ #: includes/fs-plugin-info-dialog.php:541
899
  msgid "Purchase More"
900
  msgstr "Purchase More"
901
 
902
+ #: includes/fs-plugin-info-dialog.php542,
903
  #: templates/account/partials/addon.php:385
904
  msgctxt "verb"
905
  msgid "Purchase"
906
  msgstr "רכישה"
907
 
908
+ #: includes/fs-plugin-info-dialog.php:546
909
  msgid "Start my free %s"
910
  msgstr "התחל את %s הניסיון שלי"
911
 
912
+ #: includes/fs-plugin-info-dialog.php:744
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
 
920
+ #: includes/fs-plugin-info-dialog.php:754
921
  msgid "Install Free Version Now"
922
  msgstr "התקן גרסה חינאמית עכשיו"
923
 
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
  #: templates/auto-installation.php111,
926
  #: templates/account/partials/addon.php365,
927
  #: templates/account/partials/addon.php:418
928
  msgid "Install Now"
929
  msgstr "התקן עכשיו"
930
 
931
+ #: includes/fs-plugin-info-dialog.php:771
932
  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"
940
  msgstr "הורד גרסה אחרונה"
941
 
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
  #: templates/account/partials/addon.php356,
944
  #: templates/account/partials/addon.php:412
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 "הפעלה"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
  msgctxt "Plugin installer section title"
959
  msgid "Description"
960
  msgstr "תיאור"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
  msgctxt "Plugin installer section title"
964
  msgid "Installation"
965
  msgstr "התקנה"
966
 
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
  msgctxt "Plugin installer section title"
969
  msgid "FAQ"
970
  msgstr "שאלות נפוצות"
971
 
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
  #: templates/plugin-info/description.php:55
974
  msgid "Screenshots"
975
  msgstr "צילומי מסך"
976
 
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
  msgctxt "Plugin installer section title"
979
  msgid "Changelog"
980
  msgstr "לוג שינויים"
981
 
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
  msgctxt "Plugin installer section title"
984
  msgid "Reviews"
985
  msgstr "ביקורות"
986
 
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
  msgctxt "Plugin installer section title"
989
  msgid "Other Notes"
990
  msgstr "היערות נוספות"
991
 
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
  msgctxt "Plugin installer section title"
994
  msgid "Features & Pricing"
995
  msgstr "פיטצ'רים ומחירים"
996
 
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
  msgid "Plugin Install"
999
  msgstr "התקנת תוסף"
1000
 
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
  msgctxt "e.g. Professional Plan"
1003
  msgid "%s Plan"
1004
  msgstr "חבילה %s"
1005
 
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
  msgctxt "e.g. the best product"
1008
  msgid "Best"
1009
  msgstr "הכי טוב"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
  msgctxt "as every month"
1014
  msgid "Monthly"
1015
  msgstr "חודשי"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
  msgctxt "as once a year"
1019
  msgid "Annual"
1020
  msgstr "שנתי"
1021
 
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
  msgid "Lifetime"
1024
  msgstr "לכל החיים"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
  msgctxt "e.g. billed monthly"
1030
  msgid "Billed %s"
1031
  msgstr "מחוייב על בסיס %s"
1032
 
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
  msgctxt "as once a year"
1035
  msgid "Annually"
1036
  msgstr "שנתי"
1037
 
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
  msgctxt "as once a year"
1040
  msgid "Once"
1041
  msgstr "פעם אחת"
1042
 
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
  msgid "Single Site License"
1045
  msgstr "רשיון לאתר אחד"
1046
 
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
  msgid "Unlimited Licenses"
1049
  msgstr "רשיונות ללא הגבלה"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
  msgid "Up to %s Sites"
1053
  msgstr "עד %s אתרים"
1054
 
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
  #: templates/plugin-info/features.php:82
1057
  msgctxt "as monthly period"
1058
  msgid "mo"
1059
  msgstr "חודשים"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
  #: templates/plugin-info/features.php:80
1063
  msgctxt "as annual period"
1064
  msgid "year"
1065
  msgstr "שנה"
1066
 
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
  msgctxt "noun"
1069
  msgid "Price"
1070
  msgstr "מחיר"
1071
 
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
  msgid "Save %s"
1074
  msgstr "שמירת %s"
1075
 
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
  msgid "No commitment for %s - cancel anytime"
1078
  msgstr "No commitment for %s - cancel anytime"
1079
 
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
  msgid "After your free %s, pay as little as %s"
1082
  msgstr "After your free %s, pay as little as %s"
1083
 
1084
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1092
  msgid "Version"
1093
  msgstr "גרסה"
1094
 
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
  msgctxt "as the plugin author"
1097
  msgid "Author"
1098
  msgstr "Author"
1099
 
1100
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1108
 
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
  msgid "Requires WordPress Version"
1111
  msgstr "Requires WordPress Version"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
  msgid "%s or higher"
1115
  msgstr "%s ומעלה"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
  msgid "Compatible up to"
1119
  msgstr "Compatible up to"
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
  msgid "Downloaded"
1123
  msgstr "Downloaded"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
  msgid "%s time"
1127
  msgstr "פעם %s"
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
  msgid "%s times"
1131
  msgstr "%s פעמים"
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
  msgid "WordPress.org Plugin Page"
1135
  msgstr "WordPress.org Plugin Page"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
  msgid "Plugin Homepage"
1139
  msgstr "עמוד התוסף"
1140
 
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
  msgid "Donate to this plugin"
1144
  msgstr "תרום לתוסף"
1145
 
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
  msgid "Average Rating"
1148
  msgstr "דירוג ממוצע"
1149
 
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
  msgid "based on %s"
1152
  msgstr "מבוסס על %s"
1153
 
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
  msgid "%s rating"
1156
  msgstr "דרוג %s"
1157
 
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
  msgid "%s ratings"
1160
  msgstr "%s דרוגים"
1161
 
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
  msgid "%s star"
1164
  msgstr "כוכב %s"
1165
 
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
  msgid "%s stars"
1168
  msgstr "%s כוכבים"
1169
 
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
  msgid "Click to see reviews that provided a rating of %s"
1172
  msgstr "Click to see reviews that provided a rating of %s"
1173
 
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
  msgid "Contributors"
1176
  msgstr "תורמים"
1177
 
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
  msgid "Warning"
1181
  msgstr "Warning"
1182
 
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
  msgid "This plugin has not been tested with your current version of WordPress."
1185
  msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1186
 
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
  msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1190
 
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
  msgid "Paid add-on must be deployed to Freemius."
1193
  msgstr "Paid add-on must be deployed to Freemius."
1194
 
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1198
 
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
  msgid "Newer Version (%s) Installed"
1201
  msgstr "גרסה חדשה (%s) הותקנה"
1202
 
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
  msgid "Newer Free Version (%s) Installed"
1205
  msgstr "Newer Free Version (%s) Installed"
1206
 
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
  msgid "Latest Version Installed"
1209
  msgstr "הגרסה האחרונה הותקנה"
1210
 
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "גרסה חינאמית עדכנית הותקנה"
1214
 
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
+
1543
  #: templates/add-ons.php:38
1544
  msgid "View details"
1545
  msgstr "פרטים נוספים"
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"
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 "מפעיל"
2209
  msgid "Apply to become an affiliate"
2210
  msgstr "Apply to become an affiliate"
2211
 
2212
+ #: templates/forms/affiliation.php:107
2213
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2214
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2215
 
2216
+ #: templates/forms/affiliation.php:122
2217
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2218
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2219
 
2220
+ #: templates/forms/affiliation.php:125
2221
  msgid "Your affiliation account was temporarily suspended."
2222
  msgstr "Your affiliation account was temporarily suspended."
2223
 
2224
+ #: templates/forms/affiliation.php:128
2225
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2226
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2227
 
2228
+ #: templates/forms/affiliation.php:131
2229
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2230
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2231
 
2232
+ #: templates/forms/affiliation.php:144
2233
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2234
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2235
 
2236
+ #: templates/forms/affiliation.php:145
2237
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2238
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2239
 
2240
+ #: templates/forms/affiliation.php:148
2241
  msgid "Program Summary"
2242
  msgstr "Program Summary"
2243
 
2244
+ #: templates/forms/affiliation.php:150
2245
  msgid "%s commission when a customer purchases a new license."
2246
  msgstr "%s commission when a customer purchases a new license."
2247
 
2248
+ #: templates/forms/affiliation.php:152
2249
  msgid "Get commission for automated subscription renewals."
2250
  msgstr "Get commission for automated subscription renewals."
2251
 
2252
+ #: templates/forms/affiliation.php:155
2253
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2254
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2255
 
2256
+ #: templates/forms/affiliation.php:158
2257
  msgid "Unlimited commissions."
2258
  msgstr "Unlimited commissions."
2259
 
2260
+ #: templates/forms/affiliation.php:160
2261
  msgid "%s minimum payout amount."
2262
  msgstr "%s minimum payout amount."
2263
 
2264
+ #: templates/forms/affiliation.php:161
2265
  msgid "Payouts are in USD and processed monthly via PayPal."
2266
  msgstr "Payouts are in USD and processed monthly via PayPal."
2267
 
2268
+ #: templates/forms/affiliation.php:162
2269
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2270
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2271
 
2272
+ #: templates/forms/affiliation.php:165
2273
  msgid "Affiliate"
2274
  msgstr "Affiliate"
2275
 
2276
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2277
  msgid "Email address"
2278
  msgstr "כתובת דוא\"ל"
2279
 
2280
+ #: templates/forms/affiliation.php:172
2281
  msgid "Full name"
2282
  msgstr "Full name"
2283
 
2284
+ #: templates/forms/affiliation.php:176
2285
  msgid "PayPal account email address"
2286
  msgstr "PayPal account email address"
2287
 
2288
+ #: templates/forms/affiliation.php:180
2289
  msgid "Where are you going to promote the %s?"
2290
  msgstr "Where are you going to promote the %s?"
2291
 
2292
+ #: templates/forms/affiliation.php:182
2293
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2294
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2295
 
2296
+ #: templates/forms/affiliation.php:184
2297
  msgid "Add another domain"
2298
  msgstr "Add another domain"
2299
 
2300
+ #: templates/forms/affiliation.php:188
2301
  msgid "Extra Domains"
2302
  msgstr "Extra Domains"
2303
 
2304
+ #: templates/forms/affiliation.php:189
2305
  msgid "Extra domains where you will be marketing the product from."
2306
  msgstr "Extra domains where you will be marketing the product from."
2307
 
2308
+ #: templates/forms/affiliation.php:199
2309
  msgid "Promotion methods"
2310
  msgstr "Promotion methods"
2311
 
2312
+ #: templates/forms/affiliation.php:202
2313
  msgid "Social media (Facebook, Twitter, etc.)"
2314
  msgstr "Social media (Facebook, Twitter, etc.)"
2315
 
2316
+ #: templates/forms/affiliation.php:206
2317
  msgid "Mobile apps"
2318
  msgstr "Mobile apps"
2319
 
2320
+ #: templates/forms/affiliation.php:210
2321
  msgid "Website, email, and social media statistics (optional)"
2322
  msgstr "Website, email, and social media statistics (optional)"
2323
 
2324
+ #: templates/forms/affiliation.php:213
2325
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2326
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2327
 
2328
+ #: templates/forms/affiliation.php:217
2329
  msgid "How will you promote us?"
2330
  msgstr "How will you promote us?"
2331
 
2332
+ #: templates/forms/affiliation.php:220
2333
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2334
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2335
 
2336
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2337
  msgid "Cancel"
2338
  msgstr "בטל"
2339
 
2340
+ #: templates/forms/affiliation.php:234
2341
  msgid "Become an affiliate"
2342
  msgstr "Become an affiliate"
2343
 
2411
  msgid "Plugins & themes tracking"
2412
  msgstr "Plugins & themes tracking"
2413
 
2414
+ #: templates/forms/optout.php:261
2415
  msgid "Saved"
2416
  msgstr "Saved"
2417
 
2500
  #: templates/forms/user-change.php:81
2501
  msgctxt "close window"
2502
  msgid "Dismiss"
2503
+ msgstr "סגירה"
2504
 
2505
  #: templates/js/style-premium-theme.php:39
2506
  msgid "Premium"
2629
  msgid "switching"
2630
  msgstr "switching"
2631
 
2632
+ #: templates/forms/deactivation/form.php:369
2633
  msgid "Submit & %s"
2634
  msgstr "Submit & %s"
2635
 
2636
+ #: templates/forms/deactivation/form.php:390
2637
  msgid "Kindly tell us the reason so we can improve."
2638
  msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2639
 
2640
+ #: templates/forms/deactivation/form.php:515
2641
  msgid "Yes - %s"
2642
  msgstr "Yes - %s"
2643
 
2644
+ #: templates/forms/deactivation/form.php:522
2645
  msgid "Skip & %s"
2646
  msgstr "דלג ו%s"
2647
 
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) 2019 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-07-27 11:43+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,811 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
37
  msgid "Error"
38
  msgstr "Hiba"
39
 
40
- #: includes/class-freemius.php:2492
41
  msgid "I found a better %s"
42
  msgstr "Jobb %st találtam"
43
 
44
- #: includes/class-freemius.php:2494
45
  msgid "What's the %s's name?"
46
  msgstr "Mi a %s neve?"
47
 
48
- #: includes/class-freemius.php:2500
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:2502
53
  msgid "Deactivation"
54
  msgstr "Deaktiválás"
55
 
56
- #: includes/class-freemius.php:2503
57
  msgid "Theme Switch"
58
  msgstr "Sablon váltás"
59
 
60
- #: includes/class-freemius.php2512, 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:2520
66
  msgid "I no longer need the %s"
67
  msgstr "I no longer need the %s"
68
 
69
- #: includes/class-freemius.php:2527
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:2533
74
  msgid "The %s broke my site"
75
  msgstr "The %s broke my site"
76
 
77
- #: includes/class-freemius.php:2540
78
  msgid "The %s suddenly stopped working"
79
  msgstr "The %s suddenly stopped working"
80
 
81
- #: includes/class-freemius.php:2550
82
  msgid "I can't pay for it anymore"
83
  msgstr "Nem tudom tovább fizetni"
84
 
85
- #: includes/class-freemius.php:2552
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:2558
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:2579
94
  msgid "The %s didn't work"
95
  msgstr "A %s nem működött"
96
 
97
- #: includes/class-freemius.php:2589
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:2597
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:2599
106
  msgid "What feature?"
107
  msgstr "Melyik funkcióra van szükséged?"
108
 
109
- #: includes/class-freemius.php:2603
110
  msgid "The %s is not working"
111
  msgstr "A(z) %s nem működik"
112
 
113
- #: includes/class-freemius.php:2605
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:2609
118
  msgid "It's not what I was looking for"
119
  msgstr "Nem ezt kerestem"
120
 
121
- #: includes/class-freemius.php:2611
122
  msgid "What you've been looking for?"
123
  msgstr "Pontosan mit kerestél?"
124
 
125
- #: includes/class-freemius.php:2615
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:2617
130
  msgid "What did you expect?"
131
  msgstr "Mire számítottál?"
132
 
133
- #: includes/class-freemius.php3472, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius Debug"
136
 
137
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
150
  msgid "Yes - do your thing"
151
  msgstr "Igen - tedd a dolgod"
152
 
153
- #: includes/class-freemius.php:4343
154
  msgid "No - just deactivate"
155
  msgstr "Nem - csak deaktiválom"
156
 
157
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
158
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
159
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
160
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
161
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
162
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
163
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
164
- #: includes/class-freemius.php21690, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Hoppá"
168
 
169
- #: includes/class-freemius.php:4457
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:4879
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:4880
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.php5053, includes/class-freemius.php5078,
184
- #: includes/class-freemius.php:20578
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:5777
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Premium %s version was successfully activated."
191
 
192
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Fantasztikus"
196
 
197
- #: includes/class-freemius.php:5804
198
  msgid "You have a %s license."
199
  msgstr "You have a %s license."
200
 
201
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
202
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
203
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
204
- #: includes/class-freemius.php:20328
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Juhuuu"
208
 
209
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
223
  msgid "Purchase License"
224
  msgstr "Licensz vásárlása"
225
 
226
- #: includes/class-freemius.php7047, 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:7051
231
  msgid "start the trial"
232
  msgstr "próbaidő indítása"
233
 
234
- #: includes/class-freemius.php7052, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "befejezd a telepítést"
237
 
238
- #: includes/class-freemius.php:7164
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:7167
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:7245
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:7249
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
- #: includes/class-freemius.php:7681
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "The upgrade of %s was successfully completed."
258
 
259
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
260
- #: includes/class-fs-plugin-updater.php1239,
261
- #: includes/class-fs-plugin-updater.php1246,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Kiegészítő"
265
 
266
- #: includes/class-freemius.php9910, templates/account.php343,
267
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Bővítmény"
270
 
271
- #: includes/class-freemius.php9911, templates/account.php344,
272
- #: templates/account.php352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "An unknown error has occurred while trying to set the user's beta mode."
279
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
280
 
281
- #: includes/class-freemius.php:12904
282
  msgid "Invalid new user ID or email address."
283
  msgstr "Invalid new user ID or email address."
284
 
285
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
286
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
287
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
288
 
289
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
290
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
291
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
292
 
293
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
294
  msgid "Change Ownership"
295
  msgstr "Tulajdonos módosítása"
296
 
297
- #: includes/class-freemius.php:13438
298
  msgid "Invalid site details collection."
299
  msgstr "Invalid site details collection."
300
 
301
- #: includes/class-freemius.php:13558
302
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
303
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
304
 
305
- #: includes/class-freemius.php:13560
306
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
307
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
308
 
309
- #: includes/class-freemius.php:13834
310
  msgid "Account is pending activation."
311
  msgstr "A fiók aktiválása függőben."
312
 
313
- #: includes/class-freemius.php13946,
314
  #: templates/forms/premium-versions-upgrade-handler.php:47
315
  msgid "Buy a license now"
316
  msgstr "Vásárolj licenszet most"
317
 
318
- #: includes/class-freemius.php13958,
319
  #: templates/forms/premium-versions-upgrade-handler.php:46
320
  msgid "Renew your license now"
321
  msgstr "Licensz kulcs megújítása"
322
 
323
- #: includes/class-freemius.php:13962
324
  msgid "%s to access version %s security & feature updates, and support."
325
  msgstr "%s to access version %s security & feature updates, and support."
326
 
327
- #: includes/class-freemius.php:16387
328
  msgid "%s activation was successfully completed."
329
  msgstr "%s activation was successfully completed."
330
 
331
- #: includes/class-freemius.php:16401
332
  msgid "Your account was successfully activated with the %s plan."
333
  msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
334
 
335
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
336
  msgid "Your trial has been successfully started."
337
  msgstr "A próbaidőszakodat sikeresen aktiváltuk."
338
 
339
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
340
- #: includes/class-freemius.php:17258
341
  msgid "Couldn't activate %s."
342
  msgstr "Couldn't activate %s."
343
 
344
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
345
- #: includes/class-freemius.php:17259
346
  msgid "Please contact us with the following message:"
347
  msgstr "Please contact us with the following message:"
348
 
349
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
350
  msgid "An unknown error has occurred."
351
  msgstr "An unknown error has occurred."
352
 
353
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
354
  msgid "Upgrade"
355
  msgstr "Előfizetés frissítése"
356
 
357
- #: includes/class-freemius.php:17622
358
  msgid "Start Trial"
359
  msgstr "Próbaidő indítása"
360
 
361
- #: includes/class-freemius.php:17624
362
  msgid "Pricing"
363
  msgstr "Árak"
364
 
365
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
366
  msgid "Affiliation"
367
  msgstr "Affiliation"
368
 
369
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
370
- #: templates/account.php191, templates/debug.php:324
371
  msgid "Account"
372
  msgstr "Fiók"
373
 
374
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
375
  #: includes/customizer/class-fs-customizer-support-section.php:60
376
  msgid "Contact Us"
377
  msgstr "Kapcsolat"
378
 
379
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
380
- #: includes/class-freemius.php22603, templates/account.php119,
381
  #: templates/account/partials/addon.php:44
382
  msgid "Add-Ons"
383
  msgstr "Kiegészítők"
384
 
385
- #: includes/class-freemius.php:17799
386
  msgctxt "ASCII arrow left icon"
387
  msgid "&#x2190;"
388
  msgstr "&#x2190;"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow right icon"
392
  msgid "&#x27a4;"
393
  msgstr "&#x27a4;"
394
 
395
- #: includes/class-freemius.php17801, templates/pricing.php:103
396
  msgctxt "noun"
397
  msgid "Pricing"
398
  msgstr "Árak"
399
 
400
- #: includes/class-freemius.php18014,
401
  #: includes/customizer/class-fs-customizer-support-section.php:67
402
  msgid "Support Forum"
403
  msgstr "Támogató fórum"
404
 
405
- #: includes/class-freemius.php:18988
406
  msgid "Your email has been successfully verified - you are AWESOME!"
407
  msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
408
 
409
- #: includes/class-freemius.php:18989
410
  msgctxt "a positive response"
411
  msgid "Right on"
412
  msgstr "Right on"
413
 
414
- #: includes/class-freemius.php:19493
415
  msgid "seems like the key you entered doesn't match our records."
416
  msgstr "seems like the key you entered doesn't match our records."
417
 
418
- #: includes/class-freemius.php:19517
419
  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."
420
  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."
421
 
422
- #: includes/class-freemius.php:19735
423
  msgid "Your %s Add-on plan was successfully upgraded."
424
  msgstr "Your %s Add-on plan was successfully upgraded."
425
 
426
- #: includes/class-freemius.php:19737
427
  msgid "%s Add-on was successfully purchased."
428
  msgstr "%s Add-on was successfully purchased."
429
 
430
- #: includes/class-freemius.php:19740
431
  msgid "Download the latest version"
432
  msgstr "Töltsd le a legfrissebb verziót"
433
 
434
- #: includes/class-freemius.php:19826
435
  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"
436
  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"
437
 
438
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
439
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
440
  msgid "Error received from the server:"
441
  msgstr "Error received from the server:"
442
 
443
- #: includes/class-freemius.php:19842
444
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
445
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
446
 
447
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
448
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
449
  msgctxt ""
450
  msgid "Hmm"
451
  msgstr "Hmm"
452
 
453
- #: includes/class-freemius.php:20069
454
  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."
455
  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."
456
 
457
- #: includes/class-freemius.php20070, templates/account.php121,
458
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
459
  msgctxt "trial period"
460
  msgid "Trial"
461
  msgstr "Próbaidő"
462
 
463
- #: includes/class-freemius.php:20075
464
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
465
  msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
466
 
467
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
468
  msgid "Please contact us here"
469
  msgstr "Please contact us here"
470
 
471
- #: includes/class-freemius.php:20090
472
  msgid "Your plan was successfully activated."
473
  msgstr "Your plan was successfully activated."
474
 
475
- #: includes/class-freemius.php:20091
476
  msgid "Your plan was successfully upgraded."
477
  msgstr "Your plan was successfully upgraded."
478
 
479
- #: includes/class-freemius.php:20108
480
  msgid "Your plan was successfully changed to %s."
481
  msgstr "Your plan was successfully changed to %s."
482
 
483
- #: includes/class-freemius.php:20124
484
  msgid "Your license has expired. You can still continue using the free %s forever."
485
  msgstr "Your license has expired. You can still continue using the free %s forever."
486
 
487
- #: includes/class-freemius.php:20126
488
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
490
 
491
- #: includes/class-freemius.php:20134
492
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
493
  msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
494
 
495
- #: includes/class-freemius.php:20147
496
  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."
497
  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."
498
 
499
- #: includes/class-freemius.php:20173
500
  msgid "Your free trial has expired. You can still continue using all our free features."
501
  msgstr "Your free trial has expired. You can still continue using all our free features."
502
 
503
- #: includes/class-freemius.php:20175
504
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
- #: includes/class-freemius.php:20283
508
  msgid "It looks like the license could not be activated."
509
  msgstr "It looks like the license could not be activated."
510
 
511
- #: includes/class-freemius.php:20325
512
  msgid "Your license was successfully activated."
513
  msgstr "Your license was successfully activated."
514
 
515
- #: includes/class-freemius.php:20351
516
  msgid "It looks like your site currently doesn't have an active license."
517
  msgstr "It looks like your site currently doesn't have an active license."
518
 
519
- #: includes/class-freemius.php:20375
520
  msgid "It looks like the license deactivation failed."
521
  msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
522
 
523
- #: includes/class-freemius.php:20404
524
  msgid "Your %s license was successfully deactivated."
525
  msgstr "Your %s license was successfully deactivated."
526
 
527
- #: includes/class-freemius.php:20405
528
  msgid "Your license was successfully deactivated, you are back to the %s plan."
529
  msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
530
 
531
- #: includes/class-freemius.php:20408
532
  msgid "O.K"
533
  msgstr "Rendben"
534
 
535
- #: includes/class-freemius.php:20461
536
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
537
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
538
 
539
- #: includes/class-freemius.php:20470
540
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
541
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
542
 
543
- #: includes/class-freemius.php:20512
544
  msgid "You are already running the %s in a trial mode."
545
  msgstr "You are already running the %s in a trial mode."
546
 
547
- #: includes/class-freemius.php:20523
548
  msgid "You already utilized a trial before."
549
  msgstr "You already utilized a trial before."
550
 
551
- #: includes/class-freemius.php:20537
552
  msgid "Plan %s do not exist, therefore, can't start a trial."
553
  msgstr "Plan %s do not exist, therefore, can't start a trial."
554
 
555
- #: includes/class-freemius.php:20548
556
  msgid "Plan %s does not support a trial period."
557
  msgstr "Plan %s does not support a trial period."
558
 
559
- #: includes/class-freemius.php:20559
560
  msgid "None of the %s's plans supports a trial period."
561
  msgstr "None of the %s's plans supports a trial period."
562
 
563
- #: includes/class-freemius.php:20609
564
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
565
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
566
 
567
- #: includes/class-freemius.php:20645
568
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
569
  msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
570
 
571
- #: includes/class-freemius.php:20664
572
  msgid "Your %s free trial was successfully cancelled."
573
  msgstr "Your %s free trial was successfully cancelled."
574
 
575
- #: includes/class-freemius.php:20980
576
  msgid "Version %s was released."
577
  msgstr "Version %s was released."
578
 
579
- #: includes/class-freemius.php:20980
580
  msgid "Please download %s."
581
  msgstr "Please download %s."
582
 
583
- #: includes/class-freemius.php:20987
584
  msgid "the latest %s version here"
585
  msgstr "the latest %s version here"
586
 
587
- #: includes/class-freemius.php:20992
588
  msgid "New"
589
  msgstr "Új"
590
 
591
- #: includes/class-freemius.php:20997
592
  msgid "Seems like you got the latest release."
593
  msgstr "Seems like you got the latest release."
594
 
595
- #: includes/class-freemius.php:20998
596
  msgid "You are all good!"
597
  msgstr "Minden rendben!"
598
 
599
- #: includes/class-freemius.php:21301
600
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
601
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
602
 
603
- #: includes/class-freemius.php:21441
604
  msgid "Site successfully opted in."
605
  msgstr "Site successfully opted in."
606
 
607
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
608
  msgid "Awesome"
609
  msgstr "Nagyszerű"
610
 
611
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
612
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
613
  msgstr "We appreciate your help in making the %s better by letting us track some usage data."
614
 
615
- #: includes/class-freemius.php:21459
616
  msgid "Thank you!"
617
  msgstr "Köszönjük!"
618
 
619
- #: includes/class-freemius.php:21466
620
  msgid "We will no longer be sending any usage data of %s on %s to %s."
621
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
622
 
623
- #: includes/class-freemius.php:21612
624
  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."
625
  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."
626
 
627
- #: includes/class-freemius.php:21618
628
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
629
  msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
630
 
631
- #: includes/class-freemius.php:21623
632
  msgid "%s is the new owner of the account."
633
  msgstr "%s is the new owner of the account."
634
 
635
- #: includes/class-freemius.php:21625
636
  msgctxt "as congratulations"
637
  msgid "Congrats"
638
  msgstr "Gratulálunk"
639
 
640
- #: includes/class-freemius.php:21661
641
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
642
  msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
643
 
644
- #: includes/class-freemius.php:21673
645
  msgid "Please provide your full name."
646
  msgstr "Kérlek add meg a teljes neved!"
647
 
648
- #: includes/class-freemius.php:21678
649
  msgid "Your name was successfully updated."
650
  msgstr "A neved sikeresen frissítettük."
651
 
652
- #: includes/class-freemius.php:21739
653
  msgid "You have successfully updated your %s."
654
  msgstr "You have successfully updated your %s."
655
 
656
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
657
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
658
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
659
 
660
- #: includes/class-freemius.php:21880
661
  msgctxt "advance notice of something that will need attention."
662
  msgid "Heads up"
663
  msgstr "Figyelem"
664
 
665
- #: includes/class-freemius.php:22339
666
  msgctxt "exclamation"
667
  msgid "Hey"
668
  msgstr "Üdv"
669
 
670
- #: includes/class-freemius.php:22339
671
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
672
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
673
 
674
- #: includes/class-freemius.php:22347
675
  msgid "No commitment for %s days - cancel anytime!"
676
  msgstr "No commitment for %s days - cancel anytime!"
677
 
678
- #: includes/class-freemius.php:22348
679
  msgid "No credit card required"
680
  msgstr "Bankkártya megadása nem kötelező"
681
 
682
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
683
  msgctxt "call to action"
684
  msgid "Start free trial"
685
  msgstr "Start free trial"
686
 
687
- #: includes/class-freemius.php:22432
688
  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!"
689
  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!"
690
 
691
- #: includes/class-freemius.php:22441
692
  msgid "Learn more"
693
  msgstr "Bővebben"
694
 
695
- #: includes/class-freemius.php22627, templates/account.php507,
696
- #: templates/account.php657, templates/connect.php179,
697
- #: templates/connect.php455, templates/forms/license-activation.php27,
698
  #: templates/account/partials/addon.php:321
699
  msgid "Activate License"
700
  msgstr "Licensz aktiválása"
701
 
702
- #: includes/class-freemius.php22628, templates/account.php601,
703
- #: templates/account.php656, templates/account/partials/addon.php322,
704
  #: templates/account/partials/site.php:271
705
  msgid "Change License"
706
  msgstr "Licensz módosítása"
707
 
708
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
709
  msgid "Opt Out"
710
  msgstr "Leiratkozás"
711
 
712
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
713
  #: templates/account/partials/site.php49,
714
  #: templates/account/partials/site.php:169
715
  msgid "Opt In"
716
  msgstr "Feliratkozás"
717
 
718
- #: includes/class-freemius.php:22973
719
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
720
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
721
 
722
- #: includes/class-freemius.php:22981
723
  msgid "Activate %s features"
724
  msgstr "Activate %s features"
725
 
726
- #: includes/class-freemius.php:22994
727
  msgid "Please follow these steps to complete the upgrade"
728
  msgstr "Please follow these steps to complete the upgrade"
729
 
730
- #: includes/class-freemius.php:22998
731
  msgid "Download the latest %s version"
732
  msgstr "Download the latest %s version"
733
 
734
- #: includes/class-freemius.php:23002
735
  msgid "Upload and activate the downloaded version"
736
  msgstr "Upload and activate the downloaded version"
737
 
738
- #: includes/class-freemius.php:23004
739
  msgid "How to upload and activate?"
740
  msgstr "How to upload and activate?"
741
 
742
- #: includes/class-freemius.php:23138
743
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
744
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
745
 
746
- #: includes/class-freemius.php:23299
747
  msgid "Auto installation only works for opted-in users."
748
  msgstr "Auto installation only works for opted-in users."
749
 
750
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
751
- #: includes/class-fs-plugin-updater.php1218,
752
- #: includes/class-fs-plugin-updater.php:1232
753
  msgid "Invalid module ID."
754
  msgstr "Invalid module ID."
755
 
756
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
757
  msgid "Premium version already active."
758
  msgstr "Premium version already active."
759
 
760
- #: includes/class-freemius.php:23325
761
  msgid "You do not have a valid license to access the premium version."
762
  msgstr "You do not have a valid license to access the premium version."
763
 
764
- #: includes/class-freemius.php:23332
765
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
766
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
767
 
768
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
769
  msgid "Premium add-on version already installed."
770
  msgstr "Premium add-on version already installed."
771
 
772
- #: includes/class-freemius.php:23700
773
  msgid "View paid features"
774
  msgstr "Fizetős funkciók megtekintése"
775
 
776
- #: includes/class-freemius.php:24022
777
  msgid "Thank you so much for using %s and its add-ons!"
778
  msgstr "Thank you so much for using %s and its add-ons!"
779
 
780
- #: includes/class-freemius.php:24023
781
  msgid "Thank you so much for using %s!"
782
  msgstr "Thank you so much for using %s!"
783
 
784
- #: includes/class-freemius.php:24029
785
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
786
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
787
 
788
- #: includes/class-freemius.php:24033
789
  msgid "Thank you so much for using our products!"
790
  msgstr "Thank you so much for using our products!"
791
 
792
- #: includes/class-freemius.php:24034
793
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
794
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
795
 
796
- #: includes/class-freemius.php:24053
797
  msgid "%s and its add-ons"
798
  msgstr "%s and its add-ons"
799
 
800
- #: includes/class-freemius.php:24062
801
  msgid "Products"
802
  msgstr "Termékek"
803
 
804
- #: includes/class-freemius.php24069, templates/connect.php:280
805
  msgid "Yes"
806
  msgstr "Igen"
807
 
808
- #: includes/class-freemius.php24070, templates/connect.php:281
809
  msgid "send me security & feature updates, educational content and offers."
810
  msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
811
 
812
- #: includes/class-freemius.php24071, templates/connect.php:286
813
  msgid "No"
814
  msgstr "Nem"
815
 
816
- #: includes/class-freemius.php24073, templates/connect.php:288
817
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
818
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
819
 
820
- #: includes/class-freemius.php:24083
821
  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 :-)"
822
  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 :-)"
823
 
824
- #: includes/class-freemius.php24085, templates/connect.php:295
825
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
826
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
827
 
828
- #: includes/class-freemius.php:24367
829
  msgid "License key is empty."
830
  msgstr "A licensz kulcs üres."
831
 
@@ -858,332 +882,332 @@ msgstr "új verzió"
858
  msgid "Important Upgrade Notice:"
859
  msgstr "Important Upgrade Notice:"
860
 
861
- #: includes/class-fs-plugin-updater.php:1283
862
  msgid "Installing plugin: %s"
863
  msgstr "Bővítmény telepítése: %s"
864
 
865
- #: includes/class-fs-plugin-updater.php:1324
866
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
867
  msgstr "Unable to connect to the filesystem. Please confirm your credentials."
868
 
869
- #: includes/class-fs-plugin-updater.php:1506
870
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
871
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
872
 
873
- #: includes/fs-plugin-info-dialog.php:535
874
  msgid "Purchase More"
875
  msgstr "Purchase More"
876
 
877
- #: includes/fs-plugin-info-dialog.php536,
878
  #: templates/account/partials/addon.php:385
879
  msgctxt "verb"
880
  msgid "Purchase"
881
  msgstr "Vásárlás"
882
 
883
- #: includes/fs-plugin-info-dialog.php:540
884
  msgid "Start my free %s"
885
  msgstr "Start my free %s"
886
 
887
- #: includes/fs-plugin-info-dialog.php:738
888
  msgid "Install Free Version Update Now"
889
  msgstr "Install Free Version Update Now"
890
 
891
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
892
  msgid "Install Update Now"
893
  msgstr "Frissítés telepítése most"
894
 
895
- #: includes/fs-plugin-info-dialog.php:748
896
  msgid "Install Free Version Now"
897
  msgstr "Install Free Version Now"
898
 
899
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
900
  #: templates/auto-installation.php111,
901
  #: templates/account/partials/addon.php365,
902
  #: templates/account/partials/addon.php:418
903
  msgid "Install Now"
904
  msgstr "Telepítés most"
905
 
906
- #: includes/fs-plugin-info-dialog.php:765
907
  msgctxt "as download latest version"
908
  msgid "Download Latest Free Version"
909
  msgstr "Download Latest Free Version"
910
 
911
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
912
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
913
  msgctxt "as download latest version"
914
  msgid "Download Latest"
915
  msgstr "Download Latest"
916
 
917
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
918
  #: templates/account/partials/addon.php356,
919
  #: templates/account/partials/addon.php:412
920
  msgid "Activate this add-on"
921
  msgstr "Activate this add-on"
922
 
923
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
924
  msgid "Activate Free Version"
925
  msgstr "Ingyenes verzió aktiválása"
926
 
927
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
928
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
929
  msgid "Activate"
930
  msgstr "Aktiválás"
931
 
932
- #: includes/fs-plugin-info-dialog.php:994
933
  msgctxt "Plugin installer section title"
934
  msgid "Description"
935
  msgstr "Leírás"
936
 
937
- #: includes/fs-plugin-info-dialog.php:995
938
  msgctxt "Plugin installer section title"
939
  msgid "Installation"
940
  msgstr "Telepítés"
941
 
942
- #: includes/fs-plugin-info-dialog.php:996
943
  msgctxt "Plugin installer section title"
944
  msgid "FAQ"
945
  msgstr "GYIK"
946
 
947
- #: includes/fs-plugin-info-dialog.php997,
948
  #: templates/plugin-info/description.php:55
949
  msgid "Screenshots"
950
  msgstr "Képernyőfotók"
951
 
952
- #: includes/fs-plugin-info-dialog.php:998
953
  msgctxt "Plugin installer section title"
954
  msgid "Changelog"
955
  msgstr "Változtatások"
956
 
957
- #: includes/fs-plugin-info-dialog.php:999
958
  msgctxt "Plugin installer section title"
959
  msgid "Reviews"
960
  msgstr "Vélemények"
961
 
962
- #: includes/fs-plugin-info-dialog.php:1000
963
  msgctxt "Plugin installer section title"
964
  msgid "Other Notes"
965
  msgstr "Egyéb megjegyzések"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1015
968
  msgctxt "Plugin installer section title"
969
  msgid "Features & Pricing"
970
  msgstr "Funkciók & Árak"
971
 
972
- #: includes/fs-plugin-info-dialog.php:1025
973
  msgid "Plugin Install"
974
  msgstr "Bővítmény telepítése"
975
 
976
- #: includes/fs-plugin-info-dialog.php:1097
977
  msgctxt "e.g. Professional Plan"
978
  msgid "%s Plan"
979
  msgstr "%s csomag"
980
 
981
- #: includes/fs-plugin-info-dialog.php:1123
982
  msgctxt "e.g. the best product"
983
  msgid "Best"
984
  msgstr "Legjobb"
985
 
986
- #: includes/fs-plugin-info-dialog.php1129,
987
- #: includes/fs-plugin-info-dialog.php:1149
988
  msgctxt "as every month"
989
  msgid "Monthly"
990
  msgstr "Havi"
991
 
992
- #: includes/fs-plugin-info-dialog.php:1132
993
  msgctxt "as once a year"
994
  msgid "Annual"
995
  msgstr "Éves"
996
 
997
- #: includes/fs-plugin-info-dialog.php:1135
998
  msgid "Lifetime"
999
  msgstr "Örök"
1000
 
1001
- #: includes/fs-plugin-info-dialog.php1149,
1002
- #: includes/fs-plugin-info-dialog.php1151,
1003
- #: includes/fs-plugin-info-dialog.php:1153
1004
  msgctxt "e.g. billed monthly"
1005
  msgid "Billed %s"
1006
  msgstr "%s számlázás"
1007
 
1008
- #: includes/fs-plugin-info-dialog.php:1151
1009
  msgctxt "as once a year"
1010
  msgid "Annually"
1011
  msgstr "Éves"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1153
1014
  msgctxt "as once a year"
1015
  msgid "Once"
1016
  msgstr "Egyszeri"
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1159
1019
  msgid "Single Site License"
1020
  msgstr "Egy weboldalas licensz"
1021
 
1022
- #: includes/fs-plugin-info-dialog.php:1161
1023
  msgid "Unlimited Licenses"
1024
  msgstr "Korlátlan licensz"
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1163
1027
  msgid "Up to %s Sites"
1028
  msgstr "Up to %s Sites"
1029
 
1030
- #: includes/fs-plugin-info-dialog.php1173,
1031
  #: templates/plugin-info/features.php:82
1032
  msgctxt "as monthly period"
1033
  msgid "mo"
1034
  msgstr "hó"
1035
 
1036
- #: includes/fs-plugin-info-dialog.php1180,
1037
  #: templates/plugin-info/features.php:80
1038
  msgctxt "as annual period"
1039
  msgid "year"
1040
  msgstr "év"
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1234
1043
  msgctxt "noun"
1044
  msgid "Price"
1045
  msgstr "Ár"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:1282
1048
  msgid "Save %s"
1049
  msgstr "%s mentése"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:1292
1052
  msgid "No commitment for %s - cancel anytime"
1053
  msgstr "No commitment for %s - cancel anytime"
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:1295
1056
  msgid "After your free %s, pay as little as %s"
1057
  msgstr "After your free %s, pay as little as %s"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:1306
1060
  msgid "Details"
1061
  msgstr "Részletek"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1064
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1065
  #: templates/account/partials/addon.php:36
1066
  msgctxt "product version"
1067
  msgid "Version"
1068
  msgstr "Verzió"
1069
 
1070
- #: includes/fs-plugin-info-dialog.php:1317
1071
  msgctxt "as the plugin author"
1072
  msgid "Author"
1073
  msgstr "Szerző"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1324
1076
  msgid "Last Updated"
1077
  msgstr "Utolsó frissítés"
1078
 
1079
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1080
  msgctxt "x-ago"
1081
  msgid "%s ago"
1082
  msgstr "%s ago"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1338
1085
  msgid "Requires WordPress Version"
1086
  msgstr "A következő WordPress verzió szükséges:"
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1339
1089
  msgid "%s or higher"
1090
  msgstr "%s or higher"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1346
1093
  msgid "Compatible up to"
1094
  msgstr "Compatible up to"
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1354
1097
  msgid "Downloaded"
1098
  msgstr "Letöltések száma:"
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1358
1101
  msgid "%s time"
1102
  msgstr "%s"
1103
 
1104
- #: includes/fs-plugin-info-dialog.php:1360
1105
  msgid "%s times"
1106
  msgstr "%s"
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1370
1109
  msgid "WordPress.org Plugin Page"
1110
  msgstr "WordPress.org bővítmény oldal"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1378
1113
  msgid "Plugin Homepage"
1114
  msgstr "Bővítmény oldala"
1115
 
1116
- #: includes/fs-plugin-info-dialog.php1386,
1117
- #: includes/fs-plugin-info-dialog.php:1468
1118
  msgid "Donate to this plugin"
1119
  msgstr "Bővítmény támogatása"
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1393
1122
  msgid "Average Rating"
1123
  msgstr "Átlagos értékelés"
1124
 
1125
- #: includes/fs-plugin-info-dialog.php:1400
1126
  msgid "based on %s"
1127
  msgstr "based on %s"
1128
 
1129
- #: includes/fs-plugin-info-dialog.php:1404
1130
  msgid "%s rating"
1131
  msgstr "%s rating"
1132
 
1133
- #: includes/fs-plugin-info-dialog.php:1406
1134
  msgid "%s ratings"
1135
  msgstr "%s ratings"
1136
 
1137
- #: includes/fs-plugin-info-dialog.php:1421
1138
  msgid "%s star"
1139
  msgstr "%s star"
1140
 
1141
- #: includes/fs-plugin-info-dialog.php:1423
1142
  msgid "%s stars"
1143
  msgstr "%s stars"
1144
 
1145
- #: includes/fs-plugin-info-dialog.php:1434
1146
  msgid "Click to see reviews that provided a rating of %s"
1147
  msgstr "Click to see reviews that provided a rating of %s"
1148
 
1149
- #: includes/fs-plugin-info-dialog.php:1447
1150
  msgid "Contributors"
1151
  msgstr "Közreműködők"
1152
 
1153
- #: includes/fs-plugin-info-dialog.php1476,
1154
- #: includes/fs-plugin-info-dialog.php:1478
1155
  msgid "Warning"
1156
  msgstr "Figyelmeztetés"
1157
 
1158
- #: includes/fs-plugin-info-dialog.php:1476
1159
  msgid "This plugin has not been tested with your current version of WordPress."
1160
  msgstr "This plugin has not been tested with your current version of WordPress."
1161
 
1162
- #: includes/fs-plugin-info-dialog.php:1478
1163
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1164
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1165
 
1166
- #: includes/fs-plugin-info-dialog.php:1497
1167
  msgid "Paid add-on must be deployed to Freemius."
1168
  msgstr "Paid add-on must be deployed to Freemius."
1169
 
1170
- #: includes/fs-plugin-info-dialog.php:1498
1171
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1172
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1173
 
1174
- #: includes/fs-plugin-info-dialog.php:1519
1175
  msgid "Newer Version (%s) Installed"
1176
  msgstr "Newer Version (%s) Installed"
1177
 
1178
- #: includes/fs-plugin-info-dialog.php:1520
1179
  msgid "Newer Free Version (%s) Installed"
1180
  msgstr "Newer Free Version (%s) Installed"
1181
 
1182
- #: includes/fs-plugin-info-dialog.php:1527
1183
  msgid "Latest Version Installed"
1184
  msgstr "Legfrissebb verzió telepítve"
1185
 
1186
- #: includes/fs-plugin-info-dialog.php:1528
1187
  msgid "Latest Free Version Installed"
1188
  msgstr "Legfrissebb ingyenes verzió telepítve"
1189
 
@@ -1290,223 +1314,231 @@ msgstr "Csomag"
1290
  msgid "Bundle Plan"
1291
  msgstr "Bundle Plan"
1292
 
1293
- #: templates/account.php:199
1294
  msgid "Free Trial"
1295
  msgstr "Ingyenes próbaidő"
1296
 
1297
- #: templates/account.php:210
1298
  msgid "Account Details"
1299
  msgstr "Fiók információk"
1300
 
1301
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1302
  msgid "Start Debug"
1303
  msgstr "Start Debug"
1304
 
1305
- #: templates/account.php:219
1306
  msgid "Stop Debug"
1307
  msgstr "Stop Debug"
1308
 
1309
- #: templates/account.php:226
1310
  msgid "Billing & Invoices"
1311
  msgstr "Billing & Invoices"
1312
 
1313
- #: templates/account.php:237
1314
  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?"
1315
  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?"
1316
 
1317
- #: templates/account.php:239
1318
  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?"
1319
  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?"
1320
 
1321
- #: templates/account.php:242
1322
  msgid "Delete Account"
1323
  msgstr "Fiók törlése"
1324
 
1325
- #: templates/account.php254, templates/account/partials/addon.php231,
1326
  #: templates/account/partials/deactivate-license-button.php:35
1327
  msgid "Deactivate License"
1328
  msgstr "Licensz deaktiválása"
1329
 
1330
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1331
  msgid "Are you sure you want to proceed?"
1332
  msgstr "Are you sure you want to proceed?"
1333
 
1334
- #: templates/account.php277, templates/account/partials/addon.php:255
1335
  msgid "Cancel Subscription"
1336
  msgstr "Előfizetés törlése"
1337
 
1338
- #: templates/account.php306, templates/account/partials/addon.php:340
1339
  msgctxt "as synchronize"
1340
  msgid "Sync"
1341
  msgstr "Szinkronizálás"
1342
 
1343
- #: templates/account.php321, templates/debug.php:505
1344
  msgid "Name"
1345
  msgstr "Név"
1346
 
1347
- #: templates/account.php327, templates/debug.php:506
1348
  msgid "Email"
1349
  msgstr "Email"
1350
 
1351
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1352
  msgid "User ID"
1353
  msgstr "Felhasználó ID"
1354
 
1355
- #: templates/account.php352, templates/account.php670,
1356
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1357
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1358
  #: templates/debug.php632, templates/account/payments.php35,
1359
  #: templates/debug/logger.php:21
1360
  msgid "ID"
1361
  msgstr "ID"
1362
 
1363
- #: templates/account.php:359
1364
  msgid "Site ID"
1365
  msgstr "Weboldal ID"
1366
 
1367
- #: templates/account.php:362
1368
  msgid "No ID"
1369
  msgstr "Nincs ID"
1370
 
1371
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1372
  #: templates/debug.php456, templates/debug.php508,
1373
  #: templates/account/partials/site.php:227
1374
  msgid "Public Key"
1375
  msgstr "Publikus kulcs"
1376
 
1377
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1378
  #: templates/debug.php509, templates/account/partials/site.php:239
1379
  msgid "Secret Key"
1380
  msgstr "Titkos kulcs"
1381
 
1382
- #: templates/account.php:376
1383
  msgctxt "as secret encryption key missing"
1384
  msgid "No Secret"
1385
  msgstr "Nincs titkos kulcs"
1386
 
1387
- #: templates/account.php403, templates/account/partials/site.php120,
1388
  #: templates/account/partials/site.php:122
1389
  msgid "Trial"
1390
  msgstr "Próbaidő"
1391
 
1392
- #: templates/account.php430, templates/debug.php561,
1393
  #: templates/account/partials/site.php:260
1394
  msgid "License Key"
1395
  msgstr "Licensz kulcs"
1396
 
1397
- #: templates/account.php:461
1398
  msgid "Join the Beta program"
1399
  msgstr "Join the Beta program"
1400
 
1401
- #: templates/account.php:467
1402
  msgid "not verified"
1403
  msgstr "nem ellenőrzött"
1404
 
1405
- #: templates/account.php476, templates/account/partials/addon.php:190
1406
  msgid "Expired"
1407
  msgstr "Lejárt"
1408
 
1409
- #: templates/account.php:536
1410
  msgid "Premium version"
1411
  msgstr "Prémium verzió"
1412
 
1413
- #: templates/account.php:538
1414
  msgid "Free version"
1415
  msgstr "Ingyenes verzió"
1416
 
1417
- #: templates/account.php:550
1418
  msgid "Verify Email"
1419
  msgstr "Email ellenőrzése"
1420
 
1421
- #: templates/account.php:564
1422
  msgid "Download %s Version"
1423
  msgstr "%s verzió letöltése"
1424
 
1425
- #: templates/account.php:580
1426
  msgid "Download Paid Version"
1427
  msgstr "Download Paid Version"
1428
 
1429
- #: templates/account.php598, templates/account.php853,
1430
  #: templates/account/partials/site.php248,
1431
  #: templates/account/partials/site.php:270
1432
  msgctxt "verb"
1433
  msgid "Show"
1434
  msgstr "Mutasd"
1435
 
1436
- #: templates/account.php:613
1437
  msgid "What is your %s?"
1438
  msgstr "Mi a te %s?"
1439
 
1440
- #: templates/account.php621, templates/account/billing.php:21
1441
  msgctxt "verb"
1442
  msgid "Edit"
1443
  msgstr "Szerkesztés"
1444
 
1445
- #: templates/account.php625, templates/forms/user-change.php:27
1446
  msgid "Change User"
1447
  msgstr "Change User"
1448
 
1449
- #: templates/account.php:649
1450
  msgid "Sites"
1451
  msgstr "Weboldalak"
1452
 
1453
- #: templates/account.php:662
1454
  msgid "Search by address"
1455
  msgstr "Keresés cím alapján"
1456
 
1457
- #: templates/account.php671, templates/debug.php:366
1458
  msgid "Address"
1459
  msgstr "Cím"
1460
 
1461
- #: templates/account.php:672
1462
  msgid "License"
1463
  msgstr "Licensz"
1464
 
1465
- #: templates/account.php:673
1466
  msgid "Plan"
1467
  msgstr "Csomag"
1468
 
1469
- #: templates/account.php:718
1470
  msgctxt "as software license"
1471
  msgid "License"
1472
  msgstr "Licensz"
1473
 
1474
- #: templates/account.php:847
1475
  msgctxt "verb"
1476
  msgid "Hide"
1477
  msgstr "Elrejt"
1478
 
1479
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1480
  msgid "Processing"
1481
  msgstr "Processing"
1482
 
1483
- #: templates/account.php:872
1484
  msgid "Get updates for bleeding edge Beta versions of %s."
1485
  msgstr "Get updates for bleeding edge Beta versions of %s."
1486
 
1487
- #: templates/account.php:930
1488
  msgid "Cancelling %s"
1489
  msgstr "Cancelling %s"
1490
 
1491
- #: templates/account.php930, templates/account.php947,
1492
  #: templates/forms/subscription-cancellation.php27,
1493
  #: templates/forms/deactivation/form.php:133
1494
  msgid "trial"
1495
  msgstr "próbaidő"
1496
 
1497
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1498
  msgid "Cancelling %s..."
1499
  msgstr "Cancelling %s..."
1500
 
1501
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1502
  #: templates/forms/deactivation/form.php:134
1503
  msgid "subscription"
1504
  msgstr "előfizetés"
1505
 
1506
- #: templates/account.php:962
1507
  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?"
1508
  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?"
1509
 
 
 
 
 
 
 
 
 
1510
  #: templates/add-ons.php:38
1511
  msgid "View details"
1512
  msgstr "Részletek megtekintése"
@@ -1638,7 +1670,7 @@ msgstr "Licensz kulcs"
1638
  msgid "Can't find your license key?"
1639
  msgstr "Nem találod a licensz kulcsod?"
1640
 
1641
- #: templates/connect.php323, templates/connect.php694,
1642
  #: templates/forms/deactivation/retry-skip.php:20
1643
  msgctxt "verb"
1644
  msgid "Skip"
@@ -1696,40 +1728,40 @@ msgstr "Plugins & Themes"
1696
  msgid "Title, slug, version, and is active"
1697
  msgstr "Title, slug, version, and is active"
1698
 
1699
- #: templates/connect.php420, templates/forms/license-activation.php:41
1700
  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."
1701
  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."
1702
 
1703
- #: templates/connect.php:425
1704
  msgid "What permissions are being granted?"
1705
  msgstr "Milyen jogosultágok lesznek engedélyezve?"
1706
 
1707
- #: templates/connect.php:451
1708
  msgid "Don't have a license key?"
1709
  msgstr "Nincs még licensz kulcsod?"
1710
 
1711
- #: templates/connect.php:454
1712
  msgid "Have a license key?"
1713
  msgstr "Van licensz kulcsod?"
1714
 
1715
- #: templates/connect.php:462
1716
  msgid "Privacy Policy"
1717
  msgstr "Adatkezelési tájékoztató"
1718
 
1719
- #: templates/connect.php:464
1720
  msgid "License Agreement"
1721
  msgstr "Licensz szerződés"
1722
 
1723
- #: templates/connect.php:464
1724
  msgid "Terms of Service"
1725
  msgstr "Szolgáltatási feltételek"
1726
 
1727
- #: templates/connect.php:853
1728
  msgctxt "as in the process of sending an email"
1729
  msgid "Sending email"
1730
  msgstr "Email küldése"
1731
 
1732
- #: templates/connect.php:854
1733
  msgctxt "as activating plugin"
1734
  msgid "Activating"
1735
  msgstr "Aktiválás"
@@ -2176,135 +2208,135 @@ msgstr "Non-expiring"
2176
  msgid "Apply to become an affiliate"
2177
  msgstr "Apply to become an affiliate"
2178
 
2179
- #: templates/forms/affiliation.php:104
2180
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2181
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2182
 
2183
- #: templates/forms/affiliation.php:119
2184
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2185
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2186
 
2187
- #: templates/forms/affiliation.php:122
2188
  msgid "Your affiliation account was temporarily suspended."
2189
  msgstr "Your affiliation account was temporarily suspended."
2190
 
2191
- #: templates/forms/affiliation.php:125
2192
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2193
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2194
 
2195
- #: templates/forms/affiliation.php:128
2196
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2197
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2198
 
2199
- #: templates/forms/affiliation.php:141
2200
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2201
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2202
 
2203
- #: templates/forms/affiliation.php:142
2204
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2205
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2206
 
2207
- #: templates/forms/affiliation.php:145
2208
  msgid "Program Summary"
2209
  msgstr "Program Summary"
2210
 
2211
- #: templates/forms/affiliation.php:147
2212
  msgid "%s commission when a customer purchases a new license."
2213
  msgstr "%s commission when a customer purchases a new license."
2214
 
2215
- #: templates/forms/affiliation.php:149
2216
  msgid "Get commission for automated subscription renewals."
2217
  msgstr "Get commission for automated subscription renewals."
2218
 
2219
- #: templates/forms/affiliation.php:152
2220
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2221
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2222
 
2223
- #: templates/forms/affiliation.php:155
2224
  msgid "Unlimited commissions."
2225
  msgstr "Unlimited commissions."
2226
 
2227
- #: templates/forms/affiliation.php:157
2228
  msgid "%s minimum payout amount."
2229
  msgstr "%s minimum payout amount."
2230
 
2231
- #: templates/forms/affiliation.php:158
2232
  msgid "Payouts are in USD and processed monthly via PayPal."
2233
  msgstr "Payouts are in USD and processed monthly via PayPal."
2234
 
2235
- #: templates/forms/affiliation.php:159
2236
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2237
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2238
 
2239
- #: templates/forms/affiliation.php:162
2240
  msgid "Affiliate"
2241
  msgstr "Affiliate"
2242
 
2243
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2244
  msgid "Email address"
2245
  msgstr "Email cím"
2246
 
2247
- #: templates/forms/affiliation.php:169
2248
  msgid "Full name"
2249
  msgstr "Teljes név"
2250
 
2251
- #: templates/forms/affiliation.php:173
2252
  msgid "PayPal account email address"
2253
  msgstr "PayPal fiók email címe"
2254
 
2255
- #: templates/forms/affiliation.php:177
2256
  msgid "Where are you going to promote the %s?"
2257
  msgstr "Where are you going to promote the %s?"
2258
 
2259
- #: templates/forms/affiliation.php:179
2260
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2261
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2262
 
2263
- #: templates/forms/affiliation.php:181
2264
  msgid "Add another domain"
2265
  msgstr "Másik domain hozzáadása"
2266
 
2267
- #: templates/forms/affiliation.php:185
2268
  msgid "Extra Domains"
2269
  msgstr "További domainek"
2270
 
2271
- #: templates/forms/affiliation.php:186
2272
  msgid "Extra domains where you will be marketing the product from."
2273
  msgstr "Extra domains where you will be marketing the product from."
2274
 
2275
- #: templates/forms/affiliation.php:196
2276
  msgid "Promotion methods"
2277
  msgstr "Promotion methods"
2278
 
2279
- #: templates/forms/affiliation.php:199
2280
  msgid "Social media (Facebook, Twitter, etc.)"
2281
  msgstr "Social media (Facebook, Twitter, etc.)"
2282
 
2283
- #: templates/forms/affiliation.php:203
2284
  msgid "Mobile apps"
2285
  msgstr "Mobile apps"
2286
 
2287
- #: templates/forms/affiliation.php:207
2288
  msgid "Website, email, and social media statistics (optional)"
2289
  msgstr "Weboldal, email és közösségi média statisztikák (opcionális)"
2290
 
2291
- #: templates/forms/affiliation.php:210
2292
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2293
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2294
 
2295
- #: templates/forms/affiliation.php:214
2296
  msgid "How will you promote us?"
2297
  msgstr "How will you promote us?"
2298
 
2299
- #: templates/forms/affiliation.php:217
2300
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2301
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2302
 
2303
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2304
  msgid "Cancel"
2305
  msgstr "Mégsem"
2306
 
2307
- #: templates/forms/affiliation.php:225
2308
  msgid "Become an affiliate"
2309
  msgstr "Become an affiliate"
2310
 
@@ -2378,7 +2410,7 @@ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s t
2378
  msgid "Plugins & themes tracking"
2379
  msgstr "Plugins & themes tracking"
2380
 
2381
- #: templates/forms/optout.php:256
2382
  msgid "Saved"
2383
  msgstr "Saved"
2384
 
@@ -2467,7 +2499,7 @@ msgstr "Enter email address"
2467
  #: templates/forms/user-change.php:81
2468
  msgctxt "close window"
2469
  msgid "Dismiss"
2470
- msgstr "Dismiss"
2471
 
2472
  #: templates/js/style-premium-theme.php:39
2473
  msgid "Premium"
@@ -2596,19 +2628,19 @@ msgstr "deaktiválod"
2596
  msgid "switching"
2597
  msgstr "váltasz"
2598
 
2599
- #: templates/forms/deactivation/form.php:365
2600
  msgid "Submit & %s"
2601
  msgstr "Küldés & %s"
2602
 
2603
- #: templates/forms/deactivation/form.php:386
2604
  msgid "Kindly tell us the reason so we can improve."
2605
  msgstr "Ha elmondod az okát, tudunk fejlődni."
2606
 
2607
- #: templates/forms/deactivation/form.php:511
2608
  msgid "Yes - %s"
2609
  msgstr "Yes - %s"
2610
 
2611
- #: templates/forms/deactivation/form.php:518
2612
  msgid "Skip & %s"
2613
  msgstr "Kihagyás & %s"
2614
 
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
  "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
  "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
  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
 
897
+ #: includes/fs-plugin-info-dialog.php:541
898
  msgid "Purchase More"
899
  msgstr "Purchase More"
900
 
901
+ #: includes/fs-plugin-info-dialog.php542,
902
  #: templates/account/partials/addon.php:385
903
  msgctxt "verb"
904
  msgid "Purchase"
905
  msgstr "Vásárlás"
906
 
907
+ #: includes/fs-plugin-info-dialog.php:546
908
  msgid "Start my free %s"
909
  msgstr "Start my free %s"
910
 
911
+ #: includes/fs-plugin-info-dialog.php:744
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
 
919
+ #: includes/fs-plugin-info-dialog.php:754
920
  msgid "Install Free Version Now"
921
  msgstr "Install Free Version Now"
922
 
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
  #: templates/auto-installation.php111,
925
  #: templates/account/partials/addon.php365,
926
  #: templates/account/partials/addon.php:418
927
  msgid "Install Now"
928
  msgstr "Telepítés most"
929
 
930
+ #: includes/fs-plugin-info-dialog.php:771
931
  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"
939
  msgstr "Download Latest"
940
 
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
  #: templates/account/partials/addon.php356,
943
  #: templates/account/partials/addon.php:412
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"
955
 
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
  msgctxt "Plugin installer section title"
958
  msgid "Description"
959
  msgstr "Leírás"
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
  msgctxt "Plugin installer section title"
963
  msgid "Installation"
964
  msgstr "Telepítés"
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
  msgctxt "Plugin installer section title"
968
  msgid "FAQ"
969
  msgstr "GYIK"
970
 
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
  #: templates/plugin-info/description.php:55
973
  msgid "Screenshots"
974
  msgstr "Képernyőfotók"
975
 
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
  msgctxt "Plugin installer section title"
978
  msgid "Changelog"
979
  msgstr "Változtatások"
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
  msgctxt "Plugin installer section title"
983
  msgid "Reviews"
984
  msgstr "Vélemények"
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
  msgctxt "Plugin installer section title"
988
  msgid "Other Notes"
989
  msgstr "Egyéb megjegyzések"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
  msgctxt "Plugin installer section title"
993
  msgid "Features & Pricing"
994
  msgstr "Funkciók & Árak"
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
  msgid "Plugin Install"
998
  msgstr "Bővítmény telepítése"
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
  msgctxt "e.g. Professional Plan"
1002
  msgid "%s Plan"
1003
  msgstr "%s csomag"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
  msgctxt "e.g. the best product"
1007
  msgid "Best"
1008
  msgstr "Legjobb"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
  msgctxt "as every month"
1013
  msgid "Monthly"
1014
  msgstr "Havi"
1015
 
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
  msgctxt "as once a year"
1018
  msgid "Annual"
1019
  msgstr "Éves"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
  msgid "Lifetime"
1023
  msgstr "Örök"
1024
 
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
  msgctxt "e.g. billed monthly"
1029
  msgid "Billed %s"
1030
  msgstr "%s számlázás"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
  msgctxt "as once a year"
1034
  msgid "Annually"
1035
  msgstr "Éves"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
  msgctxt "as once a year"
1039
  msgid "Once"
1040
  msgstr "Egyszeri"
1041
 
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
  msgid "Single Site License"
1044
  msgstr "Egy weboldalas licensz"
1045
 
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
  msgid "Unlimited Licenses"
1048
  msgstr "Korlátlan licensz"
1049
 
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
  msgid "Up to %s Sites"
1052
  msgstr "Up to %s Sites"
1053
 
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
  #: templates/plugin-info/features.php:82
1056
  msgctxt "as monthly period"
1057
  msgid "mo"
1058
  msgstr "hó"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
  #: templates/plugin-info/features.php:80
1062
  msgctxt "as annual period"
1063
  msgid "year"
1064
  msgstr "év"
1065
 
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
  msgctxt "noun"
1068
  msgid "Price"
1069
  msgstr "Ár"
1070
 
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
  msgid "Save %s"
1073
  msgstr "%s mentése"
1074
 
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
  msgid "No commitment for %s - cancel anytime"
1077
  msgstr "No commitment for %s - cancel anytime"
1078
 
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
  msgid "After your free %s, pay as little as %s"
1081
  msgstr "After your free %s, pay as little as %s"
1082
 
1083
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1091
  msgid "Version"
1092
  msgstr "Verzió"
1093
 
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
  msgctxt "as the plugin author"
1096
  msgid "Author"
1097
  msgstr "Szerző"
1098
 
1099
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1107
 
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
  msgid "Requires WordPress Version"
1110
  msgstr "A következő WordPress verzió szükséges:"
1111
 
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
  msgid "%s or higher"
1114
  msgstr "%s or higher"
1115
 
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
  msgid "Compatible up to"
1118
  msgstr "Compatible up to"
1119
 
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
  msgid "Downloaded"
1122
  msgstr "Letöltések száma:"
1123
 
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
  msgid "%s time"
1126
  msgstr "%s"
1127
 
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
  msgid "%s times"
1130
  msgstr "%s"
1131
 
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
  msgid "WordPress.org Plugin Page"
1134
  msgstr "WordPress.org bővítmény oldal"
1135
 
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
  msgid "Plugin Homepage"
1138
  msgstr "Bővítmény oldala"
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
  msgid "Donate to this plugin"
1143
  msgstr "Bővítmény támogatása"
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
  msgid "Average Rating"
1147
  msgstr "Átlagos értékelés"
1148
 
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
  msgid "based on %s"
1151
  msgstr "based on %s"
1152
 
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
  msgid "%s rating"
1155
  msgstr "%s rating"
1156
 
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
  msgid "%s ratings"
1159
  msgstr "%s ratings"
1160
 
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
  msgid "%s star"
1163
  msgstr "%s star"
1164
 
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
  msgid "%s stars"
1167
  msgstr "%s stars"
1168
 
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
  msgid "Click to see reviews that provided a rating of %s"
1171
  msgstr "Click to see reviews that provided a rating of %s"
1172
 
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
  msgid "Contributors"
1175
  msgstr "Közreműködők"
1176
 
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
  msgid "Warning"
1180
  msgstr "Figyelmeztetés"
1181
 
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
  msgid "This plugin has not been tested with your current version of WordPress."
1184
  msgstr "This plugin has not been tested with your current version of WordPress."
1185
 
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
1189
 
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
  msgid "Paid add-on must be deployed to Freemius."
1192
  msgstr "Paid add-on must be deployed to Freemius."
1193
 
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
  msgstr "Add-on must be deployed to WordPress.org or Freemius."
1197
 
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
  msgid "Newer Version (%s) Installed"
1200
  msgstr "Newer Version (%s) Installed"
1201
 
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
  msgid "Newer Free Version (%s) Installed"
1204
  msgstr "Newer Free Version (%s) Installed"
1205
 
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
  msgid "Latest Version Installed"
1208
  msgstr "Legfrissebb verzió telepítve"
1209
 
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Legfrissebb ingyenes verzió telepítve"
1213
 
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
+
1542
  #: templates/add-ons.php:38
1543
  msgid "View details"
1544
  msgstr "Részletek megtekintése"
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"
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"
2208
  msgid "Apply to become an affiliate"
2209
  msgstr "Apply to become an affiliate"
2210
 
2211
+ #: templates/forms/affiliation.php:107
2212
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2213
  msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2214
 
2215
+ #: templates/forms/affiliation.php:122
2216
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2217
  msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2218
 
2219
+ #: templates/forms/affiliation.php:125
2220
  msgid "Your affiliation account was temporarily suspended."
2221
  msgstr "Your affiliation account was temporarily suspended."
2222
 
2223
+ #: templates/forms/affiliation.php:128
2224
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2225
  msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2226
 
2227
+ #: templates/forms/affiliation.php:131
2228
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2229
  msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2230
 
2231
+ #: templates/forms/affiliation.php:144
2232
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2233
  msgstr "Like the %s? Become our ambassador and earn cash ;-)"
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!"
2237
  msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2238
 
2239
+ #: templates/forms/affiliation.php:148
2240
  msgid "Program Summary"
2241
  msgstr "Program Summary"
2242
 
2243
+ #: templates/forms/affiliation.php:150
2244
  msgid "%s commission when a customer purchases a new license."
2245
  msgstr "%s commission when a customer purchases a new license."
2246
 
2247
+ #: templates/forms/affiliation.php:152
2248
  msgid "Get commission for automated subscription renewals."
2249
  msgstr "Get commission for automated subscription renewals."
2250
 
2251
+ #: templates/forms/affiliation.php:155
2252
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2253
  msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2254
 
2255
+ #: templates/forms/affiliation.php:158
2256
  msgid "Unlimited commissions."
2257
  msgstr "Unlimited commissions."
2258
 
2259
+ #: templates/forms/affiliation.php:160
2260
  msgid "%s minimum payout amount."
2261
  msgstr "%s minimum payout amount."
2262
 
2263
+ #: templates/forms/affiliation.php:161
2264
  msgid "Payouts are in USD and processed monthly via PayPal."
2265
  msgstr "Payouts are in USD and processed monthly via PayPal."
2266
 
2267
+ #: templates/forms/affiliation.php:162
2268
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2269
  msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2270
 
2271
+ #: templates/forms/affiliation.php:165
2272
  msgid "Affiliate"
2273
  msgstr "Affiliate"
2274
 
2275
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2276
  msgid "Email address"
2277
  msgstr "Email cím"
2278
 
2279
+ #: templates/forms/affiliation.php:172
2280
  msgid "Full name"
2281
  msgstr "Teljes név"
2282
 
2283
+ #: templates/forms/affiliation.php:176
2284
  msgid "PayPal account email address"
2285
  msgstr "PayPal fiók email címe"
2286
 
2287
+ #: templates/forms/affiliation.php:180
2288
  msgid "Where are you going to promote the %s?"
2289
  msgstr "Where are you going to promote the %s?"
2290
 
2291
+ #: templates/forms/affiliation.php:182
2292
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2293
  msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2294
 
2295
+ #: templates/forms/affiliation.php:184
2296
  msgid "Add another domain"
2297
  msgstr "Másik domain hozzáadása"
2298
 
2299
+ #: templates/forms/affiliation.php:188
2300
  msgid "Extra Domains"
2301
  msgstr "További domainek"
2302
 
2303
+ #: templates/forms/affiliation.php:189
2304
  msgid "Extra domains where you will be marketing the product from."
2305
  msgstr "Extra domains where you will be marketing the product from."
2306
 
2307
+ #: templates/forms/affiliation.php:199
2308
  msgid "Promotion methods"
2309
  msgstr "Promotion methods"
2310
 
2311
+ #: templates/forms/affiliation.php:202
2312
  msgid "Social media (Facebook, Twitter, etc.)"
2313
  msgstr "Social media (Facebook, Twitter, etc.)"
2314
 
2315
+ #: templates/forms/affiliation.php:206
2316
  msgid "Mobile apps"
2317
  msgstr "Mobile apps"
2318
 
2319
+ #: templates/forms/affiliation.php:210
2320
  msgid "Website, email, and social media statistics (optional)"
2321
  msgstr "Weboldal, email és közösségi média statisztikák (opcionális)"
2322
 
2323
+ #: templates/forms/affiliation.php:213
2324
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2325
  msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2326
 
2327
+ #: templates/forms/affiliation.php:217
2328
  msgid "How will you promote us?"
2329
  msgstr "How will you promote us?"
2330
 
2331
+ #: templates/forms/affiliation.php:220
2332
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2333
  msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2334
 
2335
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2336
  msgid "Cancel"
2337
  msgstr "Mégsem"
2338
 
2339
+ #: templates/forms/affiliation.php:234
2340
  msgid "Become an affiliate"
2341
  msgstr "Become an affiliate"
2342
 
2410
  msgid "Plugins & themes tracking"
2411
  msgstr "Plugins & themes tracking"
2412
 
2413
+ #: templates/forms/optout.php:261
2414
  msgid "Saved"
2415
  msgstr "Saved"
2416
 
2499
  #: templates/forms/user-change.php:81
2500
  msgctxt "close window"
2501
  msgid "Dismiss"
2502
+ msgstr "Mégsem"
2503
 
2504
  #: templates/js/style-premium-theme.php:39
2505
  msgid "Premium"
2628
  msgid "switching"
2629
  msgstr "váltasz"
2630
 
2631
+ #: templates/forms/deactivation/form.php:369
2632
  msgid "Submit & %s"
2633
  msgstr "Küldés & %s"
2634
 
2635
+ #: templates/forms/deactivation/form.php:390
2636
  msgid "Kindly tell us the reason so we can improve."
2637
  msgstr "Ha elmondod az okát, tudunk fejlődni."
2638
 
2639
+ #: templates/forms/deactivation/form.php:515
2640
  msgid "Yes - %s"
2641
  msgstr "Yes - %s"
2642
 
2643
+ #: templates/forms/deactivation/form.php:522
2644
  msgid "Skip & %s"
2645
  msgstr "Kihagyás & %s"
2646
 
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,9 +1,9 @@
1
- # Copyright (C) 2019 freemius
2
  # This file is distributed under the same license as the freemius package.
3
  # Translators:
4
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
5
  # Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2019
6
- # Dario Curvino <d.curvino@gmail.com>, 2018
7
  # Tropicalista <francescopepe@email.it>, 2019
8
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
9
  # Vova Feldman <vova@freemius.com>, 2015-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-07-27 11:43+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,811 +26,835 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
  "X-Poedit-SourceCharset: UTF-8\n"
28
 
29
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
34
  msgid "Would you like to proceed with the update?"
35
  msgstr "Vuoi procedere con l'aggiornamento?"
36
 
37
- #: includes/class-freemius.php:2096
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:2098
42
  msgid "Error"
43
  msgstr "Errore"
44
 
45
- #: includes/class-freemius.php:2492
46
  msgid "I found a better %s"
47
  msgstr "Ho trovato un migliore %s"
48
 
49
- #: includes/class-freemius.php:2494
50
  msgid "What's the %s's name?"
51
  msgstr "Qual è il nome di %s?"
52
 
53
- #: includes/class-freemius.php:2500
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:2502
58
  msgid "Deactivation"
59
  msgstr "Disattivazione"
60
 
61
- #: includes/class-freemius.php:2503
62
  msgid "Theme Switch"
63
  msgstr "Cambio tema"
64
 
65
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
66
  #: templates/forms/user-change.php:29
67
  msgid "Other"
68
  msgstr "Altro"
69
 
70
- #: includes/class-freemius.php:2520
71
  msgid "I no longer need the %s"
72
  msgstr "Non ho più bisogno di %s"
73
 
74
- #: includes/class-freemius.php:2527
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:2533
79
  msgid "The %s broke my site"
80
  msgstr "%s ha rotto il mio sito"
81
 
82
- #: includes/class-freemius.php:2540
83
  msgid "The %s suddenly stopped working"
84
  msgstr "%s ha improvvisamente smesso di funzionare"
85
 
86
- #: includes/class-freemius.php:2550
87
  msgid "I can't pay for it anymore"
88
  msgstr "Non posso piú pagarlo"
89
 
90
- #: includes/class-freemius.php:2552
91
  msgid "What price would you feel comfortable paying?"
92
  msgstr "Che prezzo ritieni opportuno pagare?"
93
 
94
- #: includes/class-freemius.php:2558
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:2579
99
  msgid "The %s didn't work"
100
  msgstr "%s non funziona"
101
 
102
- #: includes/class-freemius.php:2589
103
  msgid "I couldn't understand how to make it work"
104
  msgstr "Non capisco come farlo funzionare"
105
 
106
- #: includes/class-freemius.php:2597
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:2599
111
  msgid "What feature?"
112
  msgstr "Quale funzionalitá?"
113
 
114
- #: includes/class-freemius.php:2603
115
  msgid "The %s is not working"
116
  msgstr "%s non funziona"
117
 
118
- #: includes/class-freemius.php:2605
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:2609
123
  msgid "It's not what I was looking for"
124
  msgstr "Non é quello che stavo cercando"
125
 
126
- #: includes/class-freemius.php:2611
127
  msgid "What you've been looking for?"
128
  msgstr "Che cosa stai cercando?"
129
 
130
- #: includes/class-freemius.php:2615
131
  msgid "The %s didn't work as expected"
132
  msgstr "%s non ha funzionato come mi aspettavo"
133
 
134
- #: includes/class-freemius.php:2617
135
  msgid "What did you expect?"
136
  msgstr "Che cosa ti aspettavi?"
137
 
138
- #: includes/class-freemius.php3472, templates/debug.php:20
139
  msgid "Freemius Debug"
140
  msgstr "Debug Freemius"
141
 
142
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
155
  msgid "Yes - do your thing"
156
  msgstr "Sì - fai pure"
157
 
158
- #: includes/class-freemius.php:4343
159
  msgid "No - just deactivate"
160
  msgstr "No - disattiva e basta"
161
 
162
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
163
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
164
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
165
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
166
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
167
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
168
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
169
- #: includes/class-freemius.php21690, templates/add-ons.php:57
170
  msgctxt "exclamation"
171
  msgid "Oops"
172
  msgstr "Ops"
173
 
174
- #: includes/class-freemius.php:4457
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:4879
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:4880
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.php5053, includes/class-freemius.php5078,
189
- #: includes/class-freemius.php:20578
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:5777
194
  msgid "Premium %s version was successfully activated."
195
  msgstr "La versione 1%s Permium è stata attivata con successo."
196
 
197
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
198
  msgctxt ""
199
  msgid "W00t"
200
  msgstr "Forte"
201
 
202
- #: includes/class-freemius.php:5804
203
  msgid "You have a %s license."
204
  msgstr "Hai la licenza %s."
205
 
206
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
207
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
208
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
209
- #: includes/class-freemius.php:20328
210
  msgctxt "interjection expressing joy or exuberance"
211
  msgid "Yee-haw"
212
  msgstr "Evvai"
213
 
214
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
228
  msgid "Purchase License"
229
  msgstr "Acquista licenza"
230
 
231
- #: includes/class-freemius.php7047, 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:7051
236
  msgid "start the trial"
237
  msgstr "Inizia il periodo di prova gratuito"
238
 
239
- #: includes/class-freemius.php7052, templates/connect.php:175
240
  msgid "complete the install"
241
  msgstr "completa l'installazione"
242
 
243
- #: includes/class-freemius.php:7164
244
  msgid "You are just one step away - %s"
245
  msgstr "Sei a un passo dalla fine - %s"
246
 
247
- #: includes/class-freemius.php:7167
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:7245
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:7249
257
  msgid "Opt in to make \"%s\" better!"
258
  msgstr "Abilita \"%s\" per renderlo migliore!"
259
 
260
- #: includes/class-freemius.php:7681
261
  msgid "The upgrade of %s was successfully completed."
262
  msgstr "L'aggiornamento di %s è stato completato con successo."
263
 
264
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
265
- #: includes/class-fs-plugin-updater.php1239,
266
- #: includes/class-fs-plugin-updater.php1246,
267
  #: templates/auto-installation.php:32
268
  msgid "Add-On"
269
  msgstr "Add-on"
270
 
271
- #: includes/class-freemius.php9910, templates/account.php343,
272
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
273
  msgid "Plugin"
274
  msgstr "Plugin"
275
 
276
- #: includes/class-freemius.php9911, templates/account.php344,
277
- #: templates/account.php352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  msgid "An unknown error has occurred while trying to set the user's beta mode."
284
  msgstr "Un errore sconosciuto è avvenuto durante l'attivazione della modalità beta."
285
 
286
- #: includes/class-freemius.php:12904
287
  msgid "Invalid new user ID or email address."
288
  msgstr "Invalid new user ID or email address."
289
 
290
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
291
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
292
  msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
293
 
294
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
295
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
296
  msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
297
 
298
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
299
  msgid "Change Ownership"
300
  msgstr "Cambia Proprietario"
301
 
302
- #: includes/class-freemius.php:13438
303
  msgid "Invalid site details collection."
304
  msgstr "Raccolta dati siti non valida."
305
 
306
- #: includes/class-freemius.php:13558
307
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
308
  msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
309
 
310
- #: includes/class-freemius.php:13560
311
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
312
  msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
313
 
314
- #: includes/class-freemius.php:13834
315
  msgid "Account is pending activation."
316
  msgstr "Account in attesa di attivazione."
317
 
318
- #: includes/class-freemius.php13946,
319
  #: templates/forms/premium-versions-upgrade-handler.php:47
320
  msgid "Buy a license now"
321
  msgstr "Compra una licenza ora"
322
 
323
- #: includes/class-freemius.php13958,
324
  #: templates/forms/premium-versions-upgrade-handler.php:46
325
  msgid "Renew your license now"
326
  msgstr "Rinnova la tua licenza ora"
327
 
328
- #: includes/class-freemius.php:13962
329
  msgid "%s to access version %s security & feature updates, and support."
330
  msgstr "%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove funzionalità e supporto."
331
 
332
- #: includes/class-freemius.php:16387
333
  msgid "%s activation was successfully completed."
334
  msgstr "%s è stato attivato con successo."
335
 
336
- #: includes/class-freemius.php:16401
337
  msgid "Your account was successfully activated with the %s plan."
338
  msgstr "Il tuo account è stato attivato correttamente con il piano %s."
339
 
340
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
341
  msgid "Your trial has been successfully started."
342
  msgstr "La versione di prova è stata avviata correttamente."
343
 
344
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
345
- #: includes/class-freemius.php:17258
346
  msgid "Couldn't activate %s."
347
  msgstr "Non é stato possibile attivare %s."
348
 
349
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
350
- #: includes/class-freemius.php:17259
351
  msgid "Please contact us with the following message:"
352
  msgstr "Contattaci con il seguente messaggio:"
353
 
354
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
355
  msgid "An unknown error has occurred."
356
  msgstr "Un errore sconosciuto è avvenuto."
357
 
358
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
359
  msgid "Upgrade"
360
  msgstr "Aggiornamento"
361
 
362
- #: includes/class-freemius.php:17622
363
  msgid "Start Trial"
364
  msgstr "Inizia il periodo di prova gratuito"
365
 
366
- #: includes/class-freemius.php:17624
367
  msgid "Pricing"
368
  msgstr "Prezzi"
369
 
370
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
371
  msgid "Affiliation"
372
  msgstr "Affiliazione"
373
 
374
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
375
- #: templates/account.php191, templates/debug.php:324
376
  msgid "Account"
377
  msgstr "Account"
378
 
379
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
380
  #: includes/customizer/class-fs-customizer-support-section.php:60
381
  msgid "Contact Us"
382
  msgstr "Contattaci"
383
 
384
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
385
- #: includes/class-freemius.php22603, templates/account.php119,
386
  #: templates/account/partials/addon.php:44
387
  msgid "Add-Ons"
388
  msgstr "Addon"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow left icon"
392
  msgid "&#x2190;"
393
  msgstr "&#x2190;"
394
 
395
- #: includes/class-freemius.php:17799
396
  msgctxt "ASCII arrow right icon"
397
  msgid "&#x27a4;"
398
  msgstr "&#x27a4;"
399
 
400
- #: includes/class-freemius.php17801, templates/pricing.php:103
401
  msgctxt "noun"
402
  msgid "Pricing"
403
  msgstr "Prezzi"
404
 
405
- #: includes/class-freemius.php18014,
406
  #: includes/customizer/class-fs-customizer-support-section.php:67
407
  msgid "Support Forum"
408
  msgstr "Forum di supporto"
409
 
410
- #: includes/class-freemius.php:18988
411
  msgid "Your email has been successfully verified - you are AWESOME!"
412
  msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
413
 
414
- #: includes/class-freemius.php:18989
415
  msgctxt "a positive response"
416
  msgid "Right on"
417
  msgstr "Sì"
418
 
419
- #: includes/class-freemius.php:19493
420
  msgid "seems like the key you entered doesn't match our records."
421
- msgstr "seems like the key you entered doesn't match our records."
422
 
423
- #: includes/class-freemius.php:19517
424
  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."
425
- 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."
426
 
427
- #: includes/class-freemius.php:19735
428
  msgid "Your %s Add-on plan was successfully upgraded."
429
  msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
430
 
431
- #: includes/class-freemius.php:19737
432
  msgid "%s Add-on was successfully purchased."
433
  msgstr "L' add-on %s è stato acquistato con successo."
434
 
435
- #: includes/class-freemius.php:19740
436
  msgid "Download the latest version"
437
  msgstr "Scarica l'ultima versione"
438
 
439
- #: includes/class-freemius.php:19826
440
  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"
441
  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."
442
 
443
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
444
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
445
  msgid "Error received from the server:"
446
  msgstr "Errore ricevuto dal server:"
447
 
448
- #: includes/class-freemius.php:19842
449
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
450
  msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
451
 
452
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
453
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
454
  msgctxt ""
455
  msgid "Hmm"
456
  msgstr "Uhm"
457
 
458
- #: includes/class-freemius.php:20069
459
  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."
460
  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."
461
 
462
- #: includes/class-freemius.php20070, templates/account.php121,
463
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
464
  msgctxt "trial period"
465
  msgid "Trial"
466
  msgstr "Prova gratuita"
467
 
468
- #: includes/class-freemius.php:20075
469
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
470
  msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
471
 
472
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
473
  msgid "Please contact us here"
474
  msgstr "Contattaci qui"
475
 
476
- #: includes/class-freemius.php:20090
477
  msgid "Your plan was successfully activated."
478
  msgstr "Il tuo piano è stato attivato con successo."
479
 
480
- #: includes/class-freemius.php:20091
481
  msgid "Your plan was successfully upgraded."
482
  msgstr "Il piano è stato aggiornato con successo."
483
 
484
- #: includes/class-freemius.php:20108
485
  msgid "Your plan was successfully changed to %s."
486
  msgstr "Il piano è stato cambiato con successo a %s."
487
 
488
- #: includes/class-freemius.php:20124
489
  msgid "Your license has expired. You can still continue using the free %s forever."
490
  msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
491
 
492
- #: includes/class-freemius.php:20126
493
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
494
  msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
495
 
496
- #: includes/class-freemius.php:20134
497
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
498
  msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
499
 
500
- #: includes/class-freemius.php:20147
501
  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."
502
  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."
503
 
504
- #: includes/class-freemius.php:20173
505
  msgid "Your free trial has expired. You can still continue using all our free features."
506
  msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
507
 
508
- #: includes/class-freemius.php:20175
509
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
510
  msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
511
 
512
- #: includes/class-freemius.php:20283
513
  msgid "It looks like the license could not be activated."
514
  msgstr "Sembra che la licenza non possa essere attivata."
515
 
516
- #: includes/class-freemius.php:20325
517
  msgid "Your license was successfully activated."
518
  msgstr "La tua licenza è stata attivata correttamente."
519
 
520
- #: includes/class-freemius.php:20351
521
  msgid "It looks like your site currently doesn't have an active license."
522
  msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
523
 
524
- #: includes/class-freemius.php:20375
525
  msgid "It looks like the license deactivation failed."
526
  msgstr "Sembra che la disattivazione della licenza non sia riuscita."
527
 
528
- #: includes/class-freemius.php:20404
529
  msgid "Your %s license was successfully deactivated."
530
  msgstr "Your %s license was successfully deactivated."
531
 
532
- #: includes/class-freemius.php:20405
533
  msgid "Your license was successfully deactivated, you are back to the %s plan."
534
  msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
535
 
536
- #: includes/class-freemius.php:20408
537
  msgid "O.K"
538
  msgstr "OK"
539
 
540
- #: includes/class-freemius.php:20461
541
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
542
  msgstr "Sembra che stai avendo dei problemi temporanei con la cancellazione della sottoscrizione. Prova nuovamente tra pochi minuti."
543
 
544
- #: includes/class-freemius.php:20470
545
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
546
  msgstr "La tua sottoscrizione è stata cancellata con successo. La licenza del piano %sscadrà in %s."
547
 
548
- #: includes/class-freemius.php:20512
549
  msgid "You are already running the %s in a trial mode."
550
  msgstr "Stai già usando %s in modalità prova."
551
 
552
- #: includes/class-freemius.php:20523
553
  msgid "You already utilized a trial before."
554
  msgstr "Hai già utilizzato una prova gratuita in passato."
555
 
556
- #: includes/class-freemius.php:20537
557
  msgid "Plan %s do not exist, therefore, can't start a trial."
558
  msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
559
 
560
- #: includes/class-freemius.php:20548
561
  msgid "Plan %s does not support a trial period."
562
  msgstr "Il piano %s non supporta il periodo di prova."
563
 
564
- #: includes/class-freemius.php:20559
565
  msgid "None of the %s's plans supports a trial period."
566
  msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
567
 
568
- #: includes/class-freemius.php:20609
569
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
570
  msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
571
 
572
- #: includes/class-freemius.php:20645
573
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
574
  msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
575
 
576
- #: includes/class-freemius.php:20664
577
  msgid "Your %s free trial was successfully cancelled."
578
  msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
579
 
580
- #: includes/class-freemius.php:20980
581
  msgid "Version %s was released."
582
  msgstr "La versione %s é stata rilasciata."
583
 
584
- #: includes/class-freemius.php:20980
585
  msgid "Please download %s."
586
  msgstr "Scarica %s."
587
 
588
- #: includes/class-freemius.php:20987
589
  msgid "the latest %s version here"
590
  msgstr "l'ultima versione %s é quì"
591
 
592
- #: includes/class-freemius.php:20992
593
  msgid "New"
594
  msgstr "Nuovo"
595
 
596
- #: includes/class-freemius.php:20997
597
  msgid "Seems like you got the latest release."
598
  msgstr "Sembra che tu abbia la versione più recente."
599
 
600
- #: includes/class-freemius.php:20998
601
  msgid "You are all good!"
602
  msgstr "Sei fantastico!"
603
 
604
- #: includes/class-freemius.php:21301
605
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
606
  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."
607
 
608
- #: includes/class-freemius.php:21441
609
  msgid "Site successfully opted in."
610
  msgstr "Sito accettato con successo."
611
 
612
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
613
  msgid "Awesome"
614
  msgstr "Fantastico"
615
 
616
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
617
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
618
  msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
619
 
620
- #: includes/class-freemius.php:21459
621
  msgid "Thank you!"
622
  msgstr "Grazie!"
623
 
624
- #: includes/class-freemius.php:21466
625
  msgid "We will no longer be sending any usage data of %s on %s to %s."
626
  msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
627
 
628
- #: includes/class-freemius.php:21612
629
  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."
630
  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."
631
 
632
- #: includes/class-freemius.php:21618
633
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
634
  msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
635
 
636
- #: includes/class-freemius.php:21623
637
  msgid "%s is the new owner of the account."
638
  msgstr "%s è il nuovo proprietario dell'account."
639
 
640
- #: includes/class-freemius.php:21625
641
  msgctxt "as congratulations"
642
  msgid "Congrats"
643
  msgstr "Congratulazioni"
644
 
645
- #: includes/class-freemius.php:21661
646
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
647
  msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
648
 
649
- #: includes/class-freemius.php:21673
650
  msgid "Please provide your full name."
651
  msgstr "Per favore inserisci il tuo nome completo."
652
 
653
- #: includes/class-freemius.php:21678
654
  msgid "Your name was successfully updated."
655
  msgstr "Il tuo nome è stato aggiornato correttamente."
656
 
657
- #: includes/class-freemius.php:21739
658
  msgid "You have successfully updated your %s."
659
  msgstr "Hai aggiornato con successo il tuo %s."
660
 
661
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
662
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
663
  msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
664
 
665
- #: includes/class-freemius.php:21880
666
  msgctxt "advance notice of something that will need attention."
667
  msgid "Heads up"
668
  msgstr "Attenzione"
669
 
670
- #: includes/class-freemius.php:22339
671
  msgctxt "exclamation"
672
  msgid "Hey"
673
  msgstr "Hey"
674
 
675
- #: includes/class-freemius.php:22339
676
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
677
  msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
678
 
679
- #: includes/class-freemius.php:22347
680
  msgid "No commitment for %s days - cancel anytime!"
681
  msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
682
 
683
- #: includes/class-freemius.php:22348
684
  msgid "No credit card required"
685
  msgstr "Nessuna carta di credito richiesta"
686
 
687
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
688
  msgctxt "call to action"
689
  msgid "Start free trial"
690
  msgstr "Inizia il periodo di prova gratuito"
691
 
692
- #: includes/class-freemius.php:22432
693
  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!"
694
  msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
695
 
696
- #: includes/class-freemius.php:22441
697
  msgid "Learn more"
698
  msgstr "Scopri altro"
699
 
700
- #: includes/class-freemius.php22627, templates/account.php507,
701
- #: templates/account.php657, templates/connect.php179,
702
- #: templates/connect.php455, templates/forms/license-activation.php27,
703
  #: templates/account/partials/addon.php:321
704
  msgid "Activate License"
705
  msgstr "Attiva licenza"
706
 
707
- #: includes/class-freemius.php22628, templates/account.php601,
708
- #: templates/account.php656, templates/account/partials/addon.php322,
709
  #: templates/account/partials/site.php:271
710
  msgid "Change License"
711
  msgstr "Cambia licenza"
712
 
713
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
714
  msgid "Opt Out"
715
  msgstr "Cancella iscrizione"
716
 
717
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
718
  #: templates/account/partials/site.php49,
719
  #: templates/account/partials/site.php:169
720
  msgid "Opt In"
721
  msgstr "Iscriviti"
722
 
723
- #: includes/class-freemius.php:22973
724
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
725
  msgstr "La versione a pagamento di %1$sè già installata. Attiva questione versione per iniziare ad usare le funzionalità di %2$s.%3$s"
726
 
727
- #: includes/class-freemius.php:22981
728
  msgid "Activate %s features"
729
  msgstr "Attiva le funzionalità di %s"
730
 
731
- #: includes/class-freemius.php:22994
732
  msgid "Please follow these steps to complete the upgrade"
733
  msgstr "Segui i passi seguenti per completare l'aggiornamento"
734
 
735
- #: includes/class-freemius.php:22998
736
  msgid "Download the latest %s version"
737
  msgstr "Scarica l'ultima versione di %s"
738
 
739
- #: includes/class-freemius.php:23002
740
  msgid "Upload and activate the downloaded version"
741
  msgstr "Carica e attiva la versione scaricata"
742
 
743
- #: includes/class-freemius.php:23004
744
  msgid "How to upload and activate?"
745
  msgstr "Come faccio a caricare ed attivare?"
746
 
747
- #: includes/class-freemius.php:23138
748
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
749
  msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
750
 
751
- #: includes/class-freemius.php:23299
752
  msgid "Auto installation only works for opted-in users."
753
  msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
754
 
755
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
756
- #: includes/class-fs-plugin-updater.php1218,
757
- #: includes/class-fs-plugin-updater.php:1232
758
  msgid "Invalid module ID."
759
  msgstr "ID modulo non valida."
760
 
761
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
762
  msgid "Premium version already active."
763
  msgstr "Versione Premium già attiva."
764
 
765
- #: includes/class-freemius.php:23325
766
  msgid "You do not have a valid license to access the premium version."
767
  msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
768
 
769
- #: includes/class-freemius.php:23332
770
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
771
  msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
772
 
773
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
774
  msgid "Premium add-on version already installed."
775
  msgstr "Versione Premium dell'add-on già installata."
776
 
777
- #: includes/class-freemius.php:23700
778
  msgid "View paid features"
779
  msgstr "Vedi funzionalità a pagamento"
780
 
781
- #: includes/class-freemius.php:24022
782
  msgid "Thank you so much for using %s and its add-ons!"
783
  msgstr "Grazie per utilizzare %se i suoi addon!"
784
 
785
- #: includes/class-freemius.php:24023
786
  msgid "Thank you so much for using %s!"
787
  msgstr "Grazie per utilizzare %s!"
788
 
789
- #: includes/class-freemius.php:24029
790
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
791
  msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
792
 
793
- #: includes/class-freemius.php:24033
794
  msgid "Thank you so much for using our products!"
795
  msgstr "Grazie per utilizzare i nostri prodotti!"
796
 
797
- #: includes/class-freemius.php:24034
798
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
799
  msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
800
 
801
- #: includes/class-freemius.php:24053
802
  msgid "%s and its add-ons"
803
  msgstr "%se i suoi addon"
804
 
805
- #: includes/class-freemius.php:24062
806
  msgid "Products"
807
  msgstr "Prodotti"
808
 
809
- #: includes/class-freemius.php24069, templates/connect.php:280
810
  msgid "Yes"
811
  msgstr "Si"
812
 
813
- #: includes/class-freemius.php24070, templates/connect.php:281
814
  msgid "send me security & feature updates, educational content and offers."
815
  msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
816
 
817
- #: includes/class-freemius.php24071, templates/connect.php:286
818
  msgid "No"
819
  msgstr "No"
820
 
821
- #: includes/class-freemius.php24073, templates/connect.php:288
822
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
823
  msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
824
 
825
- #: includes/class-freemius.php:24083
826
  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 :-)"
827
  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."
828
 
829
- #: includes/class-freemius.php24085, templates/connect.php:295
830
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
831
  msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
832
 
833
- #: includes/class-freemius.php:24367
834
  msgid "License key is empty."
835
  msgstr "La chiave licenza è vuota."
836
 
@@ -863,332 +887,332 @@ msgstr "nuova versione"
863
  msgid "Important Upgrade Notice:"
864
  msgstr "Avviso Importante di aggiornamento:"
865
 
866
- #: includes/class-fs-plugin-updater.php:1283
867
  msgid "Installing plugin: %s"
868
  msgstr "Installazione plugin: %s"
869
 
870
- #: includes/class-fs-plugin-updater.php:1324
871
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
872
  msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
873
 
874
- #: includes/class-fs-plugin-updater.php:1506
875
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
876
  msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
877
 
878
- #: includes/fs-plugin-info-dialog.php:535
879
  msgid "Purchase More"
880
  msgstr "Continua a comprare"
881
 
882
- #: includes/fs-plugin-info-dialog.php536,
883
  #: templates/account/partials/addon.php:385
884
  msgctxt "verb"
885
  msgid "Purchase"
886
  msgstr "Acquisto"
887
 
888
- #: includes/fs-plugin-info-dialog.php:540
889
  msgid "Start my free %s"
890
  msgstr "Inizia la mia %s"
891
 
892
- #: includes/fs-plugin-info-dialog.php:738
893
  msgid "Install Free Version Update Now"
894
  msgstr "Installa l'ultima versione gratuita"
895
 
896
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
897
  msgid "Install Update Now"
898
  msgstr "Installa l'aggiornamento ora"
899
 
900
- #: includes/fs-plugin-info-dialog.php:748
901
  msgid "Install Free Version Now"
902
  msgstr "Installa la versione gratuita ora"
903
 
904
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
905
  #: templates/auto-installation.php111,
906
  #: templates/account/partials/addon.php365,
907
  #: templates/account/partials/addon.php:418
908
  msgid "Install Now"
909
  msgstr "Installa ora"
910
 
911
- #: includes/fs-plugin-info-dialog.php:765
912
  msgctxt "as download latest version"
913
  msgid "Download Latest Free Version"
914
  msgstr "Scarica l'ultima versione gratuita"
915
 
916
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
917
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
918
  msgctxt "as download latest version"
919
  msgid "Download Latest"
920
  msgstr "Scarica l'ultima versione"
921
 
922
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
923
  #: templates/account/partials/addon.php356,
924
  #: templates/account/partials/addon.php:412
925
  msgid "Activate this add-on"
926
  msgstr "Attivare questo addon"
927
 
928
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
929
  msgid "Activate Free Version"
930
  msgstr "Attiva versione gratuita"
931
 
932
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
933
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
934
  msgid "Activate"
935
  msgstr "Attiva"
936
 
937
- #: includes/fs-plugin-info-dialog.php:994
938
  msgctxt "Plugin installer section title"
939
  msgid "Description"
940
  msgstr "Descrizione"
941
 
942
- #: includes/fs-plugin-info-dialog.php:995
943
  msgctxt "Plugin installer section title"
944
  msgid "Installation"
945
  msgstr "Installazione"
946
 
947
- #: includes/fs-plugin-info-dialog.php:996
948
  msgctxt "Plugin installer section title"
949
  msgid "FAQ"
950
  msgstr "FAQ"
951
 
952
- #: includes/fs-plugin-info-dialog.php997,
953
  #: templates/plugin-info/description.php:55
954
  msgid "Screenshots"
955
  msgstr "Screenshot"
956
 
957
- #: includes/fs-plugin-info-dialog.php:998
958
  msgctxt "Plugin installer section title"
959
  msgid "Changelog"
960
  msgstr "Changelog"
961
 
962
- #: includes/fs-plugin-info-dialog.php:999
963
  msgctxt "Plugin installer section title"
964
  msgid "Reviews"
965
  msgstr "Recensioni"
966
 
967
- #: includes/fs-plugin-info-dialog.php:1000
968
  msgctxt "Plugin installer section title"
969
  msgid "Other Notes"
970
  msgstr "Altre note"
971
 
972
- #: includes/fs-plugin-info-dialog.php:1015
973
  msgctxt "Plugin installer section title"
974
  msgid "Features & Pricing"
975
  msgstr "Caratteristiche & prezzi"
976
 
977
- #: includes/fs-plugin-info-dialog.php:1025
978
  msgid "Plugin Install"
979
  msgstr "Installazione del plugin"
980
 
981
- #: includes/fs-plugin-info-dialog.php:1097
982
  msgctxt "e.g. Professional Plan"
983
  msgid "%s Plan"
984
  msgstr "Piano %s"
985
 
986
- #: includes/fs-plugin-info-dialog.php:1123
987
  msgctxt "e.g. the best product"
988
  msgid "Best"
989
  msgstr "Migliore"
990
 
991
- #: includes/fs-plugin-info-dialog.php1129,
992
- #: includes/fs-plugin-info-dialog.php:1149
993
  msgctxt "as every month"
994
  msgid "Monthly"
995
  msgstr "Mensilmente"
996
 
997
- #: includes/fs-plugin-info-dialog.php:1132
998
  msgctxt "as once a year"
999
  msgid "Annual"
1000
  msgstr "Annuale"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php:1135
1003
  msgid "Lifetime"
1004
  msgstr "Tutta la vita"
1005
 
1006
- #: includes/fs-plugin-info-dialog.php1149,
1007
- #: includes/fs-plugin-info-dialog.php1151,
1008
- #: includes/fs-plugin-info-dialog.php:1153
1009
  msgctxt "e.g. billed monthly"
1010
  msgid "Billed %s"
1011
  msgstr "Fatturato %s"
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1151
1014
  msgctxt "as once a year"
1015
  msgid "Annually"
1016
  msgstr "Annualmente"
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1153
1019
  msgctxt "as once a year"
1020
  msgid "Once"
1021
  msgstr "Una volta"
1022
 
1023
- #: includes/fs-plugin-info-dialog.php:1159
1024
  msgid "Single Site License"
1025
  msgstr "Licenza per sito singolo"
1026
 
1027
- #: includes/fs-plugin-info-dialog.php:1161
1028
  msgid "Unlimited Licenses"
1029
  msgstr "Licenze illimitate"
1030
 
1031
- #: includes/fs-plugin-info-dialog.php:1163
1032
  msgid "Up to %s Sites"
1033
  msgstr "Fino a %s siti"
1034
 
1035
- #: includes/fs-plugin-info-dialog.php1173,
1036
  #: templates/plugin-info/features.php:82
1037
  msgctxt "as monthly period"
1038
  msgid "mo"
1039
  msgstr "mese"
1040
 
1041
- #: includes/fs-plugin-info-dialog.php1180,
1042
  #: templates/plugin-info/features.php:80
1043
  msgctxt "as annual period"
1044
  msgid "year"
1045
  msgstr "anno"
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:1234
1048
  msgctxt "noun"
1049
  msgid "Price"
1050
  msgstr "Prezzo"
1051
 
1052
- #: includes/fs-plugin-info-dialog.php:1282
1053
  msgid "Save %s"
1054
  msgstr "Risparmia %s"
1055
 
1056
- #: includes/fs-plugin-info-dialog.php:1292
1057
  msgid "No commitment for %s - cancel anytime"
1058
  msgstr "Nessun impegno con %s - cancella quando vuoi"
1059
 
1060
- #: includes/fs-plugin-info-dialog.php:1295
1061
  msgid "After your free %s, pay as little as %s"
1062
  msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1063
 
1064
- #: includes/fs-plugin-info-dialog.php:1306
1065
  msgid "Details"
1066
  msgstr "Dettagli"
1067
 
1068
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1069
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1070
  #: templates/account/partials/addon.php:36
1071
  msgctxt "product version"
1072
  msgid "Version"
1073
  msgstr "Versione"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1317
1076
  msgctxt "as the plugin author"
1077
  msgid "Author"
1078
  msgstr "Autore"
1079
 
1080
- #: includes/fs-plugin-info-dialog.php:1324
1081
  msgid "Last Updated"
1082
  msgstr "Ultimo aggiornamento"
1083
 
1084
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1085
  msgctxt "x-ago"
1086
  msgid "%s ago"
1087
  msgstr "%s fa"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php:1338
1090
  msgid "Requires WordPress Version"
1091
  msgstr "Richiede la versione di WordPress"
1092
 
1093
- #: includes/fs-plugin-info-dialog.php:1339
1094
  msgid "%s or higher"
1095
  msgstr "%s o superiore"
1096
 
1097
- #: includes/fs-plugin-info-dialog.php:1346
1098
  msgid "Compatible up to"
1099
  msgstr "Compatibile fino a"
1100
 
1101
- #: includes/fs-plugin-info-dialog.php:1354
1102
  msgid "Downloaded"
1103
  msgstr "Scaricato"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php:1358
1106
  msgid "%s time"
1107
  msgstr "% volta"
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1360
1110
  msgid "%s times"
1111
  msgstr "%s volte"
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1370
1114
  msgid "WordPress.org Plugin Page"
1115
  msgstr "Pagina dei plugin di WordPress.org"
1116
 
1117
- #: includes/fs-plugin-info-dialog.php:1378
1118
  msgid "Plugin Homepage"
1119
  msgstr "Homepage del plugin"
1120
 
1121
- #: includes/fs-plugin-info-dialog.php1386,
1122
- #: includes/fs-plugin-info-dialog.php:1468
1123
  msgid "Donate to this plugin"
1124
  msgstr "Fai una donazione a questo plugin"
1125
 
1126
- #: includes/fs-plugin-info-dialog.php:1393
1127
  msgid "Average Rating"
1128
  msgstr "Valutazione media"
1129
 
1130
- #: includes/fs-plugin-info-dialog.php:1400
1131
  msgid "based on %s"
1132
  msgstr "basato su %s"
1133
 
1134
- #: includes/fs-plugin-info-dialog.php:1404
1135
  msgid "%s rating"
1136
  msgstr "%s valutazione"
1137
 
1138
- #: includes/fs-plugin-info-dialog.php:1406
1139
  msgid "%s ratings"
1140
  msgstr "%s valutazioni"
1141
 
1142
- #: includes/fs-plugin-info-dialog.php:1421
1143
  msgid "%s star"
1144
  msgstr "%s stella"
1145
 
1146
- #: includes/fs-plugin-info-dialog.php:1423
1147
  msgid "%s stars"
1148
  msgstr "%s stelle"
1149
 
1150
- #: includes/fs-plugin-info-dialog.php:1434
1151
  msgid "Click to see reviews that provided a rating of %s"
1152
  msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1153
 
1154
- #: includes/fs-plugin-info-dialog.php:1447
1155
  msgid "Contributors"
1156
  msgstr "Contributori"
1157
 
1158
- #: includes/fs-plugin-info-dialog.php1476,
1159
- #: includes/fs-plugin-info-dialog.php:1478
1160
  msgid "Warning"
1161
  msgstr "Avviso"
1162
 
1163
- #: includes/fs-plugin-info-dialog.php:1476
1164
  msgid "This plugin has not been tested with your current version of WordPress."
1165
  msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1166
 
1167
- #: includes/fs-plugin-info-dialog.php:1478
1168
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1169
  msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1170
 
1171
- #: includes/fs-plugin-info-dialog.php:1497
1172
  msgid "Paid add-on must be deployed to Freemius."
1173
  msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1174
 
1175
- #: includes/fs-plugin-info-dialog.php:1498
1176
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1177
  msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1178
 
1179
- #: includes/fs-plugin-info-dialog.php:1519
1180
  msgid "Newer Version (%s) Installed"
1181
  msgstr "Versione più recente (%s) installata"
1182
 
1183
- #: includes/fs-plugin-info-dialog.php:1520
1184
  msgid "Newer Free Version (%s) Installed"
1185
  msgstr "Nuova versione gratuita (%s) installata"
1186
 
1187
- #: includes/fs-plugin-info-dialog.php:1527
1188
  msgid "Latest Version Installed"
1189
  msgstr "Versione più recente installata"
1190
 
1191
- #: includes/fs-plugin-info-dialog.php:1528
1192
  msgid "Latest Free Version Installed"
1193
  msgstr "Ultima versione gratuita installata"
1194
 
@@ -1295,223 +1319,231 @@ msgstr "Piano"
1295
  msgid "Bundle Plan"
1296
  msgstr "Piano Bundle"
1297
 
1298
- #: templates/account.php:199
1299
  msgid "Free Trial"
1300
  msgstr "Prova gratuita"
1301
 
1302
- #: templates/account.php:210
1303
  msgid "Account Details"
1304
  msgstr "Dettagli dell'account"
1305
 
1306
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1307
  msgid "Start Debug"
1308
- msgstr "Start Debug"
1309
 
1310
- #: templates/account.php:219
1311
  msgid "Stop Debug"
1312
- msgstr "Stop Debug"
1313
 
1314
- #: templates/account.php:226
1315
  msgid "Billing & Invoices"
1316
  msgstr "Ricevute e Fatture"
1317
 
1318
- #: templates/account.php:237
1319
  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?"
1320
  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?"
1321
 
1322
- #: templates/account.php:239
1323
  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?"
1324
  msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1325
 
1326
- #: templates/account.php:242
1327
  msgid "Delete Account"
1328
  msgstr "Elimina Account"
1329
 
1330
- #: templates/account.php254, templates/account/partials/addon.php231,
1331
  #: templates/account/partials/deactivate-license-button.php:35
1332
  msgid "Deactivate License"
1333
  msgstr "Disattiva licenza"
1334
 
1335
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1336
  msgid "Are you sure you want to proceed?"
1337
  msgstr "Sei sicuro di voler procedere?"
1338
 
1339
- #: templates/account.php277, templates/account/partials/addon.php:255
1340
  msgid "Cancel Subscription"
1341
  msgstr "Annulla sottoscrizione"
1342
 
1343
- #: templates/account.php306, templates/account/partials/addon.php:340
1344
  msgctxt "as synchronize"
1345
  msgid "Sync"
1346
  msgstr "Sincronizza"
1347
 
1348
- #: templates/account.php321, templates/debug.php:505
1349
  msgid "Name"
1350
  msgstr "Nome"
1351
 
1352
- #: templates/account.php327, templates/debug.php:506
1353
  msgid "Email"
1354
  msgstr "Email"
1355
 
1356
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1357
  msgid "User ID"
1358
  msgstr "ID utente"
1359
 
1360
- #: templates/account.php352, templates/account.php670,
1361
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1362
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1363
  #: templates/debug.php632, templates/account/payments.php35,
1364
  #: templates/debug/logger.php:21
1365
  msgid "ID"
1366
  msgstr "ID"
1367
 
1368
- #: templates/account.php:359
1369
  msgid "Site ID"
1370
  msgstr "ID del sito"
1371
 
1372
- #: templates/account.php:362
1373
  msgid "No ID"
1374
  msgstr "Nessun ID"
1375
 
1376
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1377
  #: templates/debug.php456, templates/debug.php508,
1378
  #: templates/account/partials/site.php:227
1379
  msgid "Public Key"
1380
  msgstr "Chiave pubblica"
1381
 
1382
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1383
  #: templates/debug.php509, templates/account/partials/site.php:239
1384
  msgid "Secret Key"
1385
  msgstr "Chiave segreta"
1386
 
1387
- #: templates/account.php:376
1388
  msgctxt "as secret encryption key missing"
1389
  msgid "No Secret"
1390
  msgstr "Nessuna chiave"
1391
 
1392
- #: templates/account.php403, templates/account/partials/site.php120,
1393
  #: templates/account/partials/site.php:122
1394
  msgid "Trial"
1395
  msgstr "Prova gratuita"
1396
 
1397
- #: templates/account.php430, templates/debug.php561,
1398
  #: templates/account/partials/site.php:260
1399
  msgid "License Key"
1400
  msgstr "Chiave della licenza"
1401
 
1402
- #: templates/account.php:461
1403
  msgid "Join the Beta program"
1404
  msgstr "Entra nel programma Beta"
1405
 
1406
- #: templates/account.php:467
1407
  msgid "not verified"
1408
  msgstr "non verificato"
1409
 
1410
- #: templates/account.php476, templates/account/partials/addon.php:190
1411
  msgid "Expired"
1412
  msgstr "Scaduto"
1413
 
1414
- #: templates/account.php:536
1415
  msgid "Premium version"
1416
  msgstr "Versione premium"
1417
 
1418
- #: templates/account.php:538
1419
  msgid "Free version"
1420
  msgstr "Versione gratuita"
1421
 
1422
- #: templates/account.php:550
1423
  msgid "Verify Email"
1424
  msgstr "Verifica email"
1425
 
1426
- #: templates/account.php:564
1427
  msgid "Download %s Version"
1428
  msgstr "Scarica la versione %s"
1429
 
1430
- #: templates/account.php:580
1431
  msgid "Download Paid Version"
1432
  msgstr "Download Paid Version"
1433
 
1434
- #: templates/account.php598, templates/account.php853,
1435
  #: templates/account/partials/site.php248,
1436
  #: templates/account/partials/site.php:270
1437
  msgctxt "verb"
1438
  msgid "Show"
1439
  msgstr "Mostra"
1440
 
1441
- #: templates/account.php:613
1442
  msgid "What is your %s?"
1443
  msgstr "Qual è il tuo %s?"
1444
 
1445
- #: templates/account.php621, templates/account/billing.php:21
1446
  msgctxt "verb"
1447
  msgid "Edit"
1448
  msgstr "Modifica"
1449
 
1450
- #: templates/account.php625, templates/forms/user-change.php:27
1451
  msgid "Change User"
1452
  msgstr "Change User"
1453
 
1454
- #: templates/account.php:649
1455
  msgid "Sites"
1456
  msgstr "Siti"
1457
 
1458
- #: templates/account.php:662
1459
  msgid "Search by address"
1460
  msgstr "Cerca per indirizzo"
1461
 
1462
- #: templates/account.php671, templates/debug.php:366
1463
  msgid "Address"
1464
  msgstr "Indirizzo"
1465
 
1466
- #: templates/account.php:672
1467
  msgid "License"
1468
  msgstr "Licenza"
1469
 
1470
- #: templates/account.php:673
1471
  msgid "Plan"
1472
  msgstr "Piano"
1473
 
1474
- #: templates/account.php:718
1475
  msgctxt "as software license"
1476
  msgid "License"
1477
  msgstr "Licenza"
1478
 
1479
- #: templates/account.php:847
1480
  msgctxt "verb"
1481
  msgid "Hide"
1482
  msgstr "Nascondi"
1483
 
1484
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1485
  msgid "Processing"
1486
  msgstr "Elaborazione"
1487
 
1488
- #: templates/account.php:872
1489
  msgid "Get updates for bleeding edge Beta versions of %s."
1490
  msgstr "Ottieni gli aggiornamenti per le nuove versioni Beta di %s."
1491
 
1492
- #: templates/account.php:930
1493
  msgid "Cancelling %s"
1494
  msgstr "Cancellazione di %s"
1495
 
1496
- #: templates/account.php930, templates/account.php947,
1497
  #: templates/forms/subscription-cancellation.php27,
1498
  #: templates/forms/deactivation/form.php:133
1499
  msgid "trial"
1500
  msgstr "prova"
1501
 
1502
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1503
  msgid "Cancelling %s..."
1504
  msgstr "Cancellazione %s..."
1505
 
1506
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1507
  #: templates/forms/deactivation/form.php:134
1508
  msgid "subscription"
1509
  msgstr "sottoscrizione"
1510
 
1511
- #: templates/account.php:962
1512
  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?"
1513
  msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1514
 
 
 
 
 
 
 
 
 
1515
  #: templates/add-ons.php:38
1516
  msgid "View details"
1517
  msgstr "Visualizza dettagli"
@@ -1522,7 +1554,7 @@ msgstr "Add-on per %s"
1522
 
1523
  #: templates/add-ons.php:58
1524
  msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1525
- msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1526
 
1527
  #: templates/add-ons.php:229
1528
  msgctxt "active add-on"
@@ -1643,7 +1675,7 @@ msgstr "Chiave di licenza"
1643
  msgid "Can't find your license key?"
1644
  msgstr "Non trovi la tua chiave di licenza?"
1645
 
1646
- #: templates/connect.php323, templates/connect.php694,
1647
  #: templates/forms/deactivation/retry-skip.php:20
1648
  msgctxt "verb"
1649
  msgid "Skip"
@@ -1695,46 +1727,46 @@ msgstr "Newsletter"
1695
 
1696
  #: templates/connect.php:403
1697
  msgid "Plugins & Themes"
1698
- msgstr "Plugins & Themes"
1699
 
1700
  #: templates/connect.php:404
1701
  msgid "Title, slug, version, and is active"
1702
  msgstr "Title, slug, version, and is active"
1703
 
1704
- #: templates/connect.php420, templates/forms/license-activation.php:41
1705
  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."
1706
  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."
1707
 
1708
- #: templates/connect.php:425
1709
  msgid "What permissions are being granted?"
1710
  msgstr "Quali autorizzazioni vengono concesse?"
1711
 
1712
- #: templates/connect.php:451
1713
  msgid "Don't have a license key?"
1714
  msgstr "Non hai una chiave di licenza?"
1715
 
1716
- #: templates/connect.php:454
1717
  msgid "Have a license key?"
1718
  msgstr "Hai una chiave di licenza?"
1719
 
1720
- #: templates/connect.php:462
1721
  msgid "Privacy Policy"
1722
  msgstr "Politica sulla privacy"
1723
 
1724
- #: templates/connect.php:464
1725
  msgid "License Agreement"
1726
  msgstr "License Agreement"
1727
 
1728
- #: templates/connect.php:464
1729
  msgid "Terms of Service"
1730
  msgstr "Termini del Servizio"
1731
 
1732
- #: templates/connect.php:853
1733
  msgctxt "as in the process of sending an email"
1734
  msgid "Sending email"
1735
  msgstr "Invio email"
1736
 
1737
- #: templates/connect.php:854
1738
  msgctxt "as activating plugin"
1739
  msgid "Activating"
1740
  msgstr "Attivazione"
@@ -1994,7 +2026,7 @@ msgstr "Timestamp"
1994
 
1995
  #: templates/secure-https-header.php:28
1996
  msgid "Secure HTTPS %s page, running from an external domain"
1997
- msgstr "Metti in sicurezza la pagina HTTPS %s gestita da un dominio esterno"
1998
 
1999
  #: includes/customizer/class-fs-customizer-support-section.php55,
2000
  #: templates/plugin-info/features.php:43
@@ -2181,153 +2213,153 @@ msgstr "Non in scadenza"
2181
  msgid "Apply to become an affiliate"
2182
  msgstr "Applica per diventare un affiliato"
2183
 
2184
- #: templates/forms/affiliation.php:104
2185
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2186
  msgstr "La tua applicazione di affiliazione per %s è stata accettata! Accedi alla tua area di affiliazione a %s."
2187
 
2188
- #: templates/forms/affiliation.php:119
2189
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2190
  msgstr "Grazie per la partecipazione al nostro programma di affiliazione, valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo per maggiori informazioni."
2191
 
2192
- #: templates/forms/affiliation.php:122
2193
  msgid "Your affiliation account was temporarily suspended."
2194
  msgstr "Il tuo account di affiliazione è stato sospeso temporaneamente."
2195
 
2196
- #: templates/forms/affiliation.php:125
2197
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2198
  msgstr "Grazie per la partecipazione al nostro programma di affiliazione, sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova nuovamente fra 30 giorni."
2199
 
2200
- #: templates/forms/affiliation.php:128
2201
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2202
  msgstr "A causa della violazione dei nostri termini di affiliazione abbiamo deciso di bloccare temporaneamente il tuo account affiliativo. Se hai domande contatta il supporto."
2203
 
2204
- #: templates/forms/affiliation.php:141
2205
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2206
  msgstr "Ti piace %s? Diventa il nostro ambasciatore e guadagna denaro ;-)"
2207
 
2208
- #: templates/forms/affiliation.php:142
2209
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2210
  msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!"
2211
 
2212
- #: templates/forms/affiliation.php:145
2213
  msgid "Program Summary"
2214
  msgstr "Sommario programma"
2215
 
2216
- #: templates/forms/affiliation.php:147
2217
  msgid "%s commission when a customer purchases a new license."
2218
  msgstr "%scommissione quando un utente acquista una nuova lcienza."
2219
 
2220
- #: templates/forms/affiliation.php:149
2221
  msgid "Get commission for automated subscription renewals."
2222
  msgstr "Ottieni delle commissioni dal sistema automatizzato di rinnovo."
2223
 
2224
- #: templates/forms/affiliation.php:152
2225
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2226
  msgstr "%s cookie di tracciamento dopo che la prima visita per massimizzare i margini di guadagno. "
2227
 
2228
- #: templates/forms/affiliation.php:155
2229
  msgid "Unlimited commissions."
2230
  msgstr "Commissioni illimitate."
2231
 
2232
- #: templates/forms/affiliation.php:157
2233
  msgid "%s minimum payout amount."
2234
  msgstr "%s quantità minima per il pagamento."
2235
 
2236
- #: templates/forms/affiliation.php:158
2237
  msgid "Payouts are in USD and processed monthly via PayPal."
2238
  msgstr "I pagamenti sono in Dollari Americani e processati mensilmente da PayPal."
2239
 
2240
- #: templates/forms/affiliation.php:159
2241
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2242
  msgstr "Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se sono più vecchie di 30 giorni."
2243
 
2244
- #: templates/forms/affiliation.php:162
2245
  msgid "Affiliate"
2246
  msgstr "Affiliati"
2247
 
2248
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2249
  msgid "Email address"
2250
  msgstr "Indirizzo email"
2251
 
2252
- #: templates/forms/affiliation.php:169
2253
  msgid "Full name"
2254
  msgstr "Nome completo"
2255
 
2256
- #: templates/forms/affiliation.php:173
2257
  msgid "PayPal account email address"
2258
  msgstr "Indirizzo account email Paypal"
2259
 
2260
- #: templates/forms/affiliation.php:177
2261
  msgid "Where are you going to promote the %s?"
2262
  msgstr "Dove vuoi promuovere %s?"
2263
 
2264
- #: templates/forms/affiliation.php:179
2265
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2266
  msgstr "Inserisci il dominio del tuo sito o altri siti da dove vuoi promuovere %s."
2267
 
2268
- #: templates/forms/affiliation.php:181
2269
  msgid "Add another domain"
2270
  msgstr "Aggiungi un altro dominio"
2271
 
2272
- #: templates/forms/affiliation.php:185
2273
  msgid "Extra Domains"
2274
  msgstr "Domini aggiuntivi"
2275
 
2276
- #: templates/forms/affiliation.php:186
2277
  msgid "Extra domains where you will be marketing the product from."
2278
  msgstr "Domini aggiuntivi dove ci sarà il modulo promozionale."
2279
 
2280
- #: templates/forms/affiliation.php:196
2281
  msgid "Promotion methods"
2282
  msgstr "Metodi promozionali"
2283
 
2284
- #: templates/forms/affiliation.php:199
2285
  msgid "Social media (Facebook, Twitter, etc.)"
2286
  msgstr "Social network (Facebook, Twitter, ecc.)"
2287
 
2288
- #: templates/forms/affiliation.php:203
2289
  msgid "Mobile apps"
2290
  msgstr "Applicazioni mobile"
2291
 
2292
- #: templates/forms/affiliation.php:207
2293
  msgid "Website, email, and social media statistics (optional)"
2294
  msgstr "Siti, email e statistiche dei social network (opzionali)"
2295
 
2296
- #: templates/forms/affiliation.php:210
2297
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2298
  msgstr "Facci sapere ogni sito o statistiche social valide, es: visite uniche mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste informazioni come riservate)."
2299
 
2300
- #: templates/forms/affiliation.php:214
2301
  msgid "How will you promote us?"
2302
  msgstr "Come ci promuoverai?"
2303
 
2304
- #: templates/forms/affiliation.php:217
2305
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2306
  msgstr "Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo possibile)"
2307
 
2308
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2309
  msgid "Cancel"
2310
  msgstr "Annulla"
2311
 
2312
- #: templates/forms/affiliation.php:225
2313
  msgid "Become an affiliate"
2314
  msgstr "Diventa un affiliato"
2315
 
2316
  #: templates/forms/data-debug-mode.php:25
2317
  msgid "Please enter the license key to enable the debug mode:"
2318
- msgstr "Please enter the license key to enable the debug mode:"
2319
 
2320
  #: templates/forms/data-debug-mode.php:27
2321
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2322
- msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2323
 
2324
  #: templates/forms/data-debug-mode.php:32
2325
  msgid "Submit"
2326
- msgstr "Submit"
2327
 
2328
  #: templates/forms/data-debug-mode.php:36
2329
  msgid "User key"
2330
- msgstr "User key"
2331
 
2332
  #: templates/forms/license-activation.php:23
2333
  msgid "Please enter the license key that you received in the email right after the purchase:"
@@ -2373,7 +2405,7 @@ msgstr "Tracciamo l'utilizzo esclusivamente per rendere %s migliore, creando una
2373
 
2374
  #: templates/forms/optout.php:45
2375
  msgid "On second thought - I want to continue helping"
2376
- msgstr "On second thought - I want to continue helping"
2377
 
2378
  #: templates/forms/optout.php:49
2379
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
@@ -2383,7 +2415,7 @@ msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informa
2383
  msgid "Plugins & themes tracking"
2384
  msgstr "Plugins & themes tracking"
2385
 
2386
- #: templates/forms/optout.php:256
2387
  msgid "Saved"
2388
  msgstr "Saved"
2389
 
@@ -2472,7 +2504,7 @@ msgstr "Enter email address"
2472
  #: templates/forms/user-change.php:81
2473
  msgctxt "close window"
2474
  msgid "Dismiss"
2475
- msgstr "Dismiss"
2476
 
2477
  #: templates/js/style-premium-theme.php:39
2478
  msgid "Premium"
@@ -2601,19 +2633,19 @@ msgstr "disattivazione in corso"
2601
  msgid "switching"
2602
  msgstr "passa a"
2603
 
2604
- #: templates/forms/deactivation/form.php:365
2605
  msgid "Submit & %s"
2606
  msgstr "Invia e %s"
2607
 
2608
- #: templates/forms/deactivation/form.php:386
2609
  msgid "Kindly tell us the reason so we can improve."
2610
  msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2611
 
2612
- #: templates/forms/deactivation/form.php:511
2613
  msgid "Yes - %s"
2614
  msgstr "SI - %s"
2615
 
2616
- #: templates/forms/deactivation/form.php:518
2617
  msgid "Skip & %s"
2618
  msgstr "Salta & %s"
2619
 
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
5
  # Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2019
6
+ # Dario Curvino <d.curvino@gmail.com>, 2018,2020
7
  # Tropicalista <francescopepe@email.it>, 2019
8
  # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
9
  # Vova Feldman <vova@freemius.com>, 2015-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: 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
  "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
  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
 
902
+ #: includes/fs-plugin-info-dialog.php:541
903
  msgid "Purchase More"
904
  msgstr "Continua a comprare"
905
 
906
+ #: includes/fs-plugin-info-dialog.php542,
907
  #: templates/account/partials/addon.php:385
908
  msgctxt "verb"
909
  msgid "Purchase"
910
  msgstr "Acquisto"
911
 
912
+ #: includes/fs-plugin-info-dialog.php:546
913
  msgid "Start my free %s"
914
  msgstr "Inizia la mia %s"
915
 
916
+ #: includes/fs-plugin-info-dialog.php:744
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
 
924
+ #: includes/fs-plugin-info-dialog.php:754
925
  msgid "Install Free Version Now"
926
  msgstr "Installa la versione gratuita ora"
927
 
928
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
929
  #: templates/auto-installation.php111,
930
  #: templates/account/partials/addon.php365,
931
  #: templates/account/partials/addon.php:418
932
  msgid "Install Now"
933
  msgstr "Installa ora"
934
 
935
+ #: includes/fs-plugin-info-dialog.php:771
936
  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"
944
  msgstr "Scarica l'ultima versione"
945
 
946
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
947
  #: templates/account/partials/addon.php356,
948
  #: templates/account/partials/addon.php:412
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"
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1002
962
  msgctxt "Plugin installer section title"
963
  msgid "Description"
964
  msgstr "Descrizione"
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1003
967
  msgctxt "Plugin installer section title"
968
  msgid "Installation"
969
  msgstr "Installazione"
970
 
971
+ #: includes/fs-plugin-info-dialog.php:1004
972
  msgctxt "Plugin installer section title"
973
  msgid "FAQ"
974
  msgstr "FAQ"
975
 
976
+ #: includes/fs-plugin-info-dialog.php1005,
977
  #: templates/plugin-info/description.php:55
978
  msgid "Screenshots"
979
  msgstr "Screenshot"
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1006
982
  msgctxt "Plugin installer section title"
983
  msgid "Changelog"
984
  msgstr "Changelog"
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1007
987
  msgctxt "Plugin installer section title"
988
  msgid "Reviews"
989
  msgstr "Recensioni"
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1008
992
  msgctxt "Plugin installer section title"
993
  msgid "Other Notes"
994
  msgstr "Altre note"
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1023
997
  msgctxt "Plugin installer section title"
998
  msgid "Features & Pricing"
999
  msgstr "Caratteristiche & prezzi"
1000
 
1001
+ #: includes/fs-plugin-info-dialog.php:1033
1002
  msgid "Plugin Install"
1003
  msgstr "Installazione del plugin"
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1105
1006
  msgctxt "e.g. Professional Plan"
1007
  msgid "%s Plan"
1008
  msgstr "Piano %s"
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php:1131
1011
  msgctxt "e.g. the best product"
1012
  msgid "Best"
1013
  msgstr "Migliore"
1014
 
1015
+ #: includes/fs-plugin-info-dialog.php1137,
1016
+ #: includes/fs-plugin-info-dialog.php:1157
1017
  msgctxt "as every month"
1018
  msgid "Monthly"
1019
  msgstr "Mensilmente"
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1140
1022
  msgctxt "as once a year"
1023
  msgid "Annual"
1024
  msgstr "Annuale"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php:1143
1027
  msgid "Lifetime"
1028
  msgstr "Tutta la vita"
1029
 
1030
+ #: includes/fs-plugin-info-dialog.php1157,
1031
+ #: includes/fs-plugin-info-dialog.php1159,
1032
+ #: includes/fs-plugin-info-dialog.php:1161
1033
  msgctxt "e.g. billed monthly"
1034
  msgid "Billed %s"
1035
  msgstr "Fatturato %s"
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1159
1038
  msgctxt "as once a year"
1039
  msgid "Annually"
1040
  msgstr "Annualmente"
1041
 
1042
+ #: includes/fs-plugin-info-dialog.php:1161
1043
  msgctxt "as once a year"
1044
  msgid "Once"
1045
  msgstr "Una volta"
1046
 
1047
+ #: includes/fs-plugin-info-dialog.php:1167
1048
  msgid "Single Site License"
1049
  msgstr "Licenza per sito singolo"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1169
1052
  msgid "Unlimited Licenses"
1053
  msgstr "Licenze illimitate"
1054
 
1055
+ #: includes/fs-plugin-info-dialog.php:1171
1056
  msgid "Up to %s Sites"
1057
  msgstr "Fino a %s siti"
1058
 
1059
+ #: includes/fs-plugin-info-dialog.php1181,
1060
  #: templates/plugin-info/features.php:82
1061
  msgctxt "as monthly period"
1062
  msgid "mo"
1063
  msgstr "mese"
1064
 
1065
+ #: includes/fs-plugin-info-dialog.php1188,
1066
  #: templates/plugin-info/features.php:80
1067
  msgctxt "as annual period"
1068
  msgid "year"
1069
  msgstr "anno"
1070
 
1071
+ #: includes/fs-plugin-info-dialog.php:1242
1072
  msgctxt "noun"
1073
  msgid "Price"
1074
  msgstr "Prezzo"
1075
 
1076
+ #: includes/fs-plugin-info-dialog.php:1290
1077
  msgid "Save %s"
1078
  msgstr "Risparmia %s"
1079
 
1080
+ #: includes/fs-plugin-info-dialog.php:1300
1081
  msgid "No commitment for %s - cancel anytime"
1082
  msgstr "Nessun impegno con %s - cancella quando vuoi"
1083
 
1084
+ #: includes/fs-plugin-info-dialog.php:1303
1085
  msgid "After your free %s, pay as little as %s"
1086
  msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1087
 
1088
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1096
  msgid "Version"
1097
  msgstr "Versione"
1098
 
1099
+ #: includes/fs-plugin-info-dialog.php:1325
1100
  msgctxt "as the plugin author"
1101
  msgid "Author"
1102
  msgstr "Autore"
1103
 
1104
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1346
1114
  msgid "Requires WordPress Version"
1115
  msgstr "Richiede la versione di WordPress"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1347
1118
  msgid "%s or higher"
1119
  msgstr "%s o superiore"
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1354
1122
  msgid "Compatible up to"
1123
  msgstr "Compatibile fino a"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1362
1126
  msgid "Downloaded"
1127
  msgstr "Scaricato"
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1366
1130
  msgid "%s time"
1131
  msgstr "% volta"
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1368
1134
  msgid "%s times"
1135
  msgstr "%s volte"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php:1379
1138
  msgid "WordPress.org Plugin Page"
1139
  msgstr "Pagina dei plugin di WordPress.org"
1140
 
1141
+ #: includes/fs-plugin-info-dialog.php:1388
1142
  msgid "Plugin Homepage"
1143
  msgstr "Homepage del plugin"
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php1397,
1146
+ #: includes/fs-plugin-info-dialog.php:1481
1147
  msgid "Donate to this plugin"
1148
  msgstr "Fai una donazione a questo plugin"
1149
 
1150
+ #: includes/fs-plugin-info-dialog.php:1404
1151
  msgid "Average Rating"
1152
  msgstr "Valutazione media"
1153
 
1154
+ #: includes/fs-plugin-info-dialog.php:1411
1155
  msgid "based on %s"
1156
  msgstr "basato su %s"
1157
 
1158
+ #: includes/fs-plugin-info-dialog.php:1415
1159
  msgid "%s rating"
1160
  msgstr "%s valutazione"
1161
 
1162
+ #: includes/fs-plugin-info-dialog.php:1417
1163
  msgid "%s ratings"
1164
  msgstr "%s valutazioni"
1165
 
1166
+ #: includes/fs-plugin-info-dialog.php:1432
1167
  msgid "%s star"
1168
  msgstr "%s stella"
1169
 
1170
+ #: includes/fs-plugin-info-dialog.php:1434
1171
  msgid "%s stars"
1172
  msgstr "%s stelle"
1173
 
1174
+ #: includes/fs-plugin-info-dialog.php:1446
1175
  msgid "Click to see reviews that provided a rating of %s"
1176
  msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1177
 
1178
+ #: includes/fs-plugin-info-dialog.php:1459
1179
  msgid "Contributors"
1180
  msgstr "Contributori"
1181
 
1182
+ #: includes/fs-plugin-info-dialog.php1489,
1183
+ #: includes/fs-plugin-info-dialog.php:1491
1184
  msgid "Warning"
1185
  msgstr "Avviso"
1186
 
1187
+ #: includes/fs-plugin-info-dialog.php:1489
1188
  msgid "This plugin has not been tested with your current version of WordPress."
1189
  msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1190
 
1191
+ #: includes/fs-plugin-info-dialog.php:1491
1192
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1193
  msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1194
 
1195
+ #: includes/fs-plugin-info-dialog.php:1510
1196
  msgid "Paid add-on must be deployed to Freemius."
1197
  msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1198
 
1199
+ #: includes/fs-plugin-info-dialog.php:1511
1200
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1201
  msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1202
 
1203
+ #: includes/fs-plugin-info-dialog.php:1532
1204
  msgid "Newer Version (%s) Installed"
1205
  msgstr "Versione più recente (%s) installata"
1206
 
1207
+ #: includes/fs-plugin-info-dialog.php:1533
1208
  msgid "Newer Free Version (%s) Installed"
1209
  msgstr "Nuova versione gratuita (%s) installata"
1210
 
1211
+ #: includes/fs-plugin-info-dialog.php:1540
1212
  msgid "Latest Version Installed"
1213
  msgstr "Versione più recente installata"
1214
 
1215
+ #: includes/fs-plugin-info-dialog.php:1541
1216
  msgid "Latest Free Version Installed"
1217
  msgstr "Ultima versione gratuita installata"
1218
 
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
+
1547
  #: templates/add-ons.php:38
1548
  msgid "View details"
1549
  msgstr "Visualizza dettagli"
1554
 
1555
  #: templates/add-ons.php:58
1556
  msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1557
+ msgstr "Non possiamo caricare la lista degli addon. Probabilmente è un nostro problema, prova di nuovo fra qualche minuto."
1558
 
1559
  #: templates/add-ons.php:229
1560
  msgctxt "active add-on"
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"
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"
2026
 
2027
  #: templates/secure-https-header.php:28
2028
  msgid "Secure HTTPS %s page, running from an external domain"
2029
+ msgstr "Pagina sicura su protocollo HTTPS %s eseguita su dominio esterno"
2030
 
2031
  #: includes/customizer/class-fs-customizer-support-section.php55,
2032
  #: templates/plugin-info/features.php:43
2213
  msgid "Apply to become an affiliate"
2214
  msgstr "Applica per diventare un affiliato"
2215
 
2216
+ #: templates/forms/affiliation.php:107
2217
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2218
  msgstr "La tua applicazione di affiliazione per %s è stata accettata! Accedi alla tua area di affiliazione a %s."
2219
 
2220
+ #: templates/forms/affiliation.php:122
2221
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2222
  msgstr "Grazie per la partecipazione al nostro programma di affiliazione, valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo per maggiori informazioni."
2223
 
2224
+ #: templates/forms/affiliation.php:125
2225
  msgid "Your affiliation account was temporarily suspended."
2226
  msgstr "Il tuo account di affiliazione è stato sospeso temporaneamente."
2227
 
2228
+ #: templates/forms/affiliation.php:128
2229
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2230
  msgstr "Grazie per la partecipazione al nostro programma di affiliazione, sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova nuovamente fra 30 giorni."
2231
 
2232
+ #: templates/forms/affiliation.php:131
2233
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2234
  msgstr "A causa della violazione dei nostri termini di affiliazione abbiamo deciso di bloccare temporaneamente il tuo account affiliativo. Se hai domande contatta il supporto."
2235
 
2236
+ #: templates/forms/affiliation.php:144
2237
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2238
  msgstr "Ti piace %s? Diventa il nostro ambasciatore e guadagna denaro ;-)"
2239
 
2240
+ #: templates/forms/affiliation.php:145
2241
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2242
  msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!"
2243
 
2244
+ #: templates/forms/affiliation.php:148
2245
  msgid "Program Summary"
2246
  msgstr "Sommario programma"
2247
 
2248
+ #: templates/forms/affiliation.php:150
2249
  msgid "%s commission when a customer purchases a new license."
2250
  msgstr "%scommissione quando un utente acquista una nuova lcienza."
2251
 
2252
+ #: templates/forms/affiliation.php:152
2253
  msgid "Get commission for automated subscription renewals."
2254
  msgstr "Ottieni delle commissioni dal sistema automatizzato di rinnovo."
2255
 
2256
+ #: templates/forms/affiliation.php:155
2257
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2258
  msgstr "%s cookie di tracciamento dopo che la prima visita per massimizzare i margini di guadagno. "
2259
 
2260
+ #: templates/forms/affiliation.php:158
2261
  msgid "Unlimited commissions."
2262
  msgstr "Commissioni illimitate."
2263
 
2264
+ #: templates/forms/affiliation.php:160
2265
  msgid "%s minimum payout amount."
2266
  msgstr "%s quantità minima per il pagamento."
2267
 
2268
+ #: templates/forms/affiliation.php:161
2269
  msgid "Payouts are in USD and processed monthly via PayPal."
2270
  msgstr "I pagamenti sono in Dollari Americani e processati mensilmente da PayPal."
2271
 
2272
+ #: templates/forms/affiliation.php:162
2273
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2274
  msgstr "Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se sono più vecchie di 30 giorni."
2275
 
2276
+ #: templates/forms/affiliation.php:165
2277
  msgid "Affiliate"
2278
  msgstr "Affiliati"
2279
 
2280
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2281
  msgid "Email address"
2282
  msgstr "Indirizzo email"
2283
 
2284
+ #: templates/forms/affiliation.php:172
2285
  msgid "Full name"
2286
  msgstr "Nome completo"
2287
 
2288
+ #: templates/forms/affiliation.php:176
2289
  msgid "PayPal account email address"
2290
  msgstr "Indirizzo account email Paypal"
2291
 
2292
+ #: templates/forms/affiliation.php:180
2293
  msgid "Where are you going to promote the %s?"
2294
  msgstr "Dove vuoi promuovere %s?"
2295
 
2296
+ #: templates/forms/affiliation.php:182
2297
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2298
  msgstr "Inserisci il dominio del tuo sito o altri siti da dove vuoi promuovere %s."
2299
 
2300
+ #: templates/forms/affiliation.php:184
2301
  msgid "Add another domain"
2302
  msgstr "Aggiungi un altro dominio"
2303
 
2304
+ #: templates/forms/affiliation.php:188
2305
  msgid "Extra Domains"
2306
  msgstr "Domini aggiuntivi"
2307
 
2308
+ #: templates/forms/affiliation.php:189
2309
  msgid "Extra domains where you will be marketing the product from."
2310
  msgstr "Domini aggiuntivi dove ci sarà il modulo promozionale."
2311
 
2312
+ #: templates/forms/affiliation.php:199
2313
  msgid "Promotion methods"
2314
  msgstr "Metodi promozionali"
2315
 
2316
+ #: templates/forms/affiliation.php:202
2317
  msgid "Social media (Facebook, Twitter, etc.)"
2318
  msgstr "Social network (Facebook, Twitter, ecc.)"
2319
 
2320
+ #: templates/forms/affiliation.php:206
2321
  msgid "Mobile apps"
2322
  msgstr "Applicazioni mobile"
2323
 
2324
+ #: templates/forms/affiliation.php:210
2325
  msgid "Website, email, and social media statistics (optional)"
2326
  msgstr "Siti, email e statistiche dei social network (opzionali)"
2327
 
2328
+ #: templates/forms/affiliation.php:213
2329
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2330
  msgstr "Facci sapere ogni sito o statistiche social valide, es: visite uniche mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste informazioni come riservate)."
2331
 
2332
+ #: templates/forms/affiliation.php:217
2333
  msgid "How will you promote us?"
2334
  msgstr "Come ci promuoverai?"
2335
 
2336
+ #: templates/forms/affiliation.php:220
2337
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2338
  msgstr "Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo possibile)"
2339
 
2340
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2341
  msgid "Cancel"
2342
  msgstr "Annulla"
2343
 
2344
+ #: templates/forms/affiliation.php:234
2345
  msgid "Become an affiliate"
2346
  msgstr "Diventa un affiliato"
2347
 
2348
  #: templates/forms/data-debug-mode.php:25
2349
  msgid "Please enter the license key to enable the debug mode:"
2350
+ msgstr "Inserisci la chiave della licenza per abilitare la modalità Debug:"
2351
 
2352
  #: templates/forms/data-debug-mode.php:27
2353
  msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2354
+ msgstr "Abilita la modalità Debug, inserisci la chiave segreta del proprietario della licenza (UserID = %d), che puoi trovare nella sezione \"Profilo\" della dashboard utente:"
2355
 
2356
  #: templates/forms/data-debug-mode.php:32
2357
  msgid "Submit"
2358
+ msgstr "Invia"
2359
 
2360
  #: templates/forms/data-debug-mode.php:36
2361
  msgid "User key"
2362
+ msgstr "Chiave utente"
2363
 
2364
  #: templates/forms/license-activation.php:23
2365
  msgid "Please enter the license key that you received in the email right after the purchase:"
2405
 
2406
  #: templates/forms/optout.php:45
2407
  msgid "On second thought - I want to continue helping"
2408
+ msgstr "Ci ho ripensato, voglio continuare a fornire il mio aiuto"
2409
 
2410
  #: templates/forms/optout.php:49
2411
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2415
  msgid "Plugins & themes tracking"
2416
  msgstr "Plugins & themes tracking"
2417
 
2418
+ #: templates/forms/optout.php:261
2419
  msgid "Saved"
2420
  msgstr "Saved"
2421
 
2504
  #: templates/forms/user-change.php:81
2505
  msgctxt "close window"
2506
  msgid "Dismiss"
2507
+ msgstr "Chiudi"
2508
 
2509
  #: templates/js/style-premium-theme.php:39
2510
  msgid "Premium"
2633
  msgid "switching"
2634
  msgstr "passa a"
2635
 
2636
+ #: templates/forms/deactivation/form.php:369
2637
  msgid "Submit & %s"
2638
  msgstr "Invia e %s"
2639
 
2640
+ #: templates/forms/deactivation/form.php:390
2641
  msgid "Kindly tell us the reason so we can improve."
2642
  msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2643
 
2644
+ #: templates/forms/deactivation/form.php:515
2645
  msgid "Yes - %s"
2646
  msgstr "SI - %s"
2647
 
2648
+ #: templates/forms/deactivation/form.php:522
2649
  msgid "Skip & %s"
2650
  msgstr "Salta & %s"
2651
 
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) 2019 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-07-27 11:43+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,811 +23,835 @@ msgstr ""
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
  "X-Poedit-SourceCharset: UTF-8\n"
25
 
26
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
39
  msgid "Error"
40
  msgstr "エラー"
41
 
42
- #: includes/class-freemius.php:2492
43
  msgid "I found a better %s"
44
  msgstr "より良い %sを見つけました"
45
 
46
- #: includes/class-freemius.php:2494
47
  msgid "What's the %s's name?"
48
  msgstr "%sの名前は何ですか?"
49
 
50
- #: includes/class-freemius.php:2500
51
  msgid "It's a temporary %s. I'm just debugging an issue."
52
  msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
53
 
54
- #: includes/class-freemius.php:2502
55
  msgid "Deactivation"
56
  msgstr "無効化"
57
 
58
- #: includes/class-freemius.php:2503
59
  msgid "Theme Switch"
60
  msgstr "テーマ変更"
61
 
62
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
63
  #: templates/forms/user-change.php:29
64
  msgid "Other"
65
  msgstr "その他"
66
 
67
- #: includes/class-freemius.php:2520
68
  msgid "I no longer need the %s"
69
  msgstr "%sはもう不要です"
70
 
71
- #: includes/class-freemius.php:2527
72
  msgid "I only needed the %s for a short period"
73
  msgstr "短期間だけ %sが 必要です。"
74
 
75
- #: includes/class-freemius.php:2533
76
  msgid "The %s broke my site"
77
  msgstr "%s の影響でサイトを崩れました"
78
 
79
- #: includes/class-freemius.php:2540
80
  msgid "The %s suddenly stopped working"
81
  msgstr "%s の動作が突然停止しました"
82
 
83
- #: includes/class-freemius.php:2550
84
  msgid "I can't pay for it anymore"
85
  msgstr "もう払うことができません"
86
 
87
- #: includes/class-freemius.php:2552
88
  msgid "What price would you feel comfortable paying?"
89
  msgstr " 支払ってもよいと思う価格はいくらですか?"
90
 
91
- #: includes/class-freemius.php:2558
92
  msgid "I don't like to share my information with you"
93
  msgstr "自分の情報を共有したくありません"
94
 
95
- #: includes/class-freemius.php:2579
96
  msgid "The %s didn't work"
97
  msgstr "%s が動作しませんでした"
98
 
99
- #: includes/class-freemius.php:2589
100
  msgid "I couldn't understand how to make it work"
101
  msgstr "どうしたら動作するか分かりませんでした。"
102
 
103
- #: includes/class-freemius.php:2597
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:2599
108
  msgid "What feature?"
109
  msgstr "何の機能ですか?"
110
 
111
- #: includes/class-freemius.php:2603
112
  msgid "The %s is not working"
113
  msgstr "%s が動作していません"
114
 
115
- #: includes/class-freemius.php:2605
116
  msgid "Kindly share what didn't work so we can fix it for future users..."
117
  msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
118
 
119
- #: includes/class-freemius.php:2609
120
  msgid "It's not what I was looking for"
121
  msgstr "探していたものではありません"
122
 
123
- #: includes/class-freemius.php:2611
124
  msgid "What you've been looking for?"
125
  msgstr "探していたのは何ですか?"
126
 
127
- #: includes/class-freemius.php:2615
128
  msgid "The %s didn't work as expected"
129
  msgstr "%sが期待通りに動きませんでした "
130
 
131
- #: includes/class-freemius.php:2617
132
  msgid "What did you expect?"
133
  msgstr "何を期待していましたか?"
134
 
135
- #: includes/class-freemius.php3472, templates/debug.php:20
136
  msgid "Freemius Debug"
137
  msgstr "Freemius デバッグ"
138
 
139
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
152
  msgid "Yes - do your thing"
153
  msgstr "はい - お構いなく"
154
 
155
- #: includes/class-freemius.php:4343
156
  msgid "No - just deactivate"
157
  msgstr "いいえ - すぐに無効化"
158
 
159
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
160
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
161
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
162
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
163
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
164
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
165
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
166
- #: includes/class-freemius.php21690, templates/add-ons.php:57
167
  msgctxt "exclamation"
168
  msgid "Oops"
169
  msgstr "おっと"
170
 
171
- #: includes/class-freemius.php:4457
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:4879
176
  msgctxt "addonX cannot run without pluginY"
177
  msgid "%s cannot run without %s."
178
  msgstr "%s は、%s が無いと実行することができません。"
179
 
180
- #: includes/class-freemius.php:4880
181
  msgctxt "addonX cannot run..."
182
  msgid "%s cannot run without the plugin."
183
  msgstr "%s は、プラグインが無いと実行することができません。"
184
 
185
- #: includes/class-freemius.php5053, includes/class-freemius.php5078,
186
- #: includes/class-freemius.php:20578
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:5777
191
  msgid "Premium %s version was successfully activated."
192
  msgstr "プレミアムバージョンの %sは有効化に成功しました。"
193
 
194
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
195
  msgctxt ""
196
  msgid "W00t"
197
  msgstr "やったー"
198
 
199
- #: includes/class-freemius.php:5804
200
  msgid "You have a %s license."
201
  msgstr "%s ライセンスを持っています。"
202
 
203
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
204
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
205
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
206
- #: includes/class-freemius.php:20328
207
  msgctxt "interjection expressing joy or exuberance"
208
  msgid "Yee-haw"
209
  msgstr "ヤッホー"
210
 
211
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
225
  msgid "Purchase License"
226
  msgstr "ライセンスを購入"
227
 
228
- #: includes/class-freemius.php7047, 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:7051
233
  msgid "start the trial"
234
  msgstr "トライアルを開始"
235
 
236
- #: includes/class-freemius.php7052, templates/connect.php:175
237
  msgid "complete the install"
238
  msgstr "インストールを完了"
239
 
240
- #: includes/class-freemius.php:7164
241
  msgid "You are just one step away - %s"
242
  msgstr "もうあとわずかです - %s"
243
 
244
- #: includes/class-freemius.php:7167
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:7245
250
  msgid "We made a few tweaks to the %s, %s"
251
  msgstr "プラグインを微調整します、 %s, %s"
252
 
253
- #: includes/class-freemius.php:7249
254
  msgid "Opt in to make \"%s\" better!"
255
  msgstr "Opt in to make \"%s\" better!"
256
 
257
- #: includes/class-freemius.php:7681
258
  msgid "The upgrade of %s was successfully completed."
259
  msgstr "%s のアップグレードが完了しました。"
260
 
261
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
262
- #: includes/class-fs-plugin-updater.php1239,
263
- #: includes/class-fs-plugin-updater.php1246,
264
  #: templates/auto-installation.php:32
265
  msgid "Add-On"
266
  msgstr "アドオン"
267
 
268
- #: includes/class-freemius.php9910, templates/account.php343,
269
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
270
  msgid "Plugin"
271
  msgstr "プラグイン"
272
 
273
- #: includes/class-freemius.php9911, templates/account.php344,
274
- #: templates/account.php352, templates/debug.php358, templates/debug.php549,
275
  #: templates/forms/deactivation/form.php:71
276
  msgid "Theme"
277
  msgstr "テーマ"
278
 
279
- #: includes/class-freemius.php:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  msgid "An unknown error has occurred while trying to set the user's beta mode."
281
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
282
 
283
- #: includes/class-freemius.php:12904
284
  msgid "Invalid new user ID or email address."
285
  msgstr "Invalid new user ID or email address."
286
 
287
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
288
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
289
  msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
290
 
291
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
292
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
293
  msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
294
 
295
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
296
  msgid "Change Ownership"
297
  msgstr "オーナーを変更"
298
 
299
- #: includes/class-freemius.php:13438
300
  msgid "Invalid site details collection."
301
  msgstr "Invalid site details collection."
302
 
303
- #: includes/class-freemius.php:13558
304
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
305
  msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
306
 
307
- #: includes/class-freemius.php:13560
308
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
309
  msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
310
 
311
- #: includes/class-freemius.php:13834
312
  msgid "Account is pending activation."
313
  msgstr "アカウントは有効化待ちです。"
314
 
315
- #: includes/class-freemius.php13946,
316
  #: templates/forms/premium-versions-upgrade-handler.php:47
317
  msgid "Buy a license now"
318
  msgstr "Buy a license now"
319
 
320
- #: includes/class-freemius.php13958,
321
  #: templates/forms/premium-versions-upgrade-handler.php:46
322
  msgid "Renew your license now"
323
  msgstr "Renew your license now"
324
 
325
- #: includes/class-freemius.php:13962
326
  msgid "%s to access version %s security & feature updates, and support."
327
  msgstr "%s to access version %s security & feature updates, and support."
328
 
329
- #: includes/class-freemius.php:16387
330
  msgid "%s activation was successfully completed."
331
  msgstr "%s の有効化が成功しました。"
332
 
333
- #: includes/class-freemius.php:16401
334
  msgid "Your account was successfully activated with the %s plan."
335
  msgstr "アカウントが %s プランで有効化できました。"
336
 
337
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
338
  msgid "Your trial has been successfully started."
339
  msgstr "トライアル版の利用を開始しました。"
340
 
341
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
342
- #: includes/class-freemius.php:17258
343
  msgid "Couldn't activate %s."
344
  msgstr "%s を有効化できません。"
345
 
346
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
347
- #: includes/class-freemius.php:17259
348
  msgid "Please contact us with the following message:"
349
  msgstr "以下のメッセージとともに私たちに連絡をください。"
350
 
351
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
352
  msgid "An unknown error has occurred."
353
  msgstr "An unknown error has occurred."
354
 
355
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
356
  msgid "Upgrade"
357
  msgstr "アップグレード"
358
 
359
- #: includes/class-freemius.php:17622
360
  msgid "Start Trial"
361
  msgstr "トライアルを開始"
362
 
363
- #: includes/class-freemius.php:17624
364
  msgid "Pricing"
365
  msgstr "料金表"
366
 
367
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
368
  msgid "Affiliation"
369
  msgstr "アフィリエイト"
370
 
371
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
372
- #: templates/account.php191, templates/debug.php:324
373
  msgid "Account"
374
  msgstr "アカウント"
375
 
376
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
377
  #: includes/customizer/class-fs-customizer-support-section.php:60
378
  msgid "Contact Us"
379
  msgstr "連絡"
380
 
381
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
382
- #: includes/class-freemius.php22603, templates/account.php119,
383
  #: templates/account/partials/addon.php:44
384
  msgid "Add-Ons"
385
  msgstr "アドオン"
386
 
387
- #: includes/class-freemius.php:17799
388
  msgctxt "ASCII arrow left icon"
389
  msgid "&#x2190;"
390
  msgstr "&#x2190;"
391
 
392
- #: includes/class-freemius.php:17799
393
  msgctxt "ASCII arrow right icon"
394
  msgid "&#x27a4;"
395
  msgstr "&#x27a4;"
396
 
397
- #: includes/class-freemius.php17801, templates/pricing.php:103
398
  msgctxt "noun"
399
  msgid "Pricing"
400
  msgstr "料金表"
401
 
402
- #: includes/class-freemius.php18014,
403
  #: includes/customizer/class-fs-customizer-support-section.php:67
404
  msgid "Support Forum"
405
  msgstr "サポートフォーラム"
406
 
407
- #: includes/class-freemius.php:18988
408
  msgid "Your email has been successfully verified - you are AWESOME!"
409
  msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
410
 
411
- #: includes/class-freemius.php:18989
412
  msgctxt "a positive response"
413
  msgid "Right on"
414
  msgstr "そうだ"
415
 
416
- #: includes/class-freemius.php:19493
417
  msgid "seems like the key you entered doesn't match our records."
418
  msgstr "seems like the key you entered doesn't match our records."
419
 
420
- #: includes/class-freemius.php:19517
421
  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."
422
  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."
423
 
424
- #: includes/class-freemius.php:19735
425
  msgid "Your %s Add-on plan was successfully upgraded."
426
  msgstr "%s のアドオンのプランのアップグレードが完了しました。"
427
 
428
- #: includes/class-freemius.php:19737
429
  msgid "%s Add-on was successfully purchased."
430
  msgstr "%s のアドオンの支払いが完了しました。"
431
 
432
- #: includes/class-freemius.php:19740
433
  msgid "Download the latest version"
434
  msgstr "最新版をダウンロード"
435
 
436
- #: includes/class-freemius.php:19826
437
  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"
438
  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"
439
 
440
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
441
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
442
  msgid "Error received from the server:"
443
  msgstr "サーバーからエラーを受信しました。"
444
 
445
- #: includes/class-freemius.php:19842
446
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
447
  msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
448
 
449
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
450
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
451
  msgctxt ""
452
  msgid "Hmm"
453
  msgstr "ふむ"
454
 
455
- #: includes/class-freemius.php:20069
456
  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."
457
  msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
458
 
459
- #: includes/class-freemius.php20070, templates/account.php121,
460
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
461
  msgctxt "trial period"
462
  msgid "Trial"
463
  msgstr "トライアル"
464
 
465
- #: includes/class-freemius.php:20075
466
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
467
  msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
468
 
469
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
470
  msgid "Please contact us here"
471
  msgstr "こちらで私たちに連絡をとってください。"
472
 
473
- #: includes/class-freemius.php:20090
474
  msgid "Your plan was successfully activated."
475
  msgstr "Your plan was successfully activated."
476
 
477
- #: includes/class-freemius.php:20091
478
  msgid "Your plan was successfully upgraded."
479
  msgstr "プランのアップグレードが成功しました。"
480
 
481
- #: includes/class-freemius.php:20108
482
  msgid "Your plan was successfully changed to %s."
483
  msgstr "プランの %s への変更が成功しました。"
484
 
485
- #: includes/class-freemius.php:20124
486
  msgid "Your license has expired. You can still continue using the free %s forever."
487
  msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
488
 
489
- #: includes/class-freemius.php:20126
490
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
491
  msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
492
 
493
- #: includes/class-freemius.php:20134
494
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
495
  msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
496
 
497
- #: includes/class-freemius.php:20147
498
  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."
499
  msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
500
 
501
- #: includes/class-freemius.php:20173
502
  msgid "Your free trial has expired. You can still continue using all our free features."
503
  msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
504
 
505
- #: includes/class-freemius.php:20175
506
  msgid "Your free trial 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:20283
510
  msgid "It looks like the license could not be activated."
511
  msgstr "ライセンスの有効化ができませんでした。"
512
 
513
- #: includes/class-freemius.php:20325
514
  msgid "Your license was successfully activated."
515
  msgstr "ライセンスの有効化が成功しました。"
516
 
517
- #: includes/class-freemius.php:20351
518
  msgid "It looks like your site currently doesn't have an active license."
519
  msgstr "サイトは有効なライセンスを持っていないようです。"
520
 
521
- #: includes/class-freemius.php:20375
522
  msgid "It looks like the license deactivation failed."
523
  msgstr "ライセンスの無効化ができませんでした。"
524
 
525
- #: includes/class-freemius.php:20404
526
  msgid "Your %s license was successfully deactivated."
527
  msgstr "Your %s license was successfully deactivated."
528
 
529
- #: includes/class-freemius.php:20405
530
  msgid "Your license was successfully deactivated, you are back to the %s plan."
531
  msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
532
 
533
- #: includes/class-freemius.php:20408
534
  msgid "O.K"
535
  msgstr "O.K"
536
 
537
- #: includes/class-freemius.php:20461
538
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
539
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
540
 
541
- #: includes/class-freemius.php:20470
542
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
543
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
544
 
545
- #: includes/class-freemius.php:20512
546
  msgid "You are already running the %s in a trial mode."
547
  msgstr "すでに%sをトライアルモードで利用中です。"
548
 
549
- #: includes/class-freemius.php:20523
550
  msgid "You already utilized a trial before."
551
  msgstr "以前すでに試用版を利用しました。"
552
 
553
- #: includes/class-freemius.php:20537
554
  msgid "Plan %s do not exist, therefore, can't start a trial."
555
  msgstr "%s プランは存在しないため、試用を開始できません。"
556
 
557
- #: includes/class-freemius.php:20548
558
  msgid "Plan %s does not support a trial period."
559
  msgstr "%s プランにはトライアル期間はありません。"
560
 
561
- #: includes/class-freemius.php:20559
562
  msgid "None of the %s's plans supports a trial period."
563
  msgstr "%sのプランにはトライアル期間はありません。"
564
 
565
- #: includes/class-freemius.php:20609
566
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
567
  msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
568
 
569
- #: includes/class-freemius.php:20645
570
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
571
  msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
572
 
573
- #: includes/class-freemius.php:20664
574
  msgid "Your %s free trial was successfully cancelled."
575
  msgstr "%s のフリートライアルはキャンセルされました。"
576
 
577
- #: includes/class-freemius.php:20980
578
  msgid "Version %s was released."
579
  msgstr "バージョン %s をリリースしました。"
580
 
581
- #: includes/class-freemius.php:20980
582
  msgid "Please download %s."
583
  msgstr "%s をダウンロードしてください。"
584
 
585
- #: includes/class-freemius.php:20987
586
  msgid "the latest %s version here"
587
  msgstr "最新の %s バージョンはこちらです。"
588
 
589
- #: includes/class-freemius.php:20992
590
  msgid "New"
591
  msgstr "新規"
592
 
593
- #: includes/class-freemius.php:20997
594
  msgid "Seems like you got the latest release."
595
  msgstr "最新版を取得できました。"
596
 
597
- #: includes/class-freemius.php:20998
598
  msgid "You are all good!"
599
  msgstr "すべて完璧です!"
600
 
601
- #: includes/class-freemius.php:21301
602
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
603
  msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
604
 
605
- #: includes/class-freemius.php:21441
606
  msgid "Site successfully opted in."
607
  msgstr "サイトのオプトインに成功しました。"
608
 
609
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
610
  msgid "Awesome"
611
  msgstr "すごい!"
612
 
613
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
614
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
615
  msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
616
 
617
- #: includes/class-freemius.php:21459
618
  msgid "Thank you!"
619
  msgstr "ありがとうございます!"
620
 
621
- #: includes/class-freemius.php:21466
622
  msgid "We will no longer be sending any usage data of %s on %s to %s."
623
  msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
624
 
625
- #: includes/class-freemius.php:21612
626
  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."
627
  msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
628
 
629
- #: includes/class-freemius.php:21618
630
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
631
  msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
632
 
633
- #: includes/class-freemius.php:21623
634
  msgid "%s is the new owner of the account."
635
  msgstr "%s は新しいオーナーです。"
636
 
637
- #: includes/class-freemius.php:21625
638
  msgctxt "as congratulations"
639
  msgid "Congrats"
640
  msgstr "おめでとう"
641
 
642
- #: includes/class-freemius.php:21661
643
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
644
  msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
645
 
646
- #: includes/class-freemius.php:21673
647
  msgid "Please provide your full name."
648
  msgstr "フルネームを入力してください。"
649
 
650
- #: includes/class-freemius.php:21678
651
  msgid "Your name was successfully updated."
652
  msgstr "名前のアップデートが成功しました。"
653
 
654
- #: includes/class-freemius.php:21739
655
  msgid "You have successfully updated your %s."
656
  msgstr "%s のアップデートが成功しました。"
657
 
658
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
659
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
660
  msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
661
 
662
- #: includes/class-freemius.php:21880
663
  msgctxt "advance notice of something that will need attention."
664
  msgid "Heads up"
665
  msgstr "警告"
666
 
667
- #: includes/class-freemius.php:22339
668
  msgctxt "exclamation"
669
  msgid "Hey"
670
  msgstr "ヘイ"
671
 
672
- #: includes/class-freemius.php:22339
673
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
674
  msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
675
 
676
- #: includes/class-freemius.php:22347
677
  msgid "No commitment for %s days - cancel anytime!"
678
  msgstr "%s 日以内であればいつでもキャンセルできます。"
679
 
680
- #: includes/class-freemius.php:22348
681
  msgid "No credit card required"
682
  msgstr "クレジットカードは必要ありません。"
683
 
684
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
685
  msgctxt "call to action"
686
  msgid "Start free trial"
687
  msgstr "フリートライアルを開始"
688
 
689
- #: includes/class-freemius.php:22432
690
  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!"
691
  msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
692
 
693
- #: includes/class-freemius.php:22441
694
  msgid "Learn more"
695
  msgstr "詳細はこちら"
696
 
697
- #: includes/class-freemius.php22627, templates/account.php507,
698
- #: templates/account.php657, templates/connect.php179,
699
- #: templates/connect.php455, templates/forms/license-activation.php27,
700
  #: templates/account/partials/addon.php:321
701
  msgid "Activate License"
702
  msgstr "ライセンスを有効化"
703
 
704
- #: includes/class-freemius.php22628, templates/account.php601,
705
- #: templates/account.php656, templates/account/partials/addon.php322,
706
  #: templates/account/partials/site.php:271
707
  msgid "Change License"
708
  msgstr "ライセンスを変更"
709
 
710
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
711
  msgid "Opt Out"
712
  msgstr "オプトアウト"
713
 
714
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
715
  #: templates/account/partials/site.php49,
716
  #: templates/account/partials/site.php:169
717
  msgid "Opt In"
718
  msgstr "オプトイン"
719
 
720
- #: includes/class-freemius.php:22973
721
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
722
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
723
 
724
- #: includes/class-freemius.php:22981
725
  msgid "Activate %s features"
726
  msgstr "Activate %s features"
727
 
728
- #: includes/class-freemius.php:22994
729
  msgid "Please follow these steps to complete the upgrade"
730
  msgstr "アップグレードを完了するには以下の手順を完了させてください。"
731
 
732
- #: includes/class-freemius.php:22998
733
  msgid "Download the latest %s version"
734
  msgstr "最新の %s をダウンロード"
735
 
736
- #: includes/class-freemius.php:23002
737
  msgid "Upload and activate the downloaded version"
738
  msgstr "ダウンロードしたバージョンをアップロードして有効化"
739
 
740
- #: includes/class-freemius.php:23004
741
  msgid "How to upload and activate?"
742
  msgstr "アップロードと有効化の方法"
743
 
744
- #: includes/class-freemius.php:23138
745
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
746
  msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
747
 
748
- #: includes/class-freemius.php:23299
749
  msgid "Auto installation only works for opted-in users."
750
  msgstr "自動インストールはオプトインしたユーザのみで動作します。"
751
 
752
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
753
- #: includes/class-fs-plugin-updater.php1218,
754
- #: includes/class-fs-plugin-updater.php:1232
755
  msgid "Invalid module ID."
756
  msgstr "モジュール ID が不正です"
757
 
758
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
759
  msgid "Premium version already active."
760
  msgstr "プレミアムバージョンはすでに有効になっています。"
761
 
762
- #: includes/class-freemius.php:23325
763
  msgid "You do not have a valid license to access the premium version."
764
  msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
765
 
766
- #: includes/class-freemius.php:23332
767
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
768
  msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
769
 
770
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
771
  msgid "Premium add-on version already installed."
772
  msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
773
 
774
- #: includes/class-freemius.php:23700
775
  msgid "View paid features"
776
  msgstr "有料の機能を表示する"
777
 
778
- #: includes/class-freemius.php:24022
779
  msgid "Thank you so much for using %s and its add-ons!"
780
  msgstr "%sとアドオンのご利用ありがとうございます!"
781
 
782
- #: includes/class-freemius.php:24023
783
  msgid "Thank you so much for using %s!"
784
  msgstr "%sのご利用ありがとうございます!"
785
 
786
- #: includes/class-freemius.php:24029
787
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
788
  msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
789
 
790
- #: includes/class-freemius.php:24033
791
  msgid "Thank you so much for using our products!"
792
  msgstr "プロダクトのご利用ありがとうございます!"
793
 
794
- #: includes/class-freemius.php:24034
795
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
796
  msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
797
 
798
- #: includes/class-freemius.php:24053
799
  msgid "%s and its add-ons"
800
  msgstr "%sとそのアドオン"
801
 
802
- #: includes/class-freemius.php:24062
803
  msgid "Products"
804
  msgstr "プロダクト"
805
 
806
- #: includes/class-freemius.php24069, templates/connect.php:280
807
  msgid "Yes"
808
  msgstr "はい"
809
 
810
- #: includes/class-freemius.php24070, templates/connect.php:281
811
  msgid "send me security & feature updates, educational content and offers."
812
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
813
 
814
- #: includes/class-freemius.php24071, templates/connect.php:286
815
  msgid "No"
816
  msgstr "いいえ"
817
 
818
- #: includes/class-freemius.php24073, templates/connect.php:288
819
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
820
  msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
821
 
822
- #: includes/class-freemius.php:24083
823
  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 :-)"
824
  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 :-)"
825
 
826
- #: includes/class-freemius.php24085, templates/connect.php:295
827
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
828
  msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
829
 
830
- #: includes/class-freemius.php:24367
831
  msgid "License key is empty."
832
  msgstr "ライセンスキーが空です。"
833
 
@@ -860,332 +884,332 @@ msgstr "new version"
860
  msgid "Important Upgrade Notice:"
861
  msgstr "Important Upgrade Notice:"
862
 
863
- #: includes/class-fs-plugin-updater.php:1283
864
  msgid "Installing plugin: %s"
865
  msgstr "インストール中プラグイン: %s"
866
 
867
- #: includes/class-fs-plugin-updater.php:1324
868
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
869
  msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
870
 
871
- #: includes/class-fs-plugin-updater.php:1506
872
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
873
  msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
874
 
875
- #: includes/fs-plugin-info-dialog.php:535
876
  msgid "Purchase More"
877
  msgstr "Purchase More"
878
 
879
- #: includes/fs-plugin-info-dialog.php536,
880
  #: templates/account/partials/addon.php:385
881
  msgctxt "verb"
882
  msgid "Purchase"
883
  msgstr "購入"
884
 
885
- #: includes/fs-plugin-info-dialog.php:540
886
  msgid "Start my free %s"
887
  msgstr "無料の %s を開始"
888
 
889
- #: includes/fs-plugin-info-dialog.php:738
890
  msgid "Install Free Version Update Now"
891
  msgstr "フリーバージョンの更新を今すぐインストール"
892
 
893
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
894
  msgid "Install Update Now"
895
  msgstr "今すぐ更新をインストール"
896
 
897
- #: includes/fs-plugin-info-dialog.php:748
898
  msgid "Install Free Version Now"
899
  msgstr "フリーバージョンを今すぐインストール"
900
 
901
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
902
  #: templates/auto-installation.php111,
903
  #: templates/account/partials/addon.php365,
904
  #: templates/account/partials/addon.php:418
905
  msgid "Install Now"
906
  msgstr "今すぐインストール"
907
 
908
- #: includes/fs-plugin-info-dialog.php:765
909
  msgctxt "as download latest version"
910
  msgid "Download Latest Free Version"
911
  msgstr "最新のフリーバージョンをダウンロード"
912
 
913
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
914
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
915
  msgctxt "as download latest version"
916
  msgid "Download Latest"
917
  msgstr "最新版をダウンロード"
918
 
919
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
920
  #: templates/account/partials/addon.php356,
921
  #: templates/account/partials/addon.php:412
922
  msgid "Activate this add-on"
923
  msgstr "このアドオンを有効化"
924
 
925
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
926
  msgid "Activate Free Version"
927
  msgstr "フリーバージョンを有効化"
928
 
929
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
930
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
931
  msgid "Activate"
932
  msgstr "有効化"
933
 
934
- #: includes/fs-plugin-info-dialog.php:994
935
  msgctxt "Plugin installer section title"
936
  msgid "Description"
937
  msgstr "説明"
938
 
939
- #: includes/fs-plugin-info-dialog.php:995
940
  msgctxt "Plugin installer section title"
941
  msgid "Installation"
942
  msgstr "インストール"
943
 
944
- #: includes/fs-plugin-info-dialog.php:996
945
  msgctxt "Plugin installer section title"
946
  msgid "FAQ"
947
  msgstr "FAQ"
948
 
949
- #: includes/fs-plugin-info-dialog.php997,
950
  #: templates/plugin-info/description.php:55
951
  msgid "Screenshots"
952
  msgstr "スクリーンショット"
953
 
954
- #: includes/fs-plugin-info-dialog.php:998
955
  msgctxt "Plugin installer section title"
956
  msgid "Changelog"
957
  msgstr "変更履歴"
958
 
959
- #: includes/fs-plugin-info-dialog.php:999
960
  msgctxt "Plugin installer section title"
961
  msgid "Reviews"
962
  msgstr "レビュー"
963
 
964
- #: includes/fs-plugin-info-dialog.php:1000
965
  msgctxt "Plugin installer section title"
966
  msgid "Other Notes"
967
  msgstr "その他の記述"
968
 
969
- #: includes/fs-plugin-info-dialog.php:1015
970
  msgctxt "Plugin installer section title"
971
  msgid "Features & Pricing"
972
  msgstr "機能 & 料金"
973
 
974
- #: includes/fs-plugin-info-dialog.php:1025
975
  msgid "Plugin Install"
976
  msgstr "プラグインのインストール"
977
 
978
- #: includes/fs-plugin-info-dialog.php:1097
979
  msgctxt "e.g. Professional Plan"
980
  msgid "%s Plan"
981
  msgstr "%s プラン"
982
 
983
- #: includes/fs-plugin-info-dialog.php:1123
984
  msgctxt "e.g. the best product"
985
  msgid "Best"
986
  msgstr "ベスト"
987
 
988
- #: includes/fs-plugin-info-dialog.php1129,
989
- #: includes/fs-plugin-info-dialog.php:1149
990
  msgctxt "as every month"
991
  msgid "Monthly"
992
  msgstr "月"
993
 
994
- #: includes/fs-plugin-info-dialog.php:1132
995
  msgctxt "as once a year"
996
  msgid "Annual"
997
  msgstr "年次"
998
 
999
- #: includes/fs-plugin-info-dialog.php:1135
1000
  msgid "Lifetime"
1001
  msgstr "ライフタイム"
1002
 
1003
- #: includes/fs-plugin-info-dialog.php1149,
1004
- #: includes/fs-plugin-info-dialog.php1151,
1005
- #: includes/fs-plugin-info-dialog.php:1153
1006
  msgctxt "e.g. billed monthly"
1007
  msgid "Billed %s"
1008
  msgstr "%s への請求"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:1151
1011
  msgctxt "as once a year"
1012
  msgid "Annually"
1013
  msgstr "毎年"
1014
 
1015
- #: includes/fs-plugin-info-dialog.php:1153
1016
  msgctxt "as once a year"
1017
  msgid "Once"
1018
  msgstr "一度"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:1159
1021
  msgid "Single Site License"
1022
  msgstr "シングルサイトライセンス"
1023
 
1024
- #: includes/fs-plugin-info-dialog.php:1161
1025
  msgid "Unlimited Licenses"
1026
  msgstr "無制限ライセンス"
1027
 
1028
- #: includes/fs-plugin-info-dialog.php:1163
1029
  msgid "Up to %s Sites"
1030
  msgstr "%sサイトまで"
1031
 
1032
- #: includes/fs-plugin-info-dialog.php1173,
1033
  #: templates/plugin-info/features.php:82
1034
  msgctxt "as monthly period"
1035
  msgid "mo"
1036
  msgstr "月"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php1180,
1039
  #: templates/plugin-info/features.php:80
1040
  msgctxt "as annual period"
1041
  msgid "year"
1042
  msgstr "年"
1043
 
1044
- #: includes/fs-plugin-info-dialog.php:1234
1045
  msgctxt "noun"
1046
  msgid "Price"
1047
  msgstr "料金"
1048
 
1049
- #: includes/fs-plugin-info-dialog.php:1282
1050
  msgid "Save %s"
1051
  msgstr "%s を保存"
1052
 
1053
- #: includes/fs-plugin-info-dialog.php:1292
1054
  msgid "No commitment for %s - cancel anytime"
1055
  msgstr "%s の拘束はありません。いつでもキャンセルできます。"
1056
 
1057
- #: includes/fs-plugin-info-dialog.php:1295
1058
  msgid "After your free %s, pay as little as %s"
1059
  msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:1306
1062
  msgid "Details"
1063
  msgstr "詳細"
1064
 
1065
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1066
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1067
  #: templates/account/partials/addon.php:36
1068
  msgctxt "product version"
1069
  msgid "Version"
1070
  msgstr "バージョン"
1071
 
1072
- #: includes/fs-plugin-info-dialog.php:1317
1073
  msgctxt "as the plugin author"
1074
  msgid "Author"
1075
  msgstr "作者"
1076
 
1077
- #: includes/fs-plugin-info-dialog.php:1324
1078
  msgid "Last Updated"
1079
  msgstr "最終更新"
1080
 
1081
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1082
  msgctxt "x-ago"
1083
  msgid "%s ago"
1084
  msgstr "%s 前"
1085
 
1086
- #: includes/fs-plugin-info-dialog.php:1338
1087
  msgid "Requires WordPress Version"
1088
  msgstr "必要な WordPress のバージョン"
1089
 
1090
- #: includes/fs-plugin-info-dialog.php:1339
1091
  msgid "%s or higher"
1092
  msgstr "%sまたはそれ以上"
1093
 
1094
- #: includes/fs-plugin-info-dialog.php:1346
1095
  msgid "Compatible up to"
1096
  msgstr "互換性のある最新バージョン"
1097
 
1098
- #: includes/fs-plugin-info-dialog.php:1354
1099
  msgid "Downloaded"
1100
  msgstr "ダウンロード済み"
1101
 
1102
- #: includes/fs-plugin-info-dialog.php:1358
1103
  msgid "%s time"
1104
  msgstr "%s回"
1105
 
1106
- #: includes/fs-plugin-info-dialog.php:1360
1107
  msgid "%s times"
1108
  msgstr "%s回"
1109
 
1110
- #: includes/fs-plugin-info-dialog.php:1370
1111
  msgid "WordPress.org Plugin Page"
1112
  msgstr "WordPress.org のプラグインページ"
1113
 
1114
- #: includes/fs-plugin-info-dialog.php:1378
1115
  msgid "Plugin Homepage"
1116
  msgstr "プラグインのホームページ"
1117
 
1118
- #: includes/fs-plugin-info-dialog.php1386,
1119
- #: includes/fs-plugin-info-dialog.php:1468
1120
  msgid "Donate to this plugin"
1121
  msgstr "このプラグインに寄付する"
1122
 
1123
- #: includes/fs-plugin-info-dialog.php:1393
1124
  msgid "Average Rating"
1125
  msgstr "レーティングの平均"
1126
 
1127
- #: includes/fs-plugin-info-dialog.php:1400
1128
  msgid "based on %s"
1129
  msgstr "%sを基に"
1130
 
1131
- #: includes/fs-plugin-info-dialog.php:1404
1132
  msgid "%s rating"
1133
  msgstr "%s評価"
1134
 
1135
- #: includes/fs-plugin-info-dialog.php:1406
1136
  msgid "%s ratings"
1137
  msgstr "%s評価"
1138
 
1139
- #: includes/fs-plugin-info-dialog.php:1421
1140
  msgid "%s star"
1141
  msgstr "%sスター"
1142
 
1143
- #: includes/fs-plugin-info-dialog.php:1423
1144
  msgid "%s stars"
1145
  msgstr "%sスター"
1146
 
1147
- #: includes/fs-plugin-info-dialog.php:1434
1148
  msgid "Click to see reviews that provided a rating of %s"
1149
  msgstr "クリックして%sの評価をしているレビューを観る"
1150
 
1151
- #: includes/fs-plugin-info-dialog.php:1447
1152
  msgid "Contributors"
1153
  msgstr "コントリビューター"
1154
 
1155
- #: includes/fs-plugin-info-dialog.php1476,
1156
- #: includes/fs-plugin-info-dialog.php:1478
1157
  msgid "Warning"
1158
  msgstr "警告"
1159
 
1160
- #: includes/fs-plugin-info-dialog.php:1476
1161
  msgid "This plugin has not been tested with your current version of WordPress."
1162
  msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
1163
 
1164
- #: includes/fs-plugin-info-dialog.php:1478
1165
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1166
  msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
1167
 
1168
- #: includes/fs-plugin-info-dialog.php:1497
1169
  msgid "Paid add-on must be deployed to Freemius."
1170
  msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1171
 
1172
- #: includes/fs-plugin-info-dialog.php:1498
1173
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1174
  msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1175
 
1176
- #: includes/fs-plugin-info-dialog.php:1519
1177
  msgid "Newer Version (%s) Installed"
1178
  msgstr "新しいバージョン (%s) がインストールされました"
1179
 
1180
- #: includes/fs-plugin-info-dialog.php:1520
1181
  msgid "Newer Free Version (%s) Installed"
1182
  msgstr "新しいフリーバージョン (%s) がインストールされました"
1183
 
1184
- #: includes/fs-plugin-info-dialog.php:1527
1185
  msgid "Latest Version Installed"
1186
  msgstr "最新版がイストールされました"
1187
 
1188
- #: includes/fs-plugin-info-dialog.php:1528
1189
  msgid "Latest Free Version Installed"
1190
  msgstr "最新のフリーバージョンがインストールされました"
1191
 
@@ -1292,223 +1316,231 @@ msgstr "プラン"
1292
  msgid "Bundle Plan"
1293
  msgstr "Bundle Plan"
1294
 
1295
- #: templates/account.php:199
1296
  msgid "Free Trial"
1297
  msgstr "フリートライアル"
1298
 
1299
- #: templates/account.php:210
1300
  msgid "Account Details"
1301
  msgstr "アカウント詳細"
1302
 
1303
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1304
  msgid "Start Debug"
1305
  msgstr "Start Debug"
1306
 
1307
- #: templates/account.php:219
1308
  msgid "Stop Debug"
1309
  msgstr "Stop Debug"
1310
 
1311
- #: templates/account.php:226
1312
  msgid "Billing & Invoices"
1313
  msgstr "Billing & Invoices"
1314
 
1315
- #: templates/account.php:237
1316
  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?"
1317
  msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1318
 
1319
- #: templates/account.php:239
1320
  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?"
1321
  msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1322
 
1323
- #: templates/account.php:242
1324
  msgid "Delete Account"
1325
  msgstr "アカウントを削除"
1326
 
1327
- #: templates/account.php254, templates/account/partials/addon.php231,
1328
  #: templates/account/partials/deactivate-license-button.php:35
1329
  msgid "Deactivate License"
1330
  msgstr "ライセンスを無効化"
1331
 
1332
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1333
  msgid "Are you sure you want to proceed?"
1334
  msgstr "本当に続行していいですか?"
1335
 
1336
- #: templates/account.php277, templates/account/partials/addon.php:255
1337
  msgid "Cancel Subscription"
1338
  msgstr "サブスクリプションをキャンセルする"
1339
 
1340
- #: templates/account.php306, templates/account/partials/addon.php:340
1341
  msgctxt "as synchronize"
1342
  msgid "Sync"
1343
  msgstr "同期"
1344
 
1345
- #: templates/account.php321, templates/debug.php:505
1346
  msgid "Name"
1347
  msgstr "名前"
1348
 
1349
- #: templates/account.php327, templates/debug.php:506
1350
  msgid "Email"
1351
  msgstr "Email"
1352
 
1353
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1354
  msgid "User ID"
1355
  msgstr "ユーザー ID"
1356
 
1357
- #: templates/account.php352, templates/account.php670,
1358
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1359
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1360
  #: templates/debug.php632, templates/account/payments.php35,
1361
  #: templates/debug/logger.php:21
1362
  msgid "ID"
1363
  msgstr "ID"
1364
 
1365
- #: templates/account.php:359
1366
  msgid "Site ID"
1367
  msgstr "サイト ID"
1368
 
1369
- #: templates/account.php:362
1370
  msgid "No ID"
1371
  msgstr "ID がありません"
1372
 
1373
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1374
  #: templates/debug.php456, templates/debug.php508,
1375
  #: templates/account/partials/site.php:227
1376
  msgid "Public Key"
1377
  msgstr "公開鍵"
1378
 
1379
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1380
  #: templates/debug.php509, templates/account/partials/site.php:239
1381
  msgid "Secret Key"
1382
  msgstr "秘密鍵"
1383
 
1384
- #: templates/account.php:376
1385
  msgctxt "as secret encryption key missing"
1386
  msgid "No Secret"
1387
  msgstr "秘密鍵がありません"
1388
 
1389
- #: templates/account.php403, templates/account/partials/site.php120,
1390
  #: templates/account/partials/site.php:122
1391
  msgid "Trial"
1392
  msgstr "トライアル"
1393
 
1394
- #: templates/account.php430, templates/debug.php561,
1395
  #: templates/account/partials/site.php:260
1396
  msgid "License Key"
1397
  msgstr "ライセンスキー"
1398
 
1399
- #: templates/account.php:461
1400
  msgid "Join the Beta program"
1401
  msgstr "Join the Beta program"
1402
 
1403
- #: templates/account.php:467
1404
  msgid "not verified"
1405
  msgstr "未認証"
1406
 
1407
- #: templates/account.php476, templates/account/partials/addon.php:190
1408
  msgid "Expired"
1409
  msgstr "期限切れ"
1410
 
1411
- #: templates/account.php:536
1412
  msgid "Premium version"
1413
  msgstr "プレミアムバージョン"
1414
 
1415
- #: templates/account.php:538
1416
  msgid "Free version"
1417
  msgstr "フリーバージョン"
1418
 
1419
- #: templates/account.php:550
1420
  msgid "Verify Email"
1421
  msgstr "認証メール"
1422
 
1423
- #: templates/account.php:564
1424
  msgid "Download %s Version"
1425
  msgstr "%s バージョンをダウンロード"
1426
 
1427
- #: templates/account.php:580
1428
  msgid "Download Paid Version"
1429
  msgstr "Download Paid Version"
1430
 
1431
- #: templates/account.php598, templates/account.php853,
1432
  #: templates/account/partials/site.php248,
1433
  #: templates/account/partials/site.php:270
1434
  msgctxt "verb"
1435
  msgid "Show"
1436
  msgstr "表示"
1437
 
1438
- #: templates/account.php:613
1439
  msgid "What is your %s?"
1440
  msgstr "自分の %s はなんですか?"
1441
 
1442
- #: templates/account.php621, templates/account/billing.php:21
1443
  msgctxt "verb"
1444
  msgid "Edit"
1445
  msgstr "編集"
1446
 
1447
- #: templates/account.php625, templates/forms/user-change.php:27
1448
  msgid "Change User"
1449
  msgstr "Change User"
1450
 
1451
- #: templates/account.php:649
1452
  msgid "Sites"
1453
  msgstr "サイト数"
1454
 
1455
- #: templates/account.php:662
1456
  msgid "Search by address"
1457
  msgstr "住所で検索する"
1458
 
1459
- #: templates/account.php671, templates/debug.php:366
1460
  msgid "Address"
1461
  msgstr "住所"
1462
 
1463
- #: templates/account.php:672
1464
  msgid "License"
1465
  msgstr "ライセンス"
1466
 
1467
- #: templates/account.php:673
1468
  msgid "Plan"
1469
  msgstr "プラン"
1470
 
1471
- #: templates/account.php:718
1472
  msgctxt "as software license"
1473
  msgid "License"
1474
  msgstr "ライセンス"
1475
 
1476
- #: templates/account.php:847
1477
  msgctxt "verb"
1478
  msgid "Hide"
1479
  msgstr "非表示"
1480
 
1481
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1482
  msgid "Processing"
1483
  msgstr "Processing"
1484
 
1485
- #: templates/account.php:872
1486
  msgid "Get updates for bleeding edge Beta versions of %s."
1487
  msgstr "Get updates for bleeding edge Beta versions of %s."
1488
 
1489
- #: templates/account.php:930
1490
  msgid "Cancelling %s"
1491
  msgstr "Cancelling %s"
1492
 
1493
- #: templates/account.php930, templates/account.php947,
1494
  #: templates/forms/subscription-cancellation.php27,
1495
  #: templates/forms/deactivation/form.php:133
1496
  msgid "trial"
1497
  msgstr "trial"
1498
 
1499
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1500
  msgid "Cancelling %s..."
1501
  msgstr "Cancelling %s..."
1502
 
1503
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1504
  #: templates/forms/deactivation/form.php:134
1505
  msgid "subscription"
1506
  msgstr "subscription"
1507
 
1508
- #: templates/account.php:962
1509
  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?"
1510
  msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
1511
 
 
 
 
 
 
 
 
 
1512
  #: templates/add-ons.php:38
1513
  msgid "View details"
1514
  msgstr "詳細を表示"
@@ -1640,7 +1672,7 @@ msgstr "ライセンスキー"
1640
  msgid "Can't find your license key?"
1641
  msgstr "ライセンスキーは見つかりませんか?"
1642
 
1643
- #: templates/connect.php323, templates/connect.php694,
1644
  #: templates/forms/deactivation/retry-skip.php:20
1645
  msgctxt "verb"
1646
  msgid "Skip"
@@ -1698,40 +1730,40 @@ msgstr "Plugins & Themes"
1698
  msgid "Title, slug, version, and is active"
1699
  msgstr "Title, slug, version, and is active"
1700
 
1701
- #: templates/connect.php420, templates/forms/license-activation.php:41
1702
  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."
1703
  msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。"
1704
 
1705
- #: templates/connect.php:425
1706
  msgid "What permissions are being granted?"
1707
  msgstr "付与されているパーミッションは何ですか?"
1708
 
1709
- #: templates/connect.php:451
1710
  msgid "Don't have a license key?"
1711
  msgstr "ライセンスキーをお持ちではありませんか?"
1712
 
1713
- #: templates/connect.php:454
1714
  msgid "Have a license key?"
1715
  msgstr "ライセンスキーはお持ちですか?"
1716
 
1717
- #: templates/connect.php:462
1718
  msgid "Privacy Policy"
1719
  msgstr "プライバシーポリシー"
1720
 
1721
- #: templates/connect.php:464
1722
  msgid "License Agreement"
1723
  msgstr "License Agreement"
1724
 
1725
- #: templates/connect.php:464
1726
  msgid "Terms of Service"
1727
  msgstr "利用規約"
1728
 
1729
- #: templates/connect.php:853
1730
  msgctxt "as in the process of sending an email"
1731
  msgid "Sending email"
1732
  msgstr "メール送信中"
1733
 
1734
- #: templates/connect.php:854
1735
  msgctxt "as activating plugin"
1736
  msgid "Activating"
1737
  msgstr "有効化中"
@@ -2178,135 +2210,135 @@ msgstr "期限のない"
2178
  msgid "Apply to become an affiliate"
2179
  msgstr "アフィリエイトに応募する"
2180
 
2181
- #: templates/forms/affiliation.php:104
2182
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2183
  msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s"
2184
 
2185
- #: templates/forms/affiliation.php:119
2186
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2187
  msgstr "アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。"
2188
 
2189
- #: templates/forms/affiliation.php:122
2190
  msgid "Your affiliation account was temporarily suspended."
2191
  msgstr "アフィリエイトアカウントは一時的に停止されました。"
2192
 
2193
- #: templates/forms/affiliation.php:125
2194
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2195
  msgstr "アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改めてお申込みください。"
2196
 
2197
- #: templates/forms/affiliation.php:128
2198
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2199
  msgstr "アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問い合わせください。"
2200
 
2201
- #: templates/forms/affiliation.php:141
2202
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2203
  msgstr "%sは気に入りましたか? アンバサダーになって報酬を得ましょう ;-)"
2204
 
2205
- #: templates/forms/affiliation.php:142
2206
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2207
  msgstr "新規カスタマーに私たちの%sを紹介して、売り上げごとに%sのコミッションを得ましょう"
2208
 
2209
- #: templates/forms/affiliation.php:145
2210
  msgid "Program Summary"
2211
  msgstr "プログラム概要"
2212
 
2213
- #: templates/forms/affiliation.php:147
2214
  msgid "%s commission when a customer purchases a new license."
2215
  msgstr "カスタマーが新規ライセンスを購入するごとに%sのコミッションが発生します。"
2216
 
2217
- #: templates/forms/affiliation.php:149
2218
  msgid "Get commission for automated subscription renewals."
2219
  msgstr "サブスクリプションの自動更新でコミッションを得ましょう。"
2220
 
2221
- #: templates/forms/affiliation.php:152
2222
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2223
  msgstr "%s初回の訪問後、クッキーをトラッキングして収益の可能性を最大化しましょう。"
2224
 
2225
- #: templates/forms/affiliation.php:155
2226
  msgid "Unlimited commissions."
2227
  msgstr "無制限のコミッション。"
2228
 
2229
- #: templates/forms/affiliation.php:157
2230
  msgid "%s minimum payout amount."
2231
  msgstr "%sお支払いの最低金額"
2232
 
2233
- #: templates/forms/affiliation.php:158
2234
  msgid "Payouts are in USD and processed monthly via PayPal."
2235
  msgstr "お支払いは USD かつ PayPal 経由で毎月行われます。"
2236
 
2237
- #: templates/forms/affiliation.php:159
2238
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2239
  msgstr "30日間の返金期間があるため、コミッションのお支払いは30日以降になります。"
2240
 
2241
- #: templates/forms/affiliation.php:162
2242
  msgid "Affiliate"
2243
  msgstr "アフィリエイト"
2244
 
2245
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2246
  msgid "Email address"
2247
  msgstr "メールアドレス"
2248
 
2249
- #: templates/forms/affiliation.php:169
2250
  msgid "Full name"
2251
  msgstr "フルネーム"
2252
 
2253
- #: templates/forms/affiliation.php:173
2254
  msgid "PayPal account email address"
2255
  msgstr "PayPal アカウントのメールアドレス"
2256
 
2257
- #: templates/forms/affiliation.php:177
2258
  msgid "Where are you going to promote the %s?"
2259
  msgstr "%sのプロモーションを行うサイトはどこですか?"
2260
 
2261
- #: templates/forms/affiliation.php:179
2262
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2263
  msgstr "%sのプロモーションを行う予定のあなたのサイトや他のサイトのドメイン名を入力してください。"
2264
 
2265
- #: templates/forms/affiliation.php:181
2266
  msgid "Add another domain"
2267
  msgstr "ドメイン名を追加する"
2268
 
2269
- #: templates/forms/affiliation.php:185
2270
  msgid "Extra Domains"
2271
  msgstr "追加のドメイン名"
2272
 
2273
- #: templates/forms/affiliation.php:186
2274
  msgid "Extra domains where you will be marketing the product from."
2275
  msgstr "プロダクトフォームのマーケティングを行う追加ドメイン名。"
2276
 
2277
- #: templates/forms/affiliation.php:196
2278
  msgid "Promotion methods"
2279
  msgstr "プロモーション方法"
2280
 
2281
- #: templates/forms/affiliation.php:199
2282
  msgid "Social media (Facebook, Twitter, etc.)"
2283
  msgstr "ソーシャルメディア(Facebook、Twitter、その他)"
2284
 
2285
- #: templates/forms/affiliation.php:203
2286
  msgid "Mobile apps"
2287
  msgstr "モバイルアプリケーション"
2288
 
2289
- #: templates/forms/affiliation.php:207
2290
  msgid "Website, email, and social media statistics (optional)"
2291
  msgstr "ウェブサイト、Email またはソーシャルメディアの統計 (オプション)"
2292
 
2293
- #: templates/forms/affiliation.php:210
2294
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2295
  msgstr "関係のあるウェブサイトやソーシャルメディアの統計を提供してください。例: サイトの月間訪問者数、Emailの購読者数、フォロワー数等 (機密情報として取り扱います)"
2296
 
2297
- #: templates/forms/affiliation.php:214
2298
  msgid "How will you promote us?"
2299
  msgstr "どのように我々をプロモートしますか?"
2300
 
2301
- #: templates/forms/affiliation.php:217
2302
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2303
  msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)"
2304
 
2305
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2306
  msgid "Cancel"
2307
  msgstr "キャンセル"
2308
 
2309
- #: templates/forms/affiliation.php:225
2310
  msgid "Become an affiliate"
2311
  msgstr "アフィリエイトになる"
2312
 
@@ -2380,7 +2412,7 @@ msgstr "\"オプトアウト\"をクリックすることで、もう %s から
2380
  msgid "Plugins & themes tracking"
2381
  msgstr "Plugins & themes tracking"
2382
 
2383
- #: templates/forms/optout.php:256
2384
  msgid "Saved"
2385
  msgstr "Saved"
2386
 
@@ -2469,7 +2501,7 @@ msgstr "Enter email address"
2469
  #: templates/forms/user-change.php:81
2470
  msgctxt "close window"
2471
  msgid "Dismiss"
2472
- msgstr "Dismiss"
2473
 
2474
  #: templates/js/style-premium-theme.php:39
2475
  msgid "Premium"
@@ -2598,19 +2630,19 @@ msgstr "無効化中"
2598
  msgid "switching"
2599
  msgstr "変更中"
2600
 
2601
- #: templates/forms/deactivation/form.php:365
2602
  msgid "Submit & %s"
2603
  msgstr "送信と%s"
2604
 
2605
- #: templates/forms/deactivation/form.php:386
2606
  msgid "Kindly tell us the reason so we can improve."
2607
  msgstr "改善できるよう、どうか理由を教えてください。"
2608
 
2609
- #: templates/forms/deactivation/form.php:511
2610
  msgid "Yes - %s"
2611
  msgstr "はい"
2612
 
2613
- #: templates/forms/deactivation/form.php:518
2614
  msgid "Skip & %s"
2615
  msgstr "スキップと%s"
2616
 
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
  "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
  "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
  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
 
899
+ #: includes/fs-plugin-info-dialog.php:541
900
  msgid "Purchase More"
901
  msgstr "Purchase More"
902
 
903
+ #: includes/fs-plugin-info-dialog.php542,
904
  #: templates/account/partials/addon.php:385
905
  msgctxt "verb"
906
  msgid "Purchase"
907
  msgstr "購入"
908
 
909
+ #: includes/fs-plugin-info-dialog.php:546
910
  msgid "Start my free %s"
911
  msgstr "無料の %s を開始"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:744
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
 
921
+ #: includes/fs-plugin-info-dialog.php:754
922
  msgid "Install Free Version Now"
923
  msgstr "フリーバージョンを今すぐインストール"
924
 
925
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
926
  #: templates/auto-installation.php111,
927
  #: templates/account/partials/addon.php365,
928
  #: templates/account/partials/addon.php:418
929
  msgid "Install Now"
930
  msgstr "今すぐインストール"
931
 
932
+ #: includes/fs-plugin-info-dialog.php:771
933
  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"
941
  msgstr "最新版をダウンロード"
942
 
943
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
944
  #: templates/account/partials/addon.php356,
945
  #: templates/account/partials/addon.php:412
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 "有効化"
957
 
958
+ #: includes/fs-plugin-info-dialog.php:1002
959
  msgctxt "Plugin installer section title"
960
  msgid "Description"
961
  msgstr "説明"
962
 
963
+ #: includes/fs-plugin-info-dialog.php:1003
964
  msgctxt "Plugin installer section title"
965
  msgid "Installation"
966
  msgstr "インストール"
967
 
968
+ #: includes/fs-plugin-info-dialog.php:1004
969
  msgctxt "Plugin installer section title"
970
  msgid "FAQ"
971
  msgstr "FAQ"
972
 
973
+ #: includes/fs-plugin-info-dialog.php1005,
974
  #: templates/plugin-info/description.php:55
975
  msgid "Screenshots"
976
  msgstr "スクリーンショット"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1006
979
  msgctxt "Plugin installer section title"
980
  msgid "Changelog"
981
  msgstr "変更履歴"
982
 
983
+ #: includes/fs-plugin-info-dialog.php:1007
984
  msgctxt "Plugin installer section title"
985
  msgid "Reviews"
986
  msgstr "レビュー"
987
 
988
+ #: includes/fs-plugin-info-dialog.php:1008
989
  msgctxt "Plugin installer section title"
990
  msgid "Other Notes"
991
  msgstr "その他の記述"
992
 
993
+ #: includes/fs-plugin-info-dialog.php:1023
994
  msgctxt "Plugin installer section title"
995
  msgid "Features & Pricing"
996
  msgstr "機能 & 料金"
997
 
998
+ #: includes/fs-plugin-info-dialog.php:1033
999
  msgid "Plugin Install"
1000
  msgstr "プラグインのインストール"
1001
 
1002
+ #: includes/fs-plugin-info-dialog.php:1105
1003
  msgctxt "e.g. Professional Plan"
1004
  msgid "%s Plan"
1005
  msgstr "%s プラン"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1131
1008
  msgctxt "e.g. the best product"
1009
  msgid "Best"
1010
  msgstr "ベスト"
1011
 
1012
+ #: includes/fs-plugin-info-dialog.php1137,
1013
+ #: includes/fs-plugin-info-dialog.php:1157
1014
  msgctxt "as every month"
1015
  msgid "Monthly"
1016
  msgstr "月"
1017
 
1018
+ #: includes/fs-plugin-info-dialog.php:1140
1019
  msgctxt "as once a year"
1020
  msgid "Annual"
1021
  msgstr "年次"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1143
1024
  msgid "Lifetime"
1025
  msgstr "ライフタイム"
1026
 
1027
+ #: includes/fs-plugin-info-dialog.php1157,
1028
+ #: includes/fs-plugin-info-dialog.php1159,
1029
+ #: includes/fs-plugin-info-dialog.php:1161
1030
  msgctxt "e.g. billed monthly"
1031
  msgid "Billed %s"
1032
  msgstr "%s への請求"
1033
 
1034
+ #: includes/fs-plugin-info-dialog.php:1159
1035
  msgctxt "as once a year"
1036
  msgid "Annually"
1037
  msgstr "毎年"
1038
 
1039
+ #: includes/fs-plugin-info-dialog.php:1161
1040
  msgctxt "as once a year"
1041
  msgid "Once"
1042
  msgstr "一度"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php:1167
1045
  msgid "Single Site License"
1046
  msgstr "シングルサイトライセンス"
1047
 
1048
+ #: includes/fs-plugin-info-dialog.php:1169
1049
  msgid "Unlimited Licenses"
1050
  msgstr "無制限ライセンス"
1051
 
1052
+ #: includes/fs-plugin-info-dialog.php:1171
1053
  msgid "Up to %s Sites"
1054
  msgstr "%sサイトまで"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php1181,
1057
  #: templates/plugin-info/features.php:82
1058
  msgctxt "as monthly period"
1059
  msgid "mo"
1060
  msgstr "月"
1061
 
1062
+ #: includes/fs-plugin-info-dialog.php1188,
1063
  #: templates/plugin-info/features.php:80
1064
  msgctxt "as annual period"
1065
  msgid "year"
1066
  msgstr "年"
1067
 
1068
+ #: includes/fs-plugin-info-dialog.php:1242
1069
  msgctxt "noun"
1070
  msgid "Price"
1071
  msgstr "料金"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1290
1074
  msgid "Save %s"
1075
  msgstr "%s を保存"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1300
1078
  msgid "No commitment for %s - cancel anytime"
1079
  msgstr "%s の拘束はありません。いつでもキャンセルできます。"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1303
1082
  msgid "After your free %s, pay as little as %s"
1083
  msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1093
  msgid "Version"
1094
  msgstr "バージョン"
1095
 
1096
+ #: includes/fs-plugin-info-dialog.php:1325
1097
  msgctxt "as the plugin author"
1098
  msgid "Author"
1099
  msgstr "作者"
1100
 
1101
+ #: includes/fs-plugin-info-dialog.php:1332
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 前"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1346
1111
  msgid "Requires WordPress Version"
1112
  msgstr "必要な WordPress のバージョン"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1347
1115
  msgid "%s or higher"
1116
  msgstr "%sまたはそれ以上"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1354
1119
  msgid "Compatible up to"
1120
  msgstr "互換性のある最新バージョン"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1362
1123
  msgid "Downloaded"
1124
  msgstr "ダウンロード済み"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1366
1127
  msgid "%s time"
1128
  msgstr "%s回"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1368
1131
  msgid "%s times"
1132
  msgstr "%s回"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php:1379
1135
  msgid "WordPress.org Plugin Page"
1136
  msgstr "WordPress.org のプラグインページ"
1137
 
1138
+ #: includes/fs-plugin-info-dialog.php:1388
1139
  msgid "Plugin Homepage"
1140
  msgstr "プラグインのホームページ"
1141
 
1142
+ #: includes/fs-plugin-info-dialog.php1397,
1143
+ #: includes/fs-plugin-info-dialog.php:1481
1144
  msgid "Donate to this plugin"
1145
  msgstr "このプラグインに寄付する"
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1404
1148
  msgid "Average Rating"
1149
  msgstr "レーティングの平均"
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1411
1152
  msgid "based on %s"
1153
  msgstr "%sを基に"
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1415
1156
  msgid "%s rating"
1157
  msgstr "%s評価"
1158
 
1159
+ #: includes/fs-plugin-info-dialog.php:1417
1160
  msgid "%s ratings"
1161
  msgstr "%s評価"
1162
 
1163
+ #: includes/fs-plugin-info-dialog.php:1432
1164
  msgid "%s star"
1165
  msgstr "%sスター"
1166
 
1167
+ #: includes/fs-plugin-info-dialog.php:1434
1168
  msgid "%s stars"
1169
  msgstr "%sスター"
1170
 
1171
+ #: includes/fs-plugin-info-dialog.php:1446
1172
  msgid "Click to see reviews that provided a rating of %s"
1173
  msgstr "クリックして%sの評価をしているレビューを観る"
1174
 
1175
+ #: includes/fs-plugin-info-dialog.php:1459
1176
  msgid "Contributors"
1177
  msgstr "コントリビューター"
1178
 
1179
+ #: includes/fs-plugin-info-dialog.php1489,
1180
+ #: includes/fs-plugin-info-dialog.php:1491
1181
  msgid "Warning"
1182
  msgstr "警告"
1183
 
1184
+ #: includes/fs-plugin-info-dialog.php:1489
1185
  msgid "This plugin has not been tested with your current version of WordPress."
1186
  msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
1187
 
1188
+ #: includes/fs-plugin-info-dialog.php:1491
1189
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1190
  msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
1191
 
1192
+ #: includes/fs-plugin-info-dialog.php:1510
1193
  msgid "Paid add-on must be deployed to Freemius."
1194
  msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1195
 
1196
+ #: includes/fs-plugin-info-dialog.php:1511
1197
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1198
  msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1199
 
1200
+ #: includes/fs-plugin-info-dialog.php:1532
1201
  msgid "Newer Version (%s) Installed"
1202
  msgstr "新しいバージョン (%s) がインストールされました"
1203
 
1204
+ #: includes/fs-plugin-info-dialog.php:1533
1205
  msgid "Newer Free Version (%s) Installed"
1206
  msgstr "新しいフリーバージョン (%s) がインストールされました"
1207
 
1208
+ #: includes/fs-plugin-info-dialog.php:1540
1209
  msgid "Latest Version Installed"
1210
  msgstr "最新版がイストールされました"
1211
 
1212
+ #: includes/fs-plugin-info-dialog.php:1541
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "最新のフリーバージョンがインストールされました"
1215
 
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
+
1544
  #: templates/add-ons.php:38
1545
  msgid "View details"
1546
  msgstr "詳細を表示"
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"
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 "有効化中"
2210
  msgid "Apply to become an affiliate"
2211
  msgstr "アフィリエイトに応募する"
2212
 
2213
+ #: templates/forms/affiliation.php:107
2214
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2215
  msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s"
2216
 
2217
+ #: templates/forms/affiliation.php:122
2218
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2219
  msgstr "アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。"
2220
 
2221
+ #: templates/forms/affiliation.php:125
2222
  msgid "Your affiliation account was temporarily suspended."
2223
  msgstr "アフィリエイトアカウントは一時的に停止されました。"
2224
 
2225
+ #: templates/forms/affiliation.php:128
2226
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2227
  msgstr "アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改めてお申込みください。"
2228
 
2229
+ #: templates/forms/affiliation.php:131
2230
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2231
  msgstr "アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問い合わせください。"
2232
 
2233
+ #: templates/forms/affiliation.php:144
2234
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2235
  msgstr "%sは気に入りましたか? アンバサダーになって報酬を得ましょう ;-)"
2236
 
2237
+ #: templates/forms/affiliation.php:145
2238
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2239
  msgstr "新規カスタマーに私たちの%sを紹介して、売り上げごとに%sのコミッションを得ましょう"
2240
 
2241
+ #: templates/forms/affiliation.php:148
2242
  msgid "Program Summary"
2243
  msgstr "プログラム概要"
2244
 
2245
+ #: templates/forms/affiliation.php:150
2246
  msgid "%s commission when a customer purchases a new license."
2247
  msgstr "カスタマーが新規ライセンスを購入するごとに%sのコミッションが発生します。"
2248
 
2249
+ #: templates/forms/affiliation.php:152
2250
  msgid "Get commission for automated subscription renewals."
2251
  msgstr "サブスクリプションの自動更新でコミッションを得ましょう。"
2252
 
2253
+ #: templates/forms/affiliation.php:155
2254
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2255
  msgstr "%s初回の訪問後、クッキーをトラッキングして収益の可能性を最大化しましょう。"
2256
 
2257
+ #: templates/forms/affiliation.php:158
2258
  msgid "Unlimited commissions."
2259
  msgstr "無制限のコミッション。"
2260
 
2261
+ #: templates/forms/affiliation.php:160
2262
  msgid "%s minimum payout amount."
2263
  msgstr "%sお支払いの最低金額"
2264
 
2265
+ #: templates/forms/affiliation.php:161
2266
  msgid "Payouts are in USD and processed monthly via PayPal."
2267
  msgstr "お支払いは USD かつ PayPal 経由で毎月行われます。"
2268
 
2269
+ #: templates/forms/affiliation.php:162
2270
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2271
  msgstr "30日間の返金期間があるため、コミッションのお支払いは30日以降になります。"
2272
 
2273
+ #: templates/forms/affiliation.php:165
2274
  msgid "Affiliate"
2275
  msgstr "アフィリエイト"
2276
 
2277
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2278
  msgid "Email address"
2279
  msgstr "メールアドレス"
2280
 
2281
+ #: templates/forms/affiliation.php:172
2282
  msgid "Full name"
2283
  msgstr "フルネーム"
2284
 
2285
+ #: templates/forms/affiliation.php:176
2286
  msgid "PayPal account email address"
2287
  msgstr "PayPal アカウントのメールアドレス"
2288
 
2289
+ #: templates/forms/affiliation.php:180
2290
  msgid "Where are you going to promote the %s?"
2291
  msgstr "%sのプロモーションを行うサイトはどこですか?"
2292
 
2293
+ #: templates/forms/affiliation.php:182
2294
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2295
  msgstr "%sのプロモーションを行う予定のあなたのサイトや他のサイトのドメイン名を入力してください。"
2296
 
2297
+ #: templates/forms/affiliation.php:184
2298
  msgid "Add another domain"
2299
  msgstr "ドメイン名を追加する"
2300
 
2301
+ #: templates/forms/affiliation.php:188
2302
  msgid "Extra Domains"
2303
  msgstr "追加のドメイン名"
2304
 
2305
+ #: templates/forms/affiliation.php:189
2306
  msgid "Extra domains where you will be marketing the product from."
2307
  msgstr "プロダクトフォームのマーケティングを行う追加ドメイン名。"
2308
 
2309
+ #: templates/forms/affiliation.php:199
2310
  msgid "Promotion methods"
2311
  msgstr "プロモーション方法"
2312
 
2313
+ #: templates/forms/affiliation.php:202
2314
  msgid "Social media (Facebook, Twitter, etc.)"
2315
  msgstr "ソーシャルメディア(Facebook、Twitter、その他)"
2316
 
2317
+ #: templates/forms/affiliation.php:206
2318
  msgid "Mobile apps"
2319
  msgstr "モバイルアプリケーション"
2320
 
2321
+ #: templates/forms/affiliation.php:210
2322
  msgid "Website, email, and social media statistics (optional)"
2323
  msgstr "ウェブサイト、Email またはソーシャルメディアの統計 (オプション)"
2324
 
2325
+ #: templates/forms/affiliation.php:213
2326
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2327
  msgstr "関係のあるウェブサイトやソーシャルメディアの統計を提供してください。例: サイトの月間訪問者数、Emailの購読者数、フォロワー数等 (機密情報として取り扱います)"
2328
 
2329
+ #: templates/forms/affiliation.php:217
2330
  msgid "How will you promote us?"
2331
  msgstr "どのように我々をプロモートしますか?"
2332
 
2333
+ #: templates/forms/affiliation.php:220
2334
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2335
  msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)"
2336
 
2337
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2338
  msgid "Cancel"
2339
  msgstr "キャンセル"
2340
 
2341
+ #: templates/forms/affiliation.php:234
2342
  msgid "Become an affiliate"
2343
  msgstr "アフィリエイトになる"
2344
 
2412
  msgid "Plugins & themes tracking"
2413
  msgstr "Plugins & themes tracking"
2414
 
2415
+ #: templates/forms/optout.php:261
2416
  msgid "Saved"
2417
  msgstr "Saved"
2418
 
2501
  #: templates/forms/user-change.php:81
2502
  msgctxt "close window"
2503
  msgid "Dismiss"
2504
+ msgstr "却下"
2505
 
2506
  #: templates/js/style-premium-theme.php:39
2507
  msgid "Premium"
2630
  msgid "switching"
2631
  msgstr "変更中"
2632
 
2633
+ #: templates/forms/deactivation/form.php:369
2634
  msgid "Submit & %s"
2635
  msgstr "送信と%s"
2636
 
2637
+ #: templates/forms/deactivation/form.php:390
2638
  msgid "Kindly tell us the reason so we can improve."
2639
  msgstr "改善できるよう、どうか理由を教えてください。"
2640
 
2641
+ #: templates/forms/deactivation/form.php:515
2642
  msgid "Yes - %s"
2643
  msgstr "はい"
2644
 
2645
+ #: templates/forms/deactivation/form.php:522
2646
  msgid "Skip & %s"
2647
  msgstr "スキップと%s"
2648
 
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) 2019 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-07-27 11:43+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,811 +22,835 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
38
  msgid "Error"
39
  msgstr "Fout"
40
 
41
- #: includes/class-freemius.php:2492
42
  msgid "I found a better %s"
43
  msgstr "Ik vond een beter %s"
44
 
45
- #: includes/class-freemius.php:2494
46
  msgid "What's the %s's name?"
47
  msgstr "Wat is de naam van het %s?"
48
 
49
- #: includes/class-freemius.php:2500
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:2502
54
  msgid "Deactivation"
55
  msgstr "Deactivatie"
56
 
57
- #: includes/class-freemius.php:2503
58
  msgid "Theme Switch"
59
  msgstr "Thema Wissel"
60
 
61
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
62
  #: templates/forms/user-change.php:29
63
  msgid "Other"
64
  msgstr "Overige"
65
 
66
- #: includes/class-freemius.php:2520
67
  msgid "I no longer need the %s"
68
  msgstr "Ik heb de %s niet meer nodig "
69
 
70
- #: includes/class-freemius.php:2527
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:2533
75
  msgid "The %s broke my site"
76
  msgstr "De %s maakte mijn site onbruikbaar"
77
 
78
- #: includes/class-freemius.php:2540
79
  msgid "The %s suddenly stopped working"
80
  msgstr "De %s werkte opeens niet meer"
81
 
82
- #: includes/class-freemius.php:2550
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:2552
87
  msgid "What price would you feel comfortable paying?"
88
  msgstr "Welke bedrag zou je ervoor over hebben?"
89
 
90
- #: includes/class-freemius.php:2558
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:2579
95
  msgid "The %s didn't work"
96
  msgstr "De %s werkte niet"
97
 
98
- #: includes/class-freemius.php:2589
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:2597
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:2599
107
  msgid "What feature?"
108
  msgstr "Welke feature?"
109
 
110
- #: includes/class-freemius.php:2603
111
  msgid "The %s is not working"
112
  msgstr "De %s werkt niet"
113
 
114
- #: includes/class-freemius.php:2605
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:2609
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:2611
123
  msgid "What you've been looking for?"
124
  msgstr "Waar was je naar op zoek?"
125
 
126
- #: includes/class-freemius.php:2615
127
  msgid "The %s didn't work as expected"
128
  msgstr "De %s werkte niet zoals verwacht"
129
 
130
- #: includes/class-freemius.php:2617
131
  msgid "What did you expect?"
132
  msgstr "Wat had je verwacht?"
133
 
134
- #: includes/class-freemius.php3472, templates/debug.php:20
135
  msgid "Freemius Debug"
136
  msgstr "Freemius Debug"
137
 
138
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
151
  msgid "Yes - do your thing"
152
  msgstr "Ja, ga je gang"
153
 
154
- #: includes/class-freemius.php:4343
155
  msgid "No - just deactivate"
156
  msgstr "Nee - alleen deactiveren"
157
 
158
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
159
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
160
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
161
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
162
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
163
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
164
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
165
- #: includes/class-freemius.php21690, templates/add-ons.php:57
166
  msgctxt "exclamation"
167
  msgid "Oops"
168
  msgstr "Oeps"
169
 
170
- #: includes/class-freemius.php:4457
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:4879
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:4880
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.php5053, includes/class-freemius.php5078,
185
- #: includes/class-freemius.php:20578
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:5777
190
  msgid "Premium %s version was successfully activated."
191
  msgstr "Premium %s versie is succesvol geactiveerd."
192
 
193
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
194
  msgctxt ""
195
  msgid "W00t"
196
  msgstr "W00t"
197
 
198
- #: includes/class-freemius.php:5804
199
  msgid "You have a %s license."
200
  msgstr "Je hebt een %s licentie"
201
 
202
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
203
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
204
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
205
- #: includes/class-freemius.php:20328
206
  msgctxt "interjection expressing joy or exuberance"
207
  msgid "Yee-haw"
208
  msgstr "Hoera"
209
 
210
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
224
  msgid "Purchase License"
225
  msgstr "Licentie Kopen"
226
 
227
- #: includes/class-freemius.php7047, 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:7051
232
  msgid "start the trial"
233
  msgstr "start de proefperiode"
234
 
235
- #: includes/class-freemius.php7052, templates/connect.php:175
236
  msgid "complete the install"
237
  msgstr "voltooi de installatie"
238
 
239
- #: includes/class-freemius.php:7164
240
  msgid "You are just one step away - %s"
241
  msgstr "Je bent slechts een stap verwijderd - %s"
242
 
243
- #: includes/class-freemius.php:7167
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:7245
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:7249
253
  msgid "Opt in to make \"%s\" better!"
254
  msgstr "Opt-in om \"%s\" te verbeteren!"
255
 
256
- #: includes/class-freemius.php:7681
257
  msgid "The upgrade of %s was successfully completed."
258
  msgstr "De upgrade van %s is succesvol voltooid."
259
 
260
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
261
- #: includes/class-fs-plugin-updater.php1239,
262
- #: includes/class-fs-plugin-updater.php1246,
263
  #: templates/auto-installation.php:32
264
  msgid "Add-On"
265
  msgstr "Uitbreiding"
266
 
267
- #: includes/class-freemius.php9910, templates/account.php343,
268
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
269
  msgid "Plugin"
270
  msgstr "Plug-in"
271
 
272
- #: includes/class-freemius.php9911, templates/account.php344,
273
- #: templates/account.php352, 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:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
  msgid "An unknown error has occurred while trying to set the user's beta mode."
280
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
281
 
282
- #: includes/class-freemius.php:12904
283
  msgid "Invalid new user ID or email address."
284
  msgstr "Invalid new user ID or email address."
285
 
286
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
287
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
288
  msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
289
 
290
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
291
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
292
  msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
293
 
294
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
295
  msgid "Change Ownership"
296
  msgstr "Eigendom Overdragen"
297
 
298
- #: includes/class-freemius.php:13438
299
  msgid "Invalid site details collection."
300
  msgstr "Ongeldige verzameling van Site Details."
301
 
302
- #: includes/class-freemius.php:13558
303
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
304
  msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
305
 
306
- #: includes/class-freemius.php:13560
307
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
308
  msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
309
 
310
- #: includes/class-freemius.php:13834
311
  msgid "Account is pending activation."
312
  msgstr "Account wacht op activatie."
313
 
314
- #: includes/class-freemius.php13946,
315
  #: templates/forms/premium-versions-upgrade-handler.php:47
316
  msgid "Buy a license now"
317
  msgstr "Koop nu een licentie"
318
 
319
- #: includes/class-freemius.php13958,
320
  #: templates/forms/premium-versions-upgrade-handler.php:46
321
  msgid "Renew your license now"
322
  msgstr "Vernieuw je licentie nu"
323
 
324
- #: includes/class-freemius.php:13962
325
  msgid "%s to access version %s security & feature updates, and support."
326
  msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
327
 
328
- #: includes/class-freemius.php:16387
329
  msgid "%s activation was successfully completed."
330
  msgstr "%s activatie is succesvol voltooid."
331
 
332
- #: includes/class-freemius.php:16401
333
  msgid "Your account was successfully activated with the %s plan."
334
  msgstr "Je account is succesvol geactiveerd met het %s plan."
335
 
336
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
337
  msgid "Your trial has been successfully started."
338
  msgstr "U proefperiode is met succes gestart."
339
 
340
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
341
- #: includes/class-freemius.php:17258
342
  msgid "Couldn't activate %s."
343
  msgstr "Kon %s niet activeren."
344
 
345
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
346
- #: includes/class-freemius.php:17259
347
  msgid "Please contact us with the following message:"
348
  msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
349
 
350
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
351
  msgid "An unknown error has occurred."
352
  msgstr "An unknown error has occurred."
353
 
354
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
355
  msgid "Upgrade"
356
  msgstr "Upgrade"
357
 
358
- #: includes/class-freemius.php:17622
359
  msgid "Start Trial"
360
  msgstr "Start Proefperiode"
361
 
362
- #: includes/class-freemius.php:17624
363
  msgid "Pricing"
364
  msgstr "Prijzen"
365
 
366
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
367
  msgid "Affiliation"
368
  msgstr "Affiliatie"
369
 
370
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
371
- #: templates/account.php191, templates/debug.php:324
372
  msgid "Account"
373
  msgstr "Account"
374
 
375
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
376
  #: includes/customizer/class-fs-customizer-support-section.php:60
377
  msgid "Contact Us"
378
  msgstr "Contacteer Ons"
379
 
380
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
381
- #: includes/class-freemius.php22603, templates/account.php119,
382
  #: templates/account/partials/addon.php:44
383
  msgid "Add-Ons"
384
  msgstr "Uitbreidingen"
385
 
386
- #: includes/class-freemius.php:17799
387
  msgctxt "ASCII arrow left icon"
388
  msgid "&#x2190;"
389
  msgstr "&#x2190;"
390
 
391
- #: includes/class-freemius.php:17799
392
  msgctxt "ASCII arrow right icon"
393
  msgid "&#x27a4;"
394
  msgstr "&#x27a4;"
395
 
396
- #: includes/class-freemius.php17801, templates/pricing.php:103
397
  msgctxt "noun"
398
  msgid "Pricing"
399
  msgstr "Prijzen"
400
 
401
- #: includes/class-freemius.php18014,
402
  #: includes/customizer/class-fs-customizer-support-section.php:67
403
  msgid "Support Forum"
404
  msgstr "Supportforum"
405
 
406
- #: includes/class-freemius.php:18988
407
  msgid "Your email has been successfully verified - you are AWESOME!"
408
  msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
409
 
410
- #: includes/class-freemius.php:18989
411
  msgctxt "a positive response"
412
  msgid "Right on"
413
  msgstr "Toppie"
414
 
415
- #: includes/class-freemius.php:19493
416
  msgid "seems like the key you entered doesn't match our records."
417
  msgstr "seems like the key you entered doesn't match our records."
418
 
419
- #: includes/class-freemius.php:19517
420
  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."
421
  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."
422
 
423
- #: includes/class-freemius.php:19735
424
  msgid "Your %s Add-on plan was successfully upgraded."
425
  msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
426
 
427
- #: includes/class-freemius.php:19737
428
  msgid "%s Add-on was successfully purchased."
429
  msgstr "%s Add-on werd succesvol aangekocht."
430
 
431
- #: includes/class-freemius.php:19740
432
  msgid "Download the latest version"
433
  msgstr "Download de meeste recente versie"
434
 
435
- #: includes/class-freemius.php:19826
436
  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"
437
  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"
438
 
439
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
440
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
441
  msgid "Error received from the server:"
442
  msgstr "Foutmelding ontvangen van de server:"
443
 
444
- #: includes/class-freemius.php:19842
445
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
446
  msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
447
 
448
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
449
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
450
  msgctxt ""
451
  msgid "Hmm"
452
  msgstr "Hmm"
453
 
454
- #: includes/class-freemius.php:20069
455
  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."
456
  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."
457
 
458
- #: includes/class-freemius.php20070, templates/account.php121,
459
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
460
  msgctxt "trial period"
461
  msgid "Trial"
462
  msgstr "Proefperiode"
463
 
464
- #: includes/class-freemius.php:20075
465
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
466
  msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
467
 
468
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
469
  msgid "Please contact us here"
470
  msgstr "Neem hier a.u.b. contact met ons op"
471
 
472
- #: includes/class-freemius.php:20090
473
  msgid "Your plan was successfully activated."
474
  msgstr "Your plan was successfully activated."
475
 
476
- #: includes/class-freemius.php:20091
477
  msgid "Your plan was successfully upgraded."
478
  msgstr "Je plan is succesvol geüpgraded."
479
 
480
- #: includes/class-freemius.php:20108
481
  msgid "Your plan was successfully changed to %s."
482
  msgstr "Je plan is succesvol veranderd naar %s."
483
 
484
- #: includes/class-freemius.php:20124
485
  msgid "Your license has expired. You can still continue using the free %s forever."
486
  msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
487
 
488
- #: includes/class-freemius.php:20126
489
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
490
  msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
491
 
492
- #: includes/class-freemius.php:20134
493
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
494
  msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
495
 
496
- #: includes/class-freemius.php:20147
497
  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."
498
  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."
499
 
500
- #: includes/class-freemius.php:20173
501
  msgid "Your free trial has expired. You can still continue using all our free features."
502
  msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
503
 
504
- #: includes/class-freemius.php:20175
505
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
  msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
507
 
508
- #: includes/class-freemius.php:20283
509
  msgid "It looks like the license could not be activated."
510
  msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
511
 
512
- #: includes/class-freemius.php:20325
513
  msgid "Your license was successfully activated."
514
  msgstr "Je licentie is succesvol geactiveerd."
515
 
516
- #: includes/class-freemius.php:20351
517
  msgid "It looks like your site currently doesn't have an active license."
518
  msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
519
 
520
- #: includes/class-freemius.php:20375
521
  msgid "It looks like the license deactivation failed."
522
  msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
523
 
524
- #: includes/class-freemius.php:20404
525
  msgid "Your %s license was successfully deactivated."
526
  msgstr "Your %s license was successfully deactivated."
527
 
528
- #: includes/class-freemius.php:20405
529
  msgid "Your license was successfully deactivated, you are back to the %s plan."
530
  msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
531
 
532
- #: includes/class-freemius.php:20408
533
  msgid "O.K"
534
  msgstr "Oké"
535
 
536
- #: includes/class-freemius.php:20461
537
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
538
  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."
539
 
540
- #: includes/class-freemius.php:20470
541
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
542
  msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
543
 
544
- #: includes/class-freemius.php:20512
545
  msgid "You are already running the %s in a trial mode."
546
  msgstr "Je draait de %s al in proefmodus."
547
 
548
- #: includes/class-freemius.php:20523
549
  msgid "You already utilized a trial before."
550
  msgstr "U heeft reeds een proefperiode gebruikt."
551
 
552
- #: includes/class-freemius.php:20537
553
  msgid "Plan %s do not exist, therefore, can't start a trial."
554
  msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
555
 
556
- #: includes/class-freemius.php:20548
557
  msgid "Plan %s does not support a trial period."
558
  msgstr "Plan %s ondersteunt geen proefperiode."
559
 
560
- #: includes/class-freemius.php:20559
561
  msgid "None of the %s's plans supports a trial period."
562
  msgstr "Geen van de %s plannen ondersteunt een proefperiode."
563
 
564
- #: includes/class-freemius.php:20609
565
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
566
  msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
567
 
568
- #: includes/class-freemius.php:20645
569
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
570
  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."
571
 
572
- #: includes/class-freemius.php:20664
573
  msgid "Your %s free trial was successfully cancelled."
574
  msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
575
 
576
- #: includes/class-freemius.php:20980
577
  msgid "Version %s was released."
578
  msgstr "Versie %s is vrijgegeven."
579
 
580
- #: includes/class-freemius.php:20980
581
  msgid "Please download %s."
582
  msgstr "A.u.b. %s downloaden."
583
 
584
- #: includes/class-freemius.php:20987
585
  msgid "the latest %s version here"
586
  msgstr "de meest recente %s versie hier"
587
 
588
- #: includes/class-freemius.php:20992
589
  msgid "New"
590
  msgstr "Nieuw"
591
 
592
- #: includes/class-freemius.php:20997
593
  msgid "Seems like you got the latest release."
594
  msgstr "Het lijkt erop dat je de meest recente versie hebt."
595
 
596
- #: includes/class-freemius.php:20998
597
  msgid "You are all good!"
598
  msgstr "Alles is goed!"
599
 
600
- #: includes/class-freemius.php:21301
601
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
602
  msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
603
 
604
- #: includes/class-freemius.php:21441
605
  msgid "Site successfully opted in."
606
  msgstr "Site opt-in geslaagd. "
607
 
608
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
609
  msgid "Awesome"
610
  msgstr "Geweldig"
611
 
612
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
613
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
614
  msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
615
 
616
- #: includes/class-freemius.php:21459
617
  msgid "Thank you!"
618
  msgstr "Bedankt!"
619
 
620
- #: includes/class-freemius.php:21466
621
  msgid "We will no longer be sending any usage data of %s on %s to %s."
622
  msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
623
 
624
- #: includes/class-freemius.php:21612
625
  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."
626
  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."
627
 
628
- #: includes/class-freemius.php:21618
629
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
630
  msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
631
 
632
- #: includes/class-freemius.php:21623
633
  msgid "%s is the new owner of the account."
634
  msgstr "%s is de nieuwe eigenaar van het account."
635
 
636
- #: includes/class-freemius.php:21625
637
  msgctxt "as congratulations"
638
  msgid "Congrats"
639
  msgstr "Gefeliciteerd"
640
 
641
- #: includes/class-freemius.php:21661
642
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
643
  msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
644
 
645
- #: includes/class-freemius.php:21673
646
  msgid "Please provide your full name."
647
  msgstr "Geef alsjeblieft je volledige naam."
648
 
649
- #: includes/class-freemius.php:21678
650
  msgid "Your name was successfully updated."
651
  msgstr "Je naam is succesvol bijgewerkt."
652
 
653
- #: includes/class-freemius.php:21739
654
  msgid "You have successfully updated your %s."
655
  msgstr "Je hebt je %s succesvol geüpdatet."
656
 
657
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
658
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
659
  msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
660
 
661
- #: includes/class-freemius.php:21880
662
  msgctxt "advance notice of something that will need attention."
663
  msgid "Heads up"
664
  msgstr "Aankondiging"
665
 
666
- #: includes/class-freemius.php:22339
667
  msgctxt "exclamation"
668
  msgid "Hey"
669
  msgstr "Hoi"
670
 
671
- #: includes/class-freemius.php:22339
672
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
673
  msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
674
 
675
- #: includes/class-freemius.php:22347
676
  msgid "No commitment for %s days - cancel anytime!"
677
  msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
678
 
679
- #: includes/class-freemius.php:22348
680
  msgid "No credit card required"
681
  msgstr "Geen creditcard nodig"
682
 
683
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
684
  msgctxt "call to action"
685
  msgid "Start free trial"
686
  msgstr "Start gratis proefperidoe"
687
 
688
- #: includes/class-freemius.php:22432
689
  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!"
690
  msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
691
 
692
- #: includes/class-freemius.php:22441
693
  msgid "Learn more"
694
  msgstr "Lees meer"
695
 
696
- #: includes/class-freemius.php22627, templates/account.php507,
697
- #: templates/account.php657, templates/connect.php179,
698
- #: templates/connect.php455, templates/forms/license-activation.php27,
699
  #: templates/account/partials/addon.php:321
700
  msgid "Activate License"
701
  msgstr "Activeer Licentie"
702
 
703
- #: includes/class-freemius.php22628, templates/account.php601,
704
- #: templates/account.php656, templates/account/partials/addon.php322,
705
  #: templates/account/partials/site.php:271
706
  msgid "Change License"
707
  msgstr "Verander Licentie"
708
 
709
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
710
  msgid "Opt Out"
711
  msgstr "Opt Out"
712
 
713
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
714
  #: templates/account/partials/site.php49,
715
  #: templates/account/partials/site.php:169
716
  msgid "Opt In"
717
  msgstr "Opt In"
718
 
719
- #: includes/class-freemius.php:22973
720
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
721
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
722
 
723
- #: includes/class-freemius.php:22981
724
  msgid "Activate %s features"
725
  msgstr "Activeer %s features."
726
 
727
- #: includes/class-freemius.php:22994
728
  msgid "Please follow these steps to complete the upgrade"
729
  msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
730
 
731
- #: includes/class-freemius.php:22998
732
  msgid "Download the latest %s version"
733
  msgstr "Download de meeste recente %s versie"
734
 
735
- #: includes/class-freemius.php:23002
736
  msgid "Upload and activate the downloaded version"
737
  msgstr "Upload en activeer de gedownloade versie"
738
 
739
- #: includes/class-freemius.php:23004
740
  msgid "How to upload and activate?"
741
  msgstr "Hoe te uploaden en activeren?"
742
 
743
- #: includes/class-freemius.php:23138
744
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
745
  msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
746
 
747
- #: includes/class-freemius.php:23299
748
  msgid "Auto installation only works for opted-in users."
749
  msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
750
 
751
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
752
- #: includes/class-fs-plugin-updater.php1218,
753
- #: includes/class-fs-plugin-updater.php:1232
754
  msgid "Invalid module ID."
755
  msgstr "Ongeldige Module-ID"
756
 
757
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
758
  msgid "Premium version already active."
759
  msgstr "Premium versie reeds actief."
760
 
761
- #: includes/class-freemius.php:23325
762
  msgid "You do not have a valid license to access the premium version."
763
  msgstr "Je hebt geen geldige licentie voor de premium versie."
764
 
765
- #: includes/class-freemius.php:23332
766
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
767
  msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
768
 
769
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
770
  msgid "Premium add-on version already installed."
771
  msgstr "Premium add-on versie is reeds geïnstalleerd."
772
 
773
- #: includes/class-freemius.php:23700
774
  msgid "View paid features"
775
  msgstr "Bekijk betaalde kenmerken"
776
 
777
- #: includes/class-freemius.php:24022
778
  msgid "Thank you so much for using %s and its add-ons!"
779
  msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
780
 
781
- #: includes/class-freemius.php:24023
782
  msgid "Thank you so much for using %s!"
783
  msgstr "Hartelijk bedankt voor het gebruik van %s!"
784
 
785
- #: includes/class-freemius.php:24029
786
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
787
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
788
 
789
- #: includes/class-freemius.php:24033
790
  msgid "Thank you so much for using our products!"
791
  msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
792
 
793
- #: includes/class-freemius.php:24034
794
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
795
  msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
796
 
797
- #: includes/class-freemius.php:24053
798
  msgid "%s and its add-ons"
799
  msgstr "%sen bijbehorende uitbreidingen"
800
 
801
- #: includes/class-freemius.php:24062
802
  msgid "Products"
803
  msgstr "Producten"
804
 
805
- #: includes/class-freemius.php24069, templates/connect.php:280
806
  msgid "Yes"
807
  msgstr "Ja"
808
 
809
- #: includes/class-freemius.php24070, templates/connect.php:281
810
  msgid "send me security & feature updates, educational content and offers."
811
  msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
812
 
813
- #: includes/class-freemius.php24071, templates/connect.php:286
814
  msgid "No"
815
  msgstr "Nee"
816
 
817
- #: includes/class-freemius.php24073, templates/connect.php:288
818
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
819
  msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
820
 
821
- #: includes/class-freemius.php:24083
822
  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 :-)"
823
  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 :-)"
824
 
825
- #: includes/class-freemius.php24085, templates/connect.php:295
826
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
827
  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:"
828
 
829
- #: includes/class-freemius.php:24367
830
  msgid "License key is empty."
831
  msgstr "Licentiesleutel is leeg."
832
 
@@ -859,332 +883,332 @@ msgstr "nieuwe versie"
859
  msgid "Important Upgrade Notice:"
860
  msgstr "Belangrijke Upgrade Mededeling:"
861
 
862
- #: includes/class-fs-plugin-updater.php:1283
863
  msgid "Installing plugin: %s"
864
  msgstr "Installeren van plug-in: %s"
865
 
866
- #: includes/class-fs-plugin-updater.php:1324
867
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
868
  msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
869
 
870
- #: includes/class-fs-plugin-updater.php:1506
871
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
872
  msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
873
 
874
- #: includes/fs-plugin-info-dialog.php:535
875
  msgid "Purchase More"
876
  msgstr "Purchase More"
877
 
878
- #: includes/fs-plugin-info-dialog.php536,
879
  #: templates/account/partials/addon.php:385
880
  msgctxt "verb"
881
  msgid "Purchase"
882
  msgstr "Koop"
883
 
884
- #: includes/fs-plugin-info-dialog.php:540
885
  msgid "Start my free %s"
886
  msgstr "Start mijn gratis %s"
887
 
888
- #: includes/fs-plugin-info-dialog.php:738
889
  msgid "Install Free Version Update Now"
890
  msgstr "Installeer Gratis Versie Update Nu"
891
 
892
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
893
  msgid "Install Update Now"
894
  msgstr "Installeer Update Nu"
895
 
896
- #: includes/fs-plugin-info-dialog.php:748
897
  msgid "Install Free Version Now"
898
  msgstr "Installer Gratis Versie Nu"
899
 
900
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
901
  #: templates/auto-installation.php111,
902
  #: templates/account/partials/addon.php365,
903
  #: templates/account/partials/addon.php:418
904
  msgid "Install Now"
905
  msgstr "Installeer Nu"
906
 
907
- #: includes/fs-plugin-info-dialog.php:765
908
  msgctxt "as download latest version"
909
  msgid "Download Latest Free Version"
910
  msgstr "Download Nieuwste Gratis Versie"
911
 
912
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
913
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
914
  msgctxt "as download latest version"
915
  msgid "Download Latest"
916
  msgstr "Download Nieuwste"
917
 
918
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
919
  #: templates/account/partials/addon.php356,
920
  #: templates/account/partials/addon.php:412
921
  msgid "Activate this add-on"
922
  msgstr "Activeer deze add-on"
923
 
924
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
925
  msgid "Activate Free Version"
926
  msgstr "Activeer Gratis Versie"
927
 
928
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
929
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
930
  msgid "Activate"
931
  msgstr "Activeer"
932
 
933
- #: includes/fs-plugin-info-dialog.php:994
934
  msgctxt "Plugin installer section title"
935
  msgid "Description"
936
  msgstr "Beschrijving"
937
 
938
- #: includes/fs-plugin-info-dialog.php:995
939
  msgctxt "Plugin installer section title"
940
  msgid "Installation"
941
  msgstr "Installatie"
942
 
943
- #: includes/fs-plugin-info-dialog.php:996
944
  msgctxt "Plugin installer section title"
945
  msgid "FAQ"
946
  msgstr "Veelgestelde Vragen"
947
 
948
- #: includes/fs-plugin-info-dialog.php997,
949
  #: templates/plugin-info/description.php:55
950
  msgid "Screenshots"
951
  msgstr "Schermafbeeldingen"
952
 
953
- #: includes/fs-plugin-info-dialog.php:998
954
  msgctxt "Plugin installer section title"
955
  msgid "Changelog"
956
  msgstr "Wijzigingen Log"
957
 
958
- #: includes/fs-plugin-info-dialog.php:999
959
  msgctxt "Plugin installer section title"
960
  msgid "Reviews"
961
  msgstr "Reviews"
962
 
963
- #: includes/fs-plugin-info-dialog.php:1000
964
  msgctxt "Plugin installer section title"
965
  msgid "Other Notes"
966
  msgstr "Andere Notities"
967
 
968
- #: includes/fs-plugin-info-dialog.php:1015
969
  msgctxt "Plugin installer section title"
970
  msgid "Features & Pricing"
971
  msgstr "Features & Prijzen"
972
 
973
- #: includes/fs-plugin-info-dialog.php:1025
974
  msgid "Plugin Install"
975
  msgstr "Plug-in Installatie"
976
 
977
- #: includes/fs-plugin-info-dialog.php:1097
978
  msgctxt "e.g. Professional Plan"
979
  msgid "%s Plan"
980
  msgstr "%s Plan"
981
 
982
- #: includes/fs-plugin-info-dialog.php:1123
983
  msgctxt "e.g. the best product"
984
  msgid "Best"
985
  msgstr "Beste"
986
 
987
- #: includes/fs-plugin-info-dialog.php1129,
988
- #: includes/fs-plugin-info-dialog.php:1149
989
  msgctxt "as every month"
990
  msgid "Monthly"
991
  msgstr "Maandelijks"
992
 
993
- #: includes/fs-plugin-info-dialog.php:1132
994
  msgctxt "as once a year"
995
  msgid "Annual"
996
  msgstr "Jaarlijks"
997
 
998
- #: includes/fs-plugin-info-dialog.php:1135
999
  msgid "Lifetime"
1000
  msgstr "Levenslang"
1001
 
1002
- #: includes/fs-plugin-info-dialog.php1149,
1003
- #: includes/fs-plugin-info-dialog.php1151,
1004
- #: includes/fs-plugin-info-dialog.php:1153
1005
  msgctxt "e.g. billed monthly"
1006
  msgid "Billed %s"
1007
  msgstr "%s gefactureerd "
1008
 
1009
- #: includes/fs-plugin-info-dialog.php:1151
1010
  msgctxt "as once a year"
1011
  msgid "Annually"
1012
  msgstr "Jaarlijks"
1013
 
1014
- #: includes/fs-plugin-info-dialog.php:1153
1015
  msgctxt "as once a year"
1016
  msgid "Once"
1017
  msgstr "Eenmalig"
1018
 
1019
- #: includes/fs-plugin-info-dialog.php:1159
1020
  msgid "Single Site License"
1021
  msgstr "Enkele Site Licentie"
1022
 
1023
- #: includes/fs-plugin-info-dialog.php:1161
1024
  msgid "Unlimited Licenses"
1025
  msgstr "Onbeperkte Licenties"
1026
 
1027
- #: includes/fs-plugin-info-dialog.php:1163
1028
  msgid "Up to %s Sites"
1029
  msgstr "Tot %s Sites"
1030
 
1031
- #: includes/fs-plugin-info-dialog.php1173,
1032
  #: templates/plugin-info/features.php:82
1033
  msgctxt "as monthly period"
1034
  msgid "mo"
1035
  msgstr "mnd"
1036
 
1037
- #: includes/fs-plugin-info-dialog.php1180,
1038
  #: templates/plugin-info/features.php:80
1039
  msgctxt "as annual period"
1040
  msgid "year"
1041
  msgstr "jaar"
1042
 
1043
- #: includes/fs-plugin-info-dialog.php:1234
1044
  msgctxt "noun"
1045
  msgid "Price"
1046
  msgstr "Prijs"
1047
 
1048
- #: includes/fs-plugin-info-dialog.php:1282
1049
  msgid "Save %s"
1050
  msgstr "Bespaar %s"
1051
 
1052
- #: includes/fs-plugin-info-dialog.php:1292
1053
  msgid "No commitment for %s - cancel anytime"
1054
  msgstr "Geen verplichting voor %s - opzeggen kan altijd"
1055
 
1056
- #: includes/fs-plugin-info-dialog.php:1295
1057
  msgid "After your free %s, pay as little as %s"
1058
  msgstr "Na uw gratis %s, betaal slechts %s"
1059
 
1060
- #: includes/fs-plugin-info-dialog.php:1306
1061
  msgid "Details"
1062
  msgstr "Details"
1063
 
1064
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1065
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1066
  #: templates/account/partials/addon.php:36
1067
  msgctxt "product version"
1068
  msgid "Version"
1069
  msgstr "Versie"
1070
 
1071
- #: includes/fs-plugin-info-dialog.php:1317
1072
  msgctxt "as the plugin author"
1073
  msgid "Author"
1074
  msgstr "Auteur"
1075
 
1076
- #: includes/fs-plugin-info-dialog.php:1324
1077
  msgid "Last Updated"
1078
  msgstr "Laatst Geüpdatet"
1079
 
1080
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1081
  msgctxt "x-ago"
1082
  msgid "%s ago"
1083
  msgstr "%s geleden"
1084
 
1085
- #: includes/fs-plugin-info-dialog.php:1338
1086
  msgid "Requires WordPress Version"
1087
  msgstr "Vereiste WordPress-versie"
1088
 
1089
- #: includes/fs-plugin-info-dialog.php:1339
1090
  msgid "%s or higher"
1091
  msgstr "%s of hoger"
1092
 
1093
- #: includes/fs-plugin-info-dialog.php:1346
1094
  msgid "Compatible up to"
1095
  msgstr "Compatible tot"
1096
 
1097
- #: includes/fs-plugin-info-dialog.php:1354
1098
  msgid "Downloaded"
1099
  msgstr "Gedownload"
1100
 
1101
- #: includes/fs-plugin-info-dialog.php:1358
1102
  msgid "%s time"
1103
  msgstr "%s tijd"
1104
 
1105
- #: includes/fs-plugin-info-dialog.php:1360
1106
  msgid "%s times"
1107
  msgstr "%s tijden"
1108
 
1109
- #: includes/fs-plugin-info-dialog.php:1370
1110
  msgid "WordPress.org Plugin Page"
1111
  msgstr "WordPress.org Plug-in Pagina"
1112
 
1113
- #: includes/fs-plugin-info-dialog.php:1378
1114
  msgid "Plugin Homepage"
1115
  msgstr "Plug-in Homepage"
1116
 
1117
- #: includes/fs-plugin-info-dialog.php1386,
1118
- #: includes/fs-plugin-info-dialog.php:1468
1119
  msgid "Donate to this plugin"
1120
  msgstr "Doneer aan deze plug-in"
1121
 
1122
- #: includes/fs-plugin-info-dialog.php:1393
1123
  msgid "Average Rating"
1124
  msgstr "Gemiddelde Beoordeling"
1125
 
1126
- #: includes/fs-plugin-info-dialog.php:1400
1127
  msgid "based on %s"
1128
  msgstr "gebaseerd op %s"
1129
 
1130
- #: includes/fs-plugin-info-dialog.php:1404
1131
  msgid "%s rating"
1132
  msgstr "%s beoordeling"
1133
 
1134
- #: includes/fs-plugin-info-dialog.php:1406
1135
  msgid "%s ratings"
1136
  msgstr "%s beoordelingen"
1137
 
1138
- #: includes/fs-plugin-info-dialog.php:1421
1139
  msgid "%s star"
1140
  msgstr "%s ster"
1141
 
1142
- #: includes/fs-plugin-info-dialog.php:1423
1143
  msgid "%s stars"
1144
  msgstr "%s sterren"
1145
 
1146
- #: includes/fs-plugin-info-dialog.php:1434
1147
  msgid "Click to see reviews that provided a rating of %s"
1148
  msgstr "Klik om reviews te bekijken met een beoordeling van%s"
1149
 
1150
- #: includes/fs-plugin-info-dialog.php:1447
1151
  msgid "Contributors"
1152
  msgstr "Medewerkers"
1153
 
1154
- #: includes/fs-plugin-info-dialog.php1476,
1155
- #: includes/fs-plugin-info-dialog.php:1478
1156
  msgid "Warning"
1157
  msgstr "Waarschuwing"
1158
 
1159
- #: includes/fs-plugin-info-dialog.php:1476
1160
  msgid "This plugin has not been tested with your current version of WordPress."
1161
  msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. "
1162
 
1163
- #: includes/fs-plugin-info-dialog.php:1478
1164
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1165
  msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie."
1166
 
1167
- #: includes/fs-plugin-info-dialog.php:1497
1168
  msgid "Paid add-on must be deployed to Freemius."
1169
  msgstr "Betaalde add-on moet op Freemius geplaatst worden."
1170
 
1171
- #: includes/fs-plugin-info-dialog.php:1498
1172
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1173
  msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden."
1174
 
1175
- #: includes/fs-plugin-info-dialog.php:1519
1176
  msgid "Newer Version (%s) Installed"
1177
  msgstr "Nieuwere Versie (%s) Geïnstalleerd"
1178
 
1179
- #: includes/fs-plugin-info-dialog.php:1520
1180
  msgid "Newer Free Version (%s) Installed"
1181
  msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd"
1182
 
1183
- #: includes/fs-plugin-info-dialog.php:1527
1184
  msgid "Latest Version Installed"
1185
  msgstr "Meest Recente Versie Geïnstalleerd"
1186
 
1187
- #: includes/fs-plugin-info-dialog.php:1528
1188
  msgid "Latest Free Version Installed"
1189
  msgstr "Nieuwste Gratis Versie Geïnstalleerd"
1190
 
@@ -1291,223 +1315,231 @@ msgstr "Plan"
1291
  msgid "Bundle Plan"
1292
  msgstr "Bundle Plan"
1293
 
1294
- #: templates/account.php:199
1295
  msgid "Free Trial"
1296
  msgstr "Gratis Proefperiode"
1297
 
1298
- #: templates/account.php:210
1299
  msgid "Account Details"
1300
  msgstr "Accountgegevens"
1301
 
1302
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1303
  msgid "Start Debug"
1304
  msgstr "Start Debug"
1305
 
1306
- #: templates/account.php:219
1307
  msgid "Stop Debug"
1308
  msgstr "Stop Debug"
1309
 
1310
- #: templates/account.php:226
1311
  msgid "Billing & Invoices"
1312
  msgstr "Billing & Invoices"
1313
 
1314
- #: templates/account.php:237
1315
  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?"
1316
  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?"
1317
 
1318
- #: templates/account.php:239
1319
  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?"
1320
  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?"
1321
 
1322
- #: templates/account.php:242
1323
  msgid "Delete Account"
1324
  msgstr "Verwijder Account"
1325
 
1326
- #: templates/account.php254, templates/account/partials/addon.php231,
1327
  #: templates/account/partials/deactivate-license-button.php:35
1328
  msgid "Deactivate License"
1329
  msgstr "Deactiveer Licentie"
1330
 
1331
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1332
  msgid "Are you sure you want to proceed?"
1333
  msgstr "Weet je zeker dat je wilt doorgaan?"
1334
 
1335
- #: templates/account.php277, templates/account/partials/addon.php:255
1336
  msgid "Cancel Subscription"
1337
  msgstr "Abonnement Opzeggen"
1338
 
1339
- #: templates/account.php306, templates/account/partials/addon.php:340
1340
  msgctxt "as synchronize"
1341
  msgid "Sync"
1342
  msgstr "Sync"
1343
 
1344
- #: templates/account.php321, templates/debug.php:505
1345
  msgid "Name"
1346
  msgstr "Naam"
1347
 
1348
- #: templates/account.php327, templates/debug.php:506
1349
  msgid "Email"
1350
  msgstr "E-mail"
1351
 
1352
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1353
  msgid "User ID"
1354
  msgstr "Gebruikers ID"
1355
 
1356
- #: templates/account.php352, templates/account.php670,
1357
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1358
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1359
  #: templates/debug.php632, templates/account/payments.php35,
1360
  #: templates/debug/logger.php:21
1361
  msgid "ID"
1362
  msgstr "ID"
1363
 
1364
- #: templates/account.php:359
1365
  msgid "Site ID"
1366
  msgstr "Site ID"
1367
 
1368
- #: templates/account.php:362
1369
  msgid "No ID"
1370
  msgstr "Geen ID"
1371
 
1372
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1373
  #: templates/debug.php456, templates/debug.php508,
1374
  #: templates/account/partials/site.php:227
1375
  msgid "Public Key"
1376
  msgstr "Publieke Sleutel"
1377
 
1378
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1379
  #: templates/debug.php509, templates/account/partials/site.php:239
1380
  msgid "Secret Key"
1381
  msgstr "Geheime Sleutel"
1382
 
1383
- #: templates/account.php:376
1384
  msgctxt "as secret encryption key missing"
1385
  msgid "No Secret"
1386
  msgstr "Geen Geheim"
1387
 
1388
- #: templates/account.php403, templates/account/partials/site.php120,
1389
  #: templates/account/partials/site.php:122
1390
  msgid "Trial"
1391
  msgstr "Proefperiode"
1392
 
1393
- #: templates/account.php430, templates/debug.php561,
1394
  #: templates/account/partials/site.php:260
1395
  msgid "License Key"
1396
  msgstr "Licentiesleutel"
1397
 
1398
- #: templates/account.php:461
1399
  msgid "Join the Beta program"
1400
  msgstr "Join the Beta program"
1401
 
1402
- #: templates/account.php:467
1403
  msgid "not verified"
1404
  msgstr "niet geverifieerd"
1405
 
1406
- #: templates/account.php476, templates/account/partials/addon.php:190
1407
  msgid "Expired"
1408
  msgstr "Verlopen"
1409
 
1410
- #: templates/account.php:536
1411
  msgid "Premium version"
1412
  msgstr "Premium versie"
1413
 
1414
- #: templates/account.php:538
1415
  msgid "Free version"
1416
  msgstr "Gratis versie"
1417
 
1418
- #: templates/account.php:550
1419
  msgid "Verify Email"
1420
  msgstr "Verifieer E-mail"
1421
 
1422
- #: templates/account.php:564
1423
  msgid "Download %s Version"
1424
  msgstr "Download %s Versie"
1425
 
1426
- #: templates/account.php:580
1427
  msgid "Download Paid Version"
1428
  msgstr "Download Paid Version"
1429
 
1430
- #: templates/account.php598, templates/account.php853,
1431
  #: templates/account/partials/site.php248,
1432
  #: templates/account/partials/site.php:270
1433
  msgctxt "verb"
1434
  msgid "Show"
1435
  msgstr "Toon"
1436
 
1437
- #: templates/account.php:613
1438
  msgid "What is your %s?"
1439
  msgstr "Wat is je %s?"
1440
 
1441
- #: templates/account.php621, templates/account/billing.php:21
1442
  msgctxt "verb"
1443
  msgid "Edit"
1444
  msgstr "Bewerk"
1445
 
1446
- #: templates/account.php625, templates/forms/user-change.php:27
1447
  msgid "Change User"
1448
  msgstr "Change User"
1449
 
1450
- #: templates/account.php:649
1451
  msgid "Sites"
1452
  msgstr "Sites"
1453
 
1454
- #: templates/account.php:662
1455
  msgid "Search by address"
1456
  msgstr "Zoek op adres"
1457
 
1458
- #: templates/account.php671, templates/debug.php:366
1459
  msgid "Address"
1460
  msgstr "Adres"
1461
 
1462
- #: templates/account.php:672
1463
  msgid "License"
1464
  msgstr "Licentie"
1465
 
1466
- #: templates/account.php:673
1467
  msgid "Plan"
1468
  msgstr "Plan"
1469
 
1470
- #: templates/account.php:718
1471
  msgctxt "as software license"
1472
  msgid "License"
1473
  msgstr "Licentie"
1474
 
1475
- #: templates/account.php:847
1476
  msgctxt "verb"
1477
  msgid "Hide"
1478
  msgstr "Verberg"
1479
 
1480
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1481
  msgid "Processing"
1482
  msgstr "Processing"
1483
 
1484
- #: templates/account.php:872
1485
  msgid "Get updates for bleeding edge Beta versions of %s."
1486
  msgstr "Get updates for bleeding edge Beta versions of %s."
1487
 
1488
- #: templates/account.php:930
1489
  msgid "Cancelling %s"
1490
  msgstr "Annuleren %s"
1491
 
1492
- #: templates/account.php930, templates/account.php947,
1493
  #: templates/forms/subscription-cancellation.php27,
1494
  #: templates/forms/deactivation/form.php:133
1495
  msgid "trial"
1496
  msgstr "proefperiode"
1497
 
1498
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1499
  msgid "Cancelling %s..."
1500
  msgstr "%s wordt geannuleerd..."
1501
 
1502
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1503
  #: templates/forms/deactivation/form.php:134
1504
  msgid "subscription"
1505
  msgstr "abonnement"
1506
 
1507
- #: templates/account.php:962
1508
  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?"
1509
  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?"
1510
 
 
 
 
 
 
 
 
 
1511
  #: templates/add-ons.php:38
1512
  msgid "View details"
1513
  msgstr "Bekijk details"
@@ -1639,7 +1671,7 @@ msgstr "Licentiesleutel"
1639
  msgid "Can't find your license key?"
1640
  msgstr "Kan je je licentiesleutel niet vinden?"
1641
 
1642
- #: templates/connect.php323, templates/connect.php694,
1643
  #: templates/forms/deactivation/retry-skip.php:20
1644
  msgctxt "verb"
1645
  msgid "Skip"
@@ -1691,46 +1723,46 @@ msgstr "Nieuwsbrief"
1691
 
1692
  #: templates/connect.php:403
1693
  msgid "Plugins & Themes"
1694
- msgstr "Plugins & Themes"
1695
 
1696
  #: templates/connect.php:404
1697
  msgid "Title, slug, version, and is active"
1698
  msgstr "Title, slug, version, and is active"
1699
 
1700
- #: templates/connect.php420, templates/forms/license-activation.php:41
1701
  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."
1702
  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."
1703
 
1704
- #: templates/connect.php:425
1705
  msgid "What permissions are being granted?"
1706
  msgstr "Welke toestemmingen worden er verleend?"
1707
 
1708
- #: templates/connect.php:451
1709
  msgid "Don't have a license key?"
1710
  msgstr "Heb je geen licentiesleutel?"
1711
 
1712
- #: templates/connect.php:454
1713
  msgid "Have a license key?"
1714
  msgstr "Heb je een licentiesleutel?"
1715
 
1716
- #: templates/connect.php:462
1717
  msgid "Privacy Policy"
1718
  msgstr "Privacybeleid"
1719
 
1720
- #: templates/connect.php:464
1721
  msgid "License Agreement"
1722
  msgstr "Licentieovereenkomst"
1723
 
1724
- #: templates/connect.php:464
1725
  msgid "Terms of Service"
1726
  msgstr "Servicevoorwaarden"
1727
 
1728
- #: templates/connect.php:853
1729
  msgctxt "as in the process of sending an email"
1730
  msgid "Sending email"
1731
  msgstr "E-mail versturen"
1732
 
1733
- #: templates/connect.php:854
1734
  msgctxt "as activating plugin"
1735
  msgid "Activating"
1736
  msgstr "Activeren"
@@ -2177,135 +2209,135 @@ msgstr "Niet-verlopende"
2177
  msgid "Apply to become an affiliate"
2178
  msgstr "Meld je aan om een affiliate partner te worden"
2179
 
2180
- #: templates/forms/affiliation.php:104
2181
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2182
  msgstr "Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je samenwerkingsomgeving op: %s."
2183
 
2184
- #: templates/forms/affiliation.php:119
2185
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2186
  msgstr "Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende informatie zullen sturen."
2187
 
2188
- #: templates/forms/affiliation.php:122
2189
  msgid "Your affiliation account was temporarily suspended."
2190
  msgstr "Je affiliate account is tijdelijk geschorst."
2191
 
2192
- #: templates/forms/affiliation.php:125
2193
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2194
  msgstr "Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het alsjeblieft over 30 dagen nog eens."
2195
 
2196
- #: templates/forms/affiliation.php:128
2197
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2198
  msgstr "Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele vragen alsjeblieft contact op met support."
2199
 
2200
- #: templates/forms/affiliation.php:141
2201
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2202
  msgstr "Vind je de %s goed? Word dan onze ambassadeur en verdien cash ;-)"
2203
 
2204
- #: templates/forms/affiliation.php:142
2205
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2206
  msgstr "Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door jou doorverwezen, geslaagde verkoop!"
2207
 
2208
- #: templates/forms/affiliation.php:145
2209
  msgid "Program Summary"
2210
  msgstr "Programma Samenvatting"
2211
 
2212
- #: templates/forms/affiliation.php:147
2213
  msgid "%s commission when a customer purchases a new license."
2214
  msgstr "%s commissie als een klant een nieuwe licentie koopt. "
2215
 
2216
- #: templates/forms/affiliation.php:149
2217
  msgid "Get commission for automated subscription renewals."
2218
  msgstr "Krijg een commissie voor automatische abonnementsverlengingen."
2219
 
2220
- #: templates/forms/affiliation.php:152
2221
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2222
  msgstr "%s tracking cookie na eerste bezoek om je verdienpotentieel te maximaliseren."
2223
 
2224
- #: templates/forms/affiliation.php:155
2225
  msgid "Unlimited commissions."
2226
  msgstr "Onbeperkte commissies."
2227
 
2228
- #: templates/forms/affiliation.php:157
2229
  msgid "%s minimum payout amount."
2230
  msgstr "%s minimum uitbetalingsbedrag."
2231
 
2232
- #: templates/forms/affiliation.php:158
2233
  msgid "Payouts are in USD and processed monthly via PayPal."
2234
  msgstr "Uitbetalingen zijn in USD en worden maandelijks uitgevoerd via PayPal"
2235
 
2236
- #: templates/forms/affiliation.php:159
2237
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2238
  msgstr "Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we alleen commissies uit die ouder dan 30 dagen zijn."
2239
 
2240
- #: templates/forms/affiliation.php:162
2241
  msgid "Affiliate"
2242
  msgstr "Affiliate"
2243
 
2244
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2245
  msgid "Email address"
2246
  msgstr "E-mailadres"
2247
 
2248
- #: templates/forms/affiliation.php:169
2249
  msgid "Full name"
2250
  msgstr "Volledige naam"
2251
 
2252
- #: templates/forms/affiliation.php:173
2253
  msgid "PayPal account email address"
2254
  msgstr "PayPal account e-mailadres"
2255
 
2256
- #: templates/forms/affiliation.php:177
2257
  msgid "Where are you going to promote the %s?"
2258
  msgstr "Waar ga je de %s promoten?"
2259
 
2260
- #: templates/forms/affiliation.php:179
2261
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2262
  msgstr "Voer de domeinnaam in van je website of andere websites waar vanaf je van plan bent de %ste gaan promoten."
2263
 
2264
- #: templates/forms/affiliation.php:181
2265
  msgid "Add another domain"
2266
  msgstr "Voeg nog een domein toe"
2267
 
2268
- #: templates/forms/affiliation.php:185
2269
  msgid "Extra Domains"
2270
  msgstr "Extra Domeinen"
2271
 
2272
- #: templates/forms/affiliation.php:186
2273
  msgid "Extra domains where you will be marketing the product from."
2274
  msgstr "Extra domeinen vanaf waar je het product gaat promoten."
2275
 
2276
- #: templates/forms/affiliation.php:196
2277
  msgid "Promotion methods"
2278
  msgstr "Promotie methodes"
2279
 
2280
- #: templates/forms/affiliation.php:199
2281
  msgid "Social media (Facebook, Twitter, etc.)"
2282
  msgstr "Social media (Facebook, Twitter, etc.)"
2283
 
2284
- #: templates/forms/affiliation.php:203
2285
  msgid "Mobile apps"
2286
  msgstr "Mobiele apps"
2287
 
2288
- #: templates/forms/affiliation.php:207
2289
  msgid "Website, email, and social media statistics (optional)"
2290
  msgstr "Website, mail, and social media statistieken (optioneel)"
2291
 
2292
- #: templates/forms/affiliation.php:210
2293
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2294
  msgstr "Voel je alsjeblieft vrij om elke relevante website of social media statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, aantal e-mail abonnees , volgers, etc. (we zullen deze informatie vertrouwelijk houden)."
2295
 
2296
- #: templates/forms/affiliation.php:214
2297
  msgid "How will you promote us?"
2298
  msgstr "Hoe ga je ons promoten?"
2299
 
2300
- #: templates/forms/affiliation.php:217
2301
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2302
  msgstr "Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om %s te gaan promoten."
2303
 
2304
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2305
  msgid "Cancel"
2306
  msgstr "Annuleer"
2307
 
2308
- #: templates/forms/affiliation.php:225
2309
  msgid "Become an affiliate"
2310
  msgstr "Wordt een affiliate"
2311
 
@@ -2369,7 +2401,7 @@ msgstr "Het bijhouden van het gebruik wordt gedaan om %s te verbeteren. De gebru
2369
 
2370
  #: templates/forms/optout.php:45
2371
  msgid "On second thought - I want to continue helping"
2372
- msgstr "On second thought - I want to continue helping"
2373
 
2374
  #: templates/forms/optout.php:49
2375
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
@@ -2379,7 +2411,7 @@ msgstr "Door op \"Opt Out\" te klikken, zullen wij niet langer gegevens van %s v
2379
  msgid "Plugins & themes tracking"
2380
  msgstr "Plugins & themes tracking"
2381
 
2382
- #: templates/forms/optout.php:256
2383
  msgid "Saved"
2384
  msgstr "Saved"
2385
 
@@ -2468,7 +2500,7 @@ msgstr "Enter email address"
2468
  #: templates/forms/user-change.php:81
2469
  msgctxt "close window"
2470
  msgid "Dismiss"
2471
- msgstr "Dismiss"
2472
 
2473
  #: templates/js/style-premium-theme.php:39
2474
  msgid "Premium"
@@ -2597,19 +2629,19 @@ msgstr "deactiveren"
2597
  msgid "switching"
2598
  msgstr "overschakelen"
2599
 
2600
- #: templates/forms/deactivation/form.php:365
2601
  msgid "Submit & %s"
2602
  msgstr "Verstuur & %s"
2603
 
2604
- #: templates/forms/deactivation/form.php:386
2605
  msgid "Kindly tell us the reason so we can improve."
2606
  msgstr "Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij verbeteringen kunnen doorvoeren."
2607
 
2608
- #: templates/forms/deactivation/form.php:511
2609
  msgid "Yes - %s"
2610
  msgstr "Ja - %s"
2611
 
2612
- #: templates/forms/deactivation/form.php:518
2613
  msgid "Skip & %s"
2614
  msgstr "Sla over & %s"
2615
 
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
  "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
  "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
  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
 
898
+ #: includes/fs-plugin-info-dialog.php:541
899
  msgid "Purchase More"
900
  msgstr "Purchase More"
901
 
902
+ #: includes/fs-plugin-info-dialog.php542,
903
  #: templates/account/partials/addon.php:385
904
  msgctxt "verb"
905
  msgid "Purchase"
906
  msgstr "Koop"
907
 
908
+ #: includes/fs-plugin-info-dialog.php:546
909
  msgid "Start my free %s"
910
  msgstr "Start mijn gratis %s"
911
 
912
+ #: includes/fs-plugin-info-dialog.php:744
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
 
920
+ #: includes/fs-plugin-info-dialog.php:754
921
  msgid "Install Free Version Now"
922
  msgstr "Installer Gratis Versie Nu"
923
 
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
  #: templates/auto-installation.php111,
926
  #: templates/account/partials/addon.php365,
927
  #: templates/account/partials/addon.php:418
928
  msgid "Install Now"
929
  msgstr "Installeer Nu"
930
 
931
+ #: includes/fs-plugin-info-dialog.php:771
932
  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"
940
  msgstr "Download Nieuwste"
941
 
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
  #: templates/account/partials/addon.php356,
944
  #: templates/account/partials/addon.php:412
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"
956
 
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
  msgctxt "Plugin installer section title"
959
  msgid "Description"
960
  msgstr "Beschrijving"
961
 
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
  msgctxt "Plugin installer section title"
964
  msgid "Installation"
965
  msgstr "Installatie"
966
 
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
  msgctxt "Plugin installer section title"
969
  msgid "FAQ"
970
  msgstr "Veelgestelde Vragen"
971
 
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
  #: templates/plugin-info/description.php:55
974
  msgid "Screenshots"
975
  msgstr "Schermafbeeldingen"
976
 
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
  msgctxt "Plugin installer section title"
979
  msgid "Changelog"
980
  msgstr "Wijzigingen Log"
981
 
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
  msgctxt "Plugin installer section title"
984
  msgid "Reviews"
985
  msgstr "Reviews"
986
 
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
  msgctxt "Plugin installer section title"
989
  msgid "Other Notes"
990
  msgstr "Andere Notities"
991
 
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
  msgctxt "Plugin installer section title"
994
  msgid "Features & Pricing"
995
  msgstr "Features & Prijzen"
996
 
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
  msgid "Plugin Install"
999
  msgstr "Plug-in Installatie"
1000
 
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
  msgctxt "e.g. Professional Plan"
1003
  msgid "%s Plan"
1004
  msgstr "%s Plan"
1005
 
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
  msgctxt "e.g. the best product"
1008
  msgid "Best"
1009
  msgstr "Beste"
1010
 
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
  msgctxt "as every month"
1014
  msgid "Monthly"
1015
  msgstr "Maandelijks"
1016
 
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
  msgctxt "as once a year"
1019
  msgid "Annual"
1020
  msgstr "Jaarlijks"
1021
 
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
  msgid "Lifetime"
1024
  msgstr "Levenslang"
1025
 
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
  msgctxt "e.g. billed monthly"
1030
  msgid "Billed %s"
1031
  msgstr "%s gefactureerd "
1032
 
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
  msgctxt "as once a year"
1035
  msgid "Annually"
1036
  msgstr "Jaarlijks"
1037
 
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
  msgctxt "as once a year"
1040
  msgid "Once"
1041
  msgstr "Eenmalig"
1042
 
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
  msgid "Single Site License"
1045
  msgstr "Enkele Site Licentie"
1046
 
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
  msgid "Unlimited Licenses"
1049
  msgstr "Onbeperkte Licenties"
1050
 
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
  msgid "Up to %s Sites"
1053
  msgstr "Tot %s Sites"
1054
 
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
  #: templates/plugin-info/features.php:82
1057
  msgctxt "as monthly period"
1058
  msgid "mo"
1059
  msgstr "mnd"
1060
 
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
  #: templates/plugin-info/features.php:80
1063
  msgctxt "as annual period"
1064
  msgid "year"
1065
  msgstr "jaar"
1066
 
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
  msgctxt "noun"
1069
  msgid "Price"
1070
  msgstr "Prijs"
1071
 
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
  msgid "Save %s"
1074
  msgstr "Bespaar %s"
1075
 
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
  msgid "No commitment for %s - cancel anytime"
1078
  msgstr "Geen verplichting voor %s - opzeggen kan altijd"
1079
 
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
  msgid "After your free %s, pay as little as %s"
1082
  msgstr "Na uw gratis %s, betaal slechts %s"
1083
 
1084
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1092
  msgid "Version"
1093
  msgstr "Versie"
1094
 
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
  msgctxt "as the plugin author"
1097
  msgid "Author"
1098
  msgstr "Auteur"
1099
 
1100
+ #: includes/fs-plugin-info-dialog.php:1332
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"
1108
 
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
  msgid "Requires WordPress Version"
1111
  msgstr "Vereiste WordPress-versie"
1112
 
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
  msgid "%s or higher"
1115
  msgstr "%s of hoger"
1116
 
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
  msgid "Compatible up to"
1119
  msgstr "Compatible tot"
1120
 
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
  msgid "Downloaded"
1123
  msgstr "Gedownload"
1124
 
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
  msgid "%s time"
1127
  msgstr "%s tijd"
1128
 
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
  msgid "%s times"
1131
  msgstr "%s tijden"
1132
 
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
  msgid "WordPress.org Plugin Page"
1135
  msgstr "WordPress.org Plug-in Pagina"
1136
 
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
  msgid "Plugin Homepage"
1139
  msgstr "Plug-in Homepage"
1140
 
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
  msgid "Donate to this plugin"
1144
  msgstr "Doneer aan deze plug-in"
1145
 
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
  msgid "Average Rating"
1148
  msgstr "Gemiddelde Beoordeling"
1149
 
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
  msgid "based on %s"
1152
  msgstr "gebaseerd op %s"
1153
 
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
  msgid "%s rating"
1156
  msgstr "%s beoordeling"
1157
 
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
  msgid "%s ratings"
1160
  msgstr "%s beoordelingen"
1161
 
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
  msgid "%s star"
1164
  msgstr "%s ster"
1165
 
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
  msgid "%s stars"
1168
  msgstr "%s sterren"
1169
 
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
  msgid "Click to see reviews that provided a rating of %s"
1172
  msgstr "Klik om reviews te bekijken met een beoordeling van%s"
1173
 
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
  msgid "Contributors"
1176
  msgstr "Medewerkers"
1177
 
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
  msgid "Warning"
1181
  msgstr "Waarschuwing"
1182
 
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
  msgid "This plugin has not been tested with your current version of WordPress."
1185
  msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. "
1186
 
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
  msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie."
1190
 
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
  msgid "Paid add-on must be deployed to Freemius."
1193
  msgstr "Betaalde add-on moet op Freemius geplaatst worden."
1194
 
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
  msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden."
1198
 
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
  msgid "Newer Version (%s) Installed"
1201
  msgstr "Nieuwere Versie (%s) Geïnstalleerd"
1202
 
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
  msgid "Newer Free Version (%s) Installed"
1205
  msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd"
1206
 
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
  msgid "Latest Version Installed"
1209
  msgstr "Meest Recente Versie Geïnstalleerd"
1210
 
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
  msgid "Latest Free Version Installed"
1213
  msgstr "Nieuwste Gratis Versie Geïnstalleerd"
1214
 
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
+
1543
  #: templates/add-ons.php:38
1544
  msgid "View details"
1545
  msgstr "Bekijk details"
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"
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"
2209
  msgid "Apply to become an affiliate"
2210
  msgstr "Meld je aan om een affiliate partner te worden"
2211
 
2212
+ #: templates/forms/affiliation.php:107
2213
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2214
  msgstr "Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je samenwerkingsomgeving op: %s."
2215
 
2216
+ #: templates/forms/affiliation.php:122
2217
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2218
  msgstr "Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende informatie zullen sturen."
2219
 
2220
+ #: templates/forms/affiliation.php:125
2221
  msgid "Your affiliation account was temporarily suspended."
2222
  msgstr "Je affiliate account is tijdelijk geschorst."
2223
 
2224
+ #: templates/forms/affiliation.php:128
2225
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2226
  msgstr "Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het alsjeblieft over 30 dagen nog eens."
2227
 
2228
+ #: templates/forms/affiliation.php:131
2229
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2230
  msgstr "Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele vragen alsjeblieft contact op met support."
2231
 
2232
+ #: templates/forms/affiliation.php:144
2233
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2234
  msgstr "Vind je de %s goed? Word dan onze ambassadeur en verdien cash ;-)"
2235
 
2236
+ #: templates/forms/affiliation.php:145
2237
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2238
  msgstr "Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door jou doorverwezen, geslaagde verkoop!"
2239
 
2240
+ #: templates/forms/affiliation.php:148
2241
  msgid "Program Summary"
2242
  msgstr "Programma Samenvatting"
2243
 
2244
+ #: templates/forms/affiliation.php:150
2245
  msgid "%s commission when a customer purchases a new license."
2246
  msgstr "%s commissie als een klant een nieuwe licentie koopt. "
2247
 
2248
+ #: templates/forms/affiliation.php:152
2249
  msgid "Get commission for automated subscription renewals."
2250
  msgstr "Krijg een commissie voor automatische abonnementsverlengingen."
2251
 
2252
+ #: templates/forms/affiliation.php:155
2253
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2254
  msgstr "%s tracking cookie na eerste bezoek om je verdienpotentieel te maximaliseren."
2255
 
2256
+ #: templates/forms/affiliation.php:158
2257
  msgid "Unlimited commissions."
2258
  msgstr "Onbeperkte commissies."
2259
 
2260
+ #: templates/forms/affiliation.php:160
2261
  msgid "%s minimum payout amount."
2262
  msgstr "%s minimum uitbetalingsbedrag."
2263
 
2264
+ #: templates/forms/affiliation.php:161
2265
  msgid "Payouts are in USD and processed monthly via PayPal."
2266
  msgstr "Uitbetalingen zijn in USD en worden maandelijks uitgevoerd via PayPal"
2267
 
2268
+ #: templates/forms/affiliation.php:162
2269
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2270
  msgstr "Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we alleen commissies uit die ouder dan 30 dagen zijn."
2271
 
2272
+ #: templates/forms/affiliation.php:165
2273
  msgid "Affiliate"
2274
  msgstr "Affiliate"
2275
 
2276
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2277
  msgid "Email address"
2278
  msgstr "E-mailadres"
2279
 
2280
+ #: templates/forms/affiliation.php:172
2281
  msgid "Full name"
2282
  msgstr "Volledige naam"
2283
 
2284
+ #: templates/forms/affiliation.php:176
2285
  msgid "PayPal account email address"
2286
  msgstr "PayPal account e-mailadres"
2287
 
2288
+ #: templates/forms/affiliation.php:180
2289
  msgid "Where are you going to promote the %s?"
2290
  msgstr "Waar ga je de %s promoten?"
2291
 
2292
+ #: templates/forms/affiliation.php:182
2293
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2294
  msgstr "Voer de domeinnaam in van je website of andere websites waar vanaf je van plan bent de %ste gaan promoten."
2295
 
2296
+ #: templates/forms/affiliation.php:184
2297
  msgid "Add another domain"
2298
  msgstr "Voeg nog een domein toe"
2299
 
2300
+ #: templates/forms/affiliation.php:188
2301
  msgid "Extra Domains"
2302
  msgstr "Extra Domeinen"
2303
 
2304
+ #: templates/forms/affiliation.php:189
2305
  msgid "Extra domains where you will be marketing the product from."
2306
  msgstr "Extra domeinen vanaf waar je het product gaat promoten."
2307
 
2308
+ #: templates/forms/affiliation.php:199
2309
  msgid "Promotion methods"
2310
  msgstr "Promotie methodes"
2311
 
2312
+ #: templates/forms/affiliation.php:202
2313
  msgid "Social media (Facebook, Twitter, etc.)"
2314
  msgstr "Social media (Facebook, Twitter, etc.)"
2315
 
2316
+ #: templates/forms/affiliation.php:206
2317
  msgid "Mobile apps"
2318
  msgstr "Mobiele apps"
2319
 
2320
+ #: templates/forms/affiliation.php:210
2321
  msgid "Website, email, and social media statistics (optional)"
2322
  msgstr "Website, mail, and social media statistieken (optioneel)"
2323
 
2324
+ #: templates/forms/affiliation.php:213
2325
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2326
  msgstr "Voel je alsjeblieft vrij om elke relevante website of social media statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, aantal e-mail abonnees , volgers, etc. (we zullen deze informatie vertrouwelijk houden)."
2327
 
2328
+ #: templates/forms/affiliation.php:217
2329
  msgid "How will you promote us?"
2330
  msgstr "Hoe ga je ons promoten?"
2331
 
2332
+ #: templates/forms/affiliation.php:220
2333
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2334
  msgstr "Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om %s te gaan promoten."
2335
 
2336
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2337
  msgid "Cancel"
2338
  msgstr "Annuleer"
2339
 
2340
+ #: templates/forms/affiliation.php:234
2341
  msgid "Become an affiliate"
2342
  msgstr "Wordt een affiliate"
2343
 
2401
 
2402
  #: templates/forms/optout.php:45
2403
  msgid "On second thought - I want to continue helping"
2404
+ msgstr "Bij nader inzien - Ik wil doorgaan met helpen"
2405
 
2406
  #: templates/forms/optout.php:49
2407
  msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2411
  msgid "Plugins & themes tracking"
2412
  msgstr "Plugins & themes tracking"
2413
 
2414
+ #: templates/forms/optout.php:261
2415
  msgid "Saved"
2416
  msgstr "Saved"
2417
 
2500
  #: templates/forms/user-change.php:81
2501
  msgctxt "close window"
2502
  msgid "Dismiss"
2503
+ msgstr "Afsluiten"
2504
 
2505
  #: templates/js/style-premium-theme.php:39
2506
  msgid "Premium"
2629
  msgid "switching"
2630
  msgstr "overschakelen"
2631
 
2632
+ #: templates/forms/deactivation/form.php:369
2633
  msgid "Submit & %s"
2634
  msgstr "Verstuur & %s"
2635
 
2636
+ #: templates/forms/deactivation/form.php:390
2637
  msgid "Kindly tell us the reason so we can improve."
2638
  msgstr "Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij verbeteringen kunnen doorvoeren."
2639
 
2640
+ #: templates/forms/deactivation/form.php:515
2641
  msgid "Yes - %s"
2642
  msgstr "Ja - %s"
2643
 
2644
+ #: templates/forms/deactivation/form.php:522
2645
  msgid "Skip & %s"
2646
  msgstr "Sla over & %s"
2647
 
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) 2019 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-07-27 11:43+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,811 +21,835 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
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:2096
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:2098
37
  msgid "Error"
38
  msgstr "Ошибка"
39
 
40
- #: includes/class-freemius.php:2492
41
  msgid "I found a better %s"
42
  msgstr "Я нашел лучший %s"
43
 
44
- #: includes/class-freemius.php:2494
45
  msgid "What's the %s's name?"
46
  msgstr "Какое название %s?"
47
 
48
- #: includes/class-freemius.php:2500
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
51
 
52
- #: includes/class-freemius.php:2502
53
  msgid "Deactivation"
54
  msgstr "Деактивация"
55
 
56
- #: includes/class-freemius.php:2503
57
  msgid "Theme Switch"
58
  msgstr "Переключатель шаблона "
59
 
60
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "Другие"
64
 
65
- #: includes/class-freemius.php:2520
66
  msgid "I no longer need the %s"
67
  msgstr "%s больше не понадобится."
68
 
69
- #: includes/class-freemius.php:2527
70
  msgid "I only needed the %s for a short period"
71
  msgstr "%s требовалась на короткое время"
72
 
73
- #: includes/class-freemius.php:2533
74
  msgid "The %s broke my site"
75
  msgstr "%s повредила мой сайт"
76
 
77
- #: includes/class-freemius.php:2540
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s внезапно перестала работать "
80
 
81
- #: includes/class-freemius.php:2550
82
  msgid "I can't pay for it anymore"
83
  msgstr "Я больше не могу оплачивать это. "
84
 
85
- #: includes/class-freemius.php:2552
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "Какая стоимость была бы для Вас приемлемой? "
88
 
89
- #: includes/class-freemius.php:2558
90
  msgid "I don't like to share my information with you"
91
  msgstr "Я не хочу делиться личной информацией с Вами"
92
 
93
- #: includes/class-freemius.php:2579
94
  msgid "The %s didn't work"
95
  msgstr "%s не сработала"
96
 
97
- #: includes/class-freemius.php:2589
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "Я не могу понять как сделать так, чтобы оно работало"
100
 
101
- #: includes/class-freemius.php:2597
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:2599
106
  msgid "What feature?"
107
  msgstr "Какой функционал?"
108
 
109
- #: includes/class-freemius.php:2603
110
  msgid "The %s is not working"
111
  msgstr "%s не работает"
112
 
113
- #: includes/class-freemius.php:2605
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
116
 
117
- #: includes/class-freemius.php:2609
118
  msgid "It's not what I was looking for"
119
  msgstr "Это не то, что я искал. "
120
 
121
- #: includes/class-freemius.php:2611
122
  msgid "What you've been looking for?"
123
  msgstr "Что именно Вы ищите? "
124
 
125
- #: includes/class-freemius.php:2615
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s не сработала как ожидалось"
128
 
129
- #: includes/class-freemius.php:2617
130
  msgid "What did you expect?"
131
  msgstr "Каковы были Ваши ожидания? "
132
 
133
- #: includes/class-freemius.php3472, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Исправление ошибок Freemius"
136
 
137
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
150
  msgid "Yes - do your thing"
151
  msgstr "Да, делайте то, что Вам нужно. "
152
 
153
- #: includes/class-freemius.php:4343
154
  msgid "No - just deactivate"
155
  msgstr "Нет. Нужно деактивировать. "
156
 
157
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
158
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
159
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
160
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
161
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
162
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
163
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
164
- #: includes/class-freemius.php21690, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "Упс!"
168
 
169
- #: includes/class-freemius.php:4457
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:4879
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s не работает без %s."
177
 
178
- #: includes/class-freemius.php:4880
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "%s не может работать без плагина. "
182
 
183
- #: includes/class-freemius.php5053, includes/class-freemius.php5078,
184
- #: includes/class-freemius.php:20578
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:5777
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "Премиум версия %s была успешно активирована. "
191
 
192
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "Вау!"
196
 
197
- #: includes/class-freemius.php:5804
198
  msgid "You have a %s license."
199
  msgstr "У Вас есть лицензия %s."
200
 
201
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
202
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
203
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
204
- #: includes/class-freemius.php:20328
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Ура!"
208
 
209
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
223
  msgid "Purchase License"
224
  msgstr "Купите лицензию "
225
 
226
- #: includes/class-freemius.php7047, 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:7051
231
  msgid "start the trial"
232
  msgstr "Начать тестовый период"
233
 
234
- #: includes/class-freemius.php7052, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "Закончить установку"
237
 
238
- #: includes/class-freemius.php:7164
239
  msgid "You are just one step away - %s"
240
  msgstr "Вам осталось совсем немножко %s"
241
 
242
- #: includes/class-freemius.php:7167
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:7245
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
250
 
251
- #: includes/class-freemius.php:7249
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "Opt in to make \"%s\" better!"
254
 
255
- #: includes/class-freemius.php:7681
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "Обновление %s было успешно завершено"
258
 
259
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
260
- #: includes/class-fs-plugin-updater.php1239,
261
- #: includes/class-fs-plugin-updater.php1246,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "Функционал плагина "
265
 
266
- #: includes/class-freemius.php9910, templates/account.php343,
267
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "Плагин "
270
 
271
- #: includes/class-freemius.php9911, templates/account.php344,
272
- #: templates/account.php352, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "Шаблон "
276
 
277
- #: includes/class-freemius.php:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "An unknown error has occurred while trying to set the user's beta mode."
279
  msgstr "An unknown error has occurred while trying to set the user's beta mode."
280
 
281
- #: includes/class-freemius.php:12904
282
  msgid "Invalid new user ID or email address."
283
  msgstr "Invalid new user ID or email address."
284
 
285
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
286
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
287
  msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
288
 
289
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
290
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
291
  msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
292
 
293
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
294
  msgid "Change Ownership"
295
  msgstr "Сменить владельца лицензии "
296
 
297
- #: includes/class-freemius.php:13438
298
  msgid "Invalid site details collection."
299
  msgstr "Invalid site details collection."
300
 
301
- #: includes/class-freemius.php:13558
302
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
303
  msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
304
 
305
- #: includes/class-freemius.php:13560
306
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
307
  msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
308
 
309
- #: includes/class-freemius.php:13834
310
  msgid "Account is pending activation."
311
  msgstr "Учетная запись в процессе активации"
312
 
313
- #: includes/class-freemius.php13946,
314
  #: templates/forms/premium-versions-upgrade-handler.php:47
315
  msgid "Buy a license now"
316
  msgstr "Buy a license now"
317
 
318
- #: includes/class-freemius.php13958,
319
  #: templates/forms/premium-versions-upgrade-handler.php:46
320
  msgid "Renew your license now"
321
  msgstr "Renew your license now"
322
 
323
- #: includes/class-freemius.php:13962
324
  msgid "%s to access version %s security & feature updates, and support."
325
  msgstr "%s to access version %s security & feature updates, and support."
326
 
327
- #: includes/class-freemius.php:16387
328
  msgid "%s activation was successfully completed."
329
  msgstr "Активация %s была успешно завершена"
330
 
331
- #: includes/class-freemius.php:16401
332
  msgid "Your account was successfully activated with the %s plan."
333
  msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
334
 
335
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
336
  msgid "Your trial has been successfully started."
337
  msgstr "Ваш тестовый период успешно начат"
338
 
339
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
340
- #: includes/class-freemius.php:17258
341
  msgid "Couldn't activate %s."
342
  msgstr "Невозможно активировать %s"
343
 
344
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
345
- #: includes/class-freemius.php:17259
346
  msgid "Please contact us with the following message:"
347
  msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
348
 
349
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
350
  msgid "An unknown error has occurred."
351
  msgstr "An unknown error has occurred."
352
 
353
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
354
  msgid "Upgrade"
355
  msgstr "Сделать апгрейд "
356
 
357
- #: includes/class-freemius.php:17622
358
  msgid "Start Trial"
359
  msgstr "Начать тестовый период"
360
 
361
- #: includes/class-freemius.php:17624
362
  msgid "Pricing"
363
  msgstr "Цены "
364
 
365
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
366
  msgid "Affiliation"
367
  msgstr "Партнерство "
368
 
369
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
370
- #: templates/account.php191, templates/debug.php:324
371
  msgid "Account"
372
  msgstr "Личный кабинет"
373
 
374
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
375
  #: includes/customizer/class-fs-customizer-support-section.php:60
376
  msgid "Contact Us"
377
  msgstr "Контакты "
378
 
379
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
380
- #: includes/class-freemius.php22603, templates/account.php119,
381
  #: templates/account/partials/addon.php:44
382
  msgid "Add-Ons"
383
  msgstr "Настройки плагина "
384
 
385
- #: includes/class-freemius.php:17799
386
  msgctxt "ASCII arrow left icon"
387
  msgid "&#x2190;"
388
  msgstr "&#x2190;"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow right icon"
392
  msgid "&#x27a4;"
393
  msgstr "&#x27a4;"
394
 
395
- #: includes/class-freemius.php17801, templates/pricing.php:103
396
  msgctxt "noun"
397
  msgid "Pricing"
398
  msgstr "Цены"
399
 
400
- #: includes/class-freemius.php18014,
401
  #: includes/customizer/class-fs-customizer-support-section.php:67
402
  msgid "Support Forum"
403
  msgstr "Форум поддержки "
404
 
405
- #: includes/class-freemius.php:18988
406
  msgid "Your email has been successfully verified - you are AWESOME!"
407
  msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
408
 
409
- #: includes/class-freemius.php:18989
410
  msgctxt "a positive response"
411
  msgid "Right on"
412
  msgstr "Все верно!"
413
 
414
- #: includes/class-freemius.php:19493
415
  msgid "seems like the key you entered doesn't match our records."
416
  msgstr "seems like the key you entered doesn't match our records."
417
 
418
- #: includes/class-freemius.php:19517
419
  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."
420
  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."
421
 
422
- #: includes/class-freemius.php:19735
423
  msgid "Your %s Add-on plan was successfully upgraded."
424
  msgstr "Ваш %s план был успешно обновлен"
425
 
426
- #: includes/class-freemius.php:19737
427
  msgid "%s Add-on was successfully purchased."
428
  msgstr "Покупка %s плагина успешно состоялась"
429
 
430
- #: includes/class-freemius.php:19740
431
  msgid "Download the latest version"
432
  msgstr "Скачай последнюю версию"
433
 
434
- #: includes/class-freemius.php:19826
435
  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"
436
  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"
437
 
438
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
439
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
440
  msgid "Error received from the server:"
441
  msgstr "Ошибка сервера"
442
 
443
- #: includes/class-freemius.php:19842
444
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
445
  msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
446
 
447
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
448
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
449
  msgctxt ""
450
  msgid "Hmm"
451
  msgstr "Хм..."
452
 
453
- #: includes/class-freemius.php:20069
454
  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."
455
  msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
456
 
457
- #: includes/class-freemius.php20070, templates/account.php121,
458
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
459
  msgctxt "trial period"
460
  msgid "Trial"
461
  msgstr "Тестовый период"
462
 
463
- #: includes/class-freemius.php:20075
464
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
465
  msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
466
 
467
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
468
  msgid "Please contact us here"
469
  msgstr "Пожалуйста, напишите нам сообщение здесь. "
470
 
471
- #: includes/class-freemius.php:20090
472
  msgid "Your plan was successfully activated."
473
  msgstr "Your plan was successfully activated."
474
 
475
- #: includes/class-freemius.php:20091
476
  msgid "Your plan was successfully upgraded."
477
  msgstr "Ваш тарифный план был успешно изменен. "
478
 
479
- #: includes/class-freemius.php:20108
480
  msgid "Your plan was successfully changed to %s."
481
  msgstr "Ваш тарифный план был успешно изменен на %s."
482
 
483
- #: includes/class-freemius.php:20124
484
  msgid "Your license has expired. You can still continue using the free %s forever."
485
  msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
486
 
487
- #: includes/class-freemius.php:20126
488
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
  msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
490
 
491
- #: includes/class-freemius.php:20134
492
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
493
  msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
494
 
495
- #: includes/class-freemius.php:20147
496
  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."
497
  msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
498
 
499
- #: includes/class-freemius.php:20173
500
  msgid "Your free trial has expired. You can still continue using all our free features."
501
  msgstr "Your free trial has expired. You can still continue using all our free features."
502
 
503
- #: includes/class-freemius.php:20175
504
  msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
  msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
 
507
- #: includes/class-freemius.php:20283
508
  msgid "It looks like the license could not be activated."
509
  msgstr "Вероятно возникли трудности с активацией лицензии. "
510
 
511
- #: includes/class-freemius.php:20325
512
  msgid "Your license was successfully activated."
513
  msgstr "Ваша лицензия была успешно активирована. "
514
 
515
- #: includes/class-freemius.php:20351
516
  msgid "It looks like your site currently doesn't have an active license."
517
  msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
518
 
519
- #: includes/class-freemius.php:20375
520
  msgid "It looks like the license deactivation failed."
521
  msgstr "Вероятно деактивация лицензии не состоялась. "
522
 
523
- #: includes/class-freemius.php:20404
524
  msgid "Your %s license was successfully deactivated."
525
  msgstr "Your %s license was successfully deactivated."
526
 
527
- #: includes/class-freemius.php:20405
528
  msgid "Your license was successfully deactivated, you are back to the %s plan."
529
  msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
530
 
531
- #: includes/class-freemius.php:20408
532
  msgid "O.K"
533
  msgstr "O.K."
534
 
535
- #: includes/class-freemius.php:20461
536
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
537
  msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
538
 
539
- #: includes/class-freemius.php:20470
540
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
541
  msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
542
 
543
- #: includes/class-freemius.php:20512
544
  msgid "You are already running the %s in a trial mode."
545
  msgstr "Вы уже пользуетесь тестовой версией %s "
546
 
547
- #: includes/class-freemius.php:20523
548
  msgid "You already utilized a trial before."
549
  msgstr "Вы уже использовали Ваш тестовый период"
550
 
551
- #: includes/class-freemius.php:20537
552
  msgid "Plan %s do not exist, therefore, can't start a trial."
553
  msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
554
 
555
- #: includes/class-freemius.php:20548
556
  msgid "Plan %s does not support a trial period."
557
  msgstr "Тарифный план % не предусматривает тестового периода. "
558
 
559
- #: includes/class-freemius.php:20559
560
  msgid "None of the %s's plans supports a trial period."
561
  msgstr "Тарифные планы %s не предусматривают тестовый период. "
562
 
563
- #: includes/class-freemius.php:20609
564
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
565
  msgstr "Возможно, Ваш тестовый период уже закончился. "
566
 
567
- #: includes/class-freemius.php:20645
568
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
569
  msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
570
 
571
- #: includes/class-freemius.php:20664
572
  msgid "Your %s free trial was successfully cancelled."
573
  msgstr "Ваш бесплатный тестовый период был успешно отменен. "
574
 
575
- #: includes/class-freemius.php:20980
576
  msgid "Version %s was released."
577
  msgstr "Релиз версии %s состоялся. "
578
 
579
- #: includes/class-freemius.php:20980
580
  msgid "Please download %s."
581
  msgstr "Пожалуйста, скачайте %s"
582
 
583
- #: includes/class-freemius.php:20987
584
  msgid "the latest %s version here"
585
  msgstr "Последняя версия %s здесь"
586
 
587
- #: includes/class-freemius.php:20992
588
  msgid "New"
589
  msgstr "Новое "
590
 
591
- #: includes/class-freemius.php:20997
592
  msgid "Seems like you got the latest release."
593
  msgstr "Вероятно, Вы пользуетесь последней версией"
594
 
595
- #: includes/class-freemius.php:20998
596
  msgid "You are all good!"
597
  msgstr "Все прошло хорошо!"
598
 
599
- #: includes/class-freemius.php:21301
600
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
601
  msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
602
 
603
- #: includes/class-freemius.php:21441
604
  msgid "Site successfully opted in."
605
  msgstr "Site successfully opted in."
606
 
607
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
608
  msgid "Awesome"
609
  msgstr "Отлично!"
610
 
611
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
612
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
613
  msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
614
 
615
- #: includes/class-freemius.php:21459
616
  msgid "Thank you!"
617
  msgstr "Thank you!"
618
 
619
- #: includes/class-freemius.php:21466
620
  msgid "We will no longer be sending any usage data of %s on %s to %s."
621
  msgstr "We will no longer be sending any usage data of %s on %s to %s."
622
 
623
- #: includes/class-freemius.php:21612
624
  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."
625
  msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
626
 
627
- #: includes/class-freemius.php:21618
628
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
629
  msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
630
 
631
- #: includes/class-freemius.php:21623
632
  msgid "%s is the new owner of the account."
633
  msgstr "%я является новым владельцем аккаунта"
634
 
635
- #: includes/class-freemius.php:21625
636
  msgctxt "as congratulations"
637
  msgid "Congrats"
638
  msgstr "Поздравления! "
639
 
640
- #: includes/class-freemius.php:21661
641
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
642
  msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
643
 
644
- #: includes/class-freemius.php:21673
645
  msgid "Please provide your full name."
646
  msgstr "Пожалуйста, введите Ваше полное имя"
647
 
648
- #: includes/class-freemius.php:21678
649
  msgid "Your name was successfully updated."
650
  msgstr "Ваше имя было успешно обновлено"
651
 
652
- #: includes/class-freemius.php:21739
653
  msgid "You have successfully updated your %s."
654
  msgstr "Вы успешно обновили Ваш %s"
655
 
656
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
657
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
658
  msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
659
 
660
- #: includes/class-freemius.php:21880
661
  msgctxt "advance notice of something that will need attention."
662
  msgid "Heads up"
663
  msgstr "Внимание!"
664
 
665
- #: includes/class-freemius.php:22339
666
  msgctxt "exclamation"
667
  msgid "Hey"
668
  msgstr "Привет!"
669
 
670
- #: includes/class-freemius.php:22339
671
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
672
  msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
673
 
674
- #: includes/class-freemius.php:22347
675
  msgid "No commitment for %s days - cancel anytime!"
676
  msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
677
 
678
- #: includes/class-freemius.php:22348
679
  msgid "No credit card required"
680
  msgstr "Не требуются данные платежной карты"
681
 
682
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
683
  msgctxt "call to action"
684
  msgid "Start free trial"
685
  msgstr "Начни тестовый период!"
686
 
687
- #: includes/class-freemius.php:22432
688
  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!"
689
  msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
690
 
691
- #: includes/class-freemius.php:22441
692
  msgid "Learn more"
693
  msgstr "Узнать больше"
694
 
695
- #: includes/class-freemius.php22627, templates/account.php507,
696
- #: templates/account.php657, templates/connect.php179,
697
- #: templates/connect.php455, templates/forms/license-activation.php27,
698
  #: templates/account/partials/addon.php:321
699
  msgid "Activate License"
700
  msgstr "Активировать лицензию"
701
 
702
- #: includes/class-freemius.php22628, templates/account.php601,
703
- #: templates/account.php656, templates/account/partials/addon.php322,
704
  #: templates/account/partials/site.php:271
705
  msgid "Change License"
706
  msgstr "Изменить лицензию "
707
 
708
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
709
  msgid "Opt Out"
710
  msgstr "Отказаться от использования"
711
 
712
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
713
  #: templates/account/partials/site.php49,
714
  #: templates/account/partials/site.php:169
715
  msgid "Opt In"
716
  msgstr "Присоединиться"
717
 
718
- #: includes/class-freemius.php:22973
719
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
720
  msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
721
 
722
- #: includes/class-freemius.php:22981
723
  msgid "Activate %s features"
724
  msgstr "Activate %s features"
725
 
726
- #: includes/class-freemius.php:22994
727
  msgid "Please follow these steps to complete the upgrade"
728
  msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
729
 
730
- #: includes/class-freemius.php:22998
731
  msgid "Download the latest %s version"
732
  msgstr "Скачайте последнюю версию %s"
733
 
734
- #: includes/class-freemius.php:23002
735
  msgid "Upload and activate the downloaded version"
736
  msgstr "Загрузите и активируйте скачанную версию"
737
 
738
- #: includes/class-freemius.php:23004
739
  msgid "How to upload and activate?"
740
  msgstr "Как загрузить и активировать?"
741
 
742
- #: includes/class-freemius.php:23138
743
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
744
  msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
745
 
746
- #: includes/class-freemius.php:23299
747
  msgid "Auto installation only works for opted-in users."
748
  msgstr "Авто установка работает только для зарегистрированных пользователей."
749
 
750
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
751
- #: includes/class-fs-plugin-updater.php1218,
752
- #: includes/class-fs-plugin-updater.php:1232
753
  msgid "Invalid module ID."
754
  msgstr "Неверный ID модуля"
755
 
756
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
757
  msgid "Premium version already active."
758
  msgstr "Премиум версия уже активирована"
759
 
760
- #: includes/class-freemius.php:23325
761
  msgid "You do not have a valid license to access the premium version."
762
  msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
763
 
764
- #: includes/class-freemius.php:23332
765
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
766
  msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
767
 
768
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
769
  msgid "Premium add-on version already installed."
770
  msgstr "Премиум версия плагина была установлена"
771
 
772
- #: includes/class-freemius.php:23700
773
  msgid "View paid features"
774
  msgstr "Просмотр платных возможностей"
775
 
776
- #: includes/class-freemius.php:24022
777
  msgid "Thank you so much for using %s and its add-ons!"
778
  msgstr "Thank you so much for using %s and its add-ons!"
779
 
780
- #: includes/class-freemius.php:24023
781
  msgid "Thank you so much for using %s!"
782
  msgstr "Thank you so much for using %s!"
783
 
784
- #: includes/class-freemius.php:24029
785
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
786
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
787
 
788
- #: includes/class-freemius.php:24033
789
  msgid "Thank you so much for using our products!"
790
  msgstr "Thank you so much for using our products!"
791
 
792
- #: includes/class-freemius.php:24034
793
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
794
  msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
795
 
796
- #: includes/class-freemius.php:24053
797
  msgid "%s and its add-ons"
798
  msgstr "%s and its add-ons"
799
 
800
- #: includes/class-freemius.php:24062
801
  msgid "Products"
802
  msgstr "Products"
803
 
804
- #: includes/class-freemius.php24069, templates/connect.php:280
805
  msgid "Yes"
806
  msgstr "Yes"
807
 
808
- #: includes/class-freemius.php24070, templates/connect.php:281
809
  msgid "send me security & feature updates, educational content and offers."
810
  msgstr "send me security & feature updates, educational content and offers."
811
 
812
- #: includes/class-freemius.php24071, templates/connect.php:286
813
  msgid "No"
814
  msgstr "No"
815
 
816
- #: includes/class-freemius.php24073, templates/connect.php:288
817
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
818
  msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
819
 
820
- #: includes/class-freemius.php:24083
821
  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 :-)"
822
  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 :-)"
823
 
824
- #: includes/class-freemius.php24085, templates/connect.php:295
825
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
826
  msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
827
 
828
- #: includes/class-freemius.php:24367
829
  msgid "License key is empty."
830
  msgstr "License key is empty."
831
 
@@ -858,332 +882,332 @@ msgstr "new version"
858
  msgid "Important Upgrade Notice:"
859
  msgstr "Important Upgrade Notice:"
860
 
861
- #: includes/class-fs-plugin-updater.php:1283
862
  msgid "Installing plugin: %s"
863
  msgstr "Установка плагина: %s"
864
 
865
- #: includes/class-fs-plugin-updater.php:1324
866
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
867
  msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
868
 
869
- #: includes/class-fs-plugin-updater.php:1506
870
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
871
  msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
872
 
873
- #: includes/fs-plugin-info-dialog.php:535
874
  msgid "Purchase More"
875
  msgstr "Purchase More"
876
 
877
- #: includes/fs-plugin-info-dialog.php536,
878
  #: templates/account/partials/addon.php:385
879
  msgctxt "verb"
880
  msgid "Purchase"
881
  msgstr "Купить"
882
 
883
- #: includes/fs-plugin-info-dialog.php:540
884
  msgid "Start my free %s"
885
  msgstr "Начать мой бесплатный %s"
886
 
887
- #: includes/fs-plugin-info-dialog.php:738
888
  msgid "Install Free Version Update Now"
889
  msgstr "Install Free Version Update Now"
890
 
891
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
892
  msgid "Install Update Now"
893
  msgstr "Провести обновления сейчас "
894
 
895
- #: includes/fs-plugin-info-dialog.php:748
896
  msgid "Install Free Version Now"
897
  msgstr "Install Free Version Now"
898
 
899
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
900
  #: templates/auto-installation.php111,
901
  #: templates/account/partials/addon.php365,
902
  #: templates/account/partials/addon.php:418
903
  msgid "Install Now"
904
  msgstr "Установить сейчас "
905
 
906
- #: includes/fs-plugin-info-dialog.php:765
907
  msgctxt "as download latest version"
908
  msgid "Download Latest Free Version"
909
  msgstr "Download Latest Free Version"
910
 
911
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
912
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
913
  msgctxt "as download latest version"
914
  msgid "Download Latest"
915
  msgstr "Скачать последнюю версию"
916
 
917
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
918
  #: templates/account/partials/addon.php356,
919
  #: templates/account/partials/addon.php:412
920
  msgid "Activate this add-on"
921
  msgstr "Активируйте этот функционал "
922
 
923
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
924
  msgid "Activate Free Version"
925
  msgstr "Активировать бесплатную версию?"
926
 
927
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
928
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
929
  msgid "Activate"
930
  msgstr "Активировать "
931
 
932
- #: includes/fs-plugin-info-dialog.php:994
933
  msgctxt "Plugin installer section title"
934
  msgid "Description"
935
  msgstr "Описание "
936
 
937
- #: includes/fs-plugin-info-dialog.php:995
938
  msgctxt "Plugin installer section title"
939
  msgid "Installation"
940
  msgstr "Установка "
941
 
942
- #: includes/fs-plugin-info-dialog.php:996
943
  msgctxt "Plugin installer section title"
944
  msgid "FAQ"
945
  msgstr "Часто задаваемые вопросы "
946
 
947
- #: includes/fs-plugin-info-dialog.php997,
948
  #: templates/plugin-info/description.php:55
949
  msgid "Screenshots"
950
  msgstr "Снимки экрана "
951
 
952
- #: includes/fs-plugin-info-dialog.php:998
953
  msgctxt "Plugin installer section title"
954
  msgid "Changelog"
955
  msgstr "Журнал изменений "
956
 
957
- #: includes/fs-plugin-info-dialog.php:999
958
  msgctxt "Plugin installer section title"
959
  msgid "Reviews"
960
  msgstr "Отзывы "
961
 
962
- #: includes/fs-plugin-info-dialog.php:1000
963
  msgctxt "Plugin installer section title"
964
  msgid "Other Notes"
965
  msgstr "Другие заметки "
966
 
967
- #: includes/fs-plugin-info-dialog.php:1015
968
  msgctxt "Plugin installer section title"
969
  msgid "Features & Pricing"
970
  msgstr "Функционал&тарифные планы "
971
 
972
- #: includes/fs-plugin-info-dialog.php:1025
973
  msgid "Plugin Install"
974
  msgstr "Установка плагина "
975
 
976
- #: includes/fs-plugin-info-dialog.php:1097
977
  msgctxt "e.g. Professional Plan"
978
  msgid "%s Plan"
979
  msgstr "%s план "
980
 
981
- #: includes/fs-plugin-info-dialog.php:1123
982
  msgctxt "e.g. the best product"
983
  msgid "Best"
984
  msgstr "Лучший "
985
 
986
- #: includes/fs-plugin-info-dialog.php1129,
987
- #: includes/fs-plugin-info-dialog.php:1149
988
  msgctxt "as every month"
989
  msgid "Monthly"
990
  msgstr "Помесячно "
991
 
992
- #: includes/fs-plugin-info-dialog.php:1132
993
  msgctxt "as once a year"
994
  msgid "Annual"
995
  msgstr "Ежегодно "
996
 
997
- #: includes/fs-plugin-info-dialog.php:1135
998
  msgid "Lifetime"
999
  msgstr "На бессрочный период "
1000
 
1001
- #: includes/fs-plugin-info-dialog.php1149,
1002
- #: includes/fs-plugin-info-dialog.php1151,
1003
- #: includes/fs-plugin-info-dialog.php:1153
1004
  msgctxt "e.g. billed monthly"
1005
  msgid "Billed %s"
1006
  msgstr "Оплачивать %s"
1007
 
1008
- #: includes/fs-plugin-info-dialog.php:1151
1009
  msgctxt "as once a year"
1010
  msgid "Annually"
1011
  msgstr "Один раз в год "
1012
 
1013
- #: includes/fs-plugin-info-dialog.php:1153
1014
  msgctxt "as once a year"
1015
  msgid "Once"
1016
  msgstr "Один раз "
1017
 
1018
- #: includes/fs-plugin-info-dialog.php:1159
1019
  msgid "Single Site License"
1020
  msgstr "Лицензия на один сайт "
1021
 
1022
- #: includes/fs-plugin-info-dialog.php:1161
1023
  msgid "Unlimited Licenses"
1024
  msgstr "Неограниченная лицензия "
1025
 
1026
- #: includes/fs-plugin-info-dialog.php:1163
1027
  msgid "Up to %s Sites"
1028
  msgstr "до % сайтов "
1029
 
1030
- #: includes/fs-plugin-info-dialog.php1173,
1031
  #: templates/plugin-info/features.php:82
1032
  msgctxt "as monthly period"
1033
  msgid "mo"
1034
  msgstr "на один месяц"
1035
 
1036
- #: includes/fs-plugin-info-dialog.php1180,
1037
  #: templates/plugin-info/features.php:80
1038
  msgctxt "as annual period"
1039
  msgid "year"
1040
  msgstr "на один год "
1041
 
1042
- #: includes/fs-plugin-info-dialog.php:1234
1043
  msgctxt "noun"
1044
  msgid "Price"
1045
  msgstr "Стоимость "
1046
 
1047
- #: includes/fs-plugin-info-dialog.php:1282
1048
  msgid "Save %s"
1049
  msgstr "Экономия %s"
1050
 
1051
- #: includes/fs-plugin-info-dialog.php:1292
1052
  msgid "No commitment for %s - cancel anytime"
1053
  msgstr "Без обязательств платить %s - аннулируй пользование в любое время "
1054
 
1055
- #: includes/fs-plugin-info-dialog.php:1295
1056
  msgid "After your free %s, pay as little as %s"
1057
  msgstr "После окончания Вашего бесплатного %s, платите всего лиш %s"
1058
 
1059
- #: includes/fs-plugin-info-dialog.php:1306
1060
  msgid "Details"
1061
  msgstr "Детальней"
1062
 
1063
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1064
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1065
  #: templates/account/partials/addon.php:36
1066
  msgctxt "product version"
1067
  msgid "Version"
1068
  msgstr "Версия "
1069
 
1070
- #: includes/fs-plugin-info-dialog.php:1317
1071
  msgctxt "as the plugin author"
1072
  msgid "Author"
1073
  msgstr "Автор"
1074
 
1075
- #: includes/fs-plugin-info-dialog.php:1324
1076
  msgid "Last Updated"
1077
  msgstr "Последнее обновление "
1078
 
1079
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1080
  msgctxt "x-ago"
1081
  msgid "%s ago"
1082
  msgstr "% тому назад "
1083
 
1084
- #: includes/fs-plugin-info-dialog.php:1338
1085
  msgid "Requires WordPress Version"
1086
  msgstr "Необходима версия WordPress "
1087
 
1088
- #: includes/fs-plugin-info-dialog.php:1339
1089
  msgid "%s or higher"
1090
  msgstr "%s или выше"
1091
 
1092
- #: includes/fs-plugin-info-dialog.php:1346
1093
  msgid "Compatible up to"
1094
  msgstr "Совместима с "
1095
 
1096
- #: includes/fs-plugin-info-dialog.php:1354
1097
  msgid "Downloaded"
1098
  msgstr "Загружен "
1099
 
1100
- #: includes/fs-plugin-info-dialog.php:1358
1101
  msgid "%s time"
1102
  msgstr "%s время "
1103
 
1104
- #: includes/fs-plugin-info-dialog.php:1360
1105
  msgid "%s times"
1106
  msgstr "%s раз "
1107
 
1108
- #: includes/fs-plugin-info-dialog.php:1370
1109
  msgid "WordPress.org Plugin Page"
1110
  msgstr "Страница плагинов WordPress.org"
1111
 
1112
- #: includes/fs-plugin-info-dialog.php:1378
1113
  msgid "Plugin Homepage"
1114
  msgstr "Главная страница плагина "
1115
 
1116
- #: includes/fs-plugin-info-dialog.php1386,
1117
- #: includes/fs-plugin-info-dialog.php:1468
1118
  msgid "Donate to this plugin"
1119
  msgstr "Инвестировать в разработку плагина "
1120
 
1121
- #: includes/fs-plugin-info-dialog.php:1393
1122
  msgid "Average Rating"
1123
  msgstr "Средний рейтинг "
1124
 
1125
- #: includes/fs-plugin-info-dialog.php:1400
1126
  msgid "based on %s"
1127
  msgstr "Основан на %s"
1128
 
1129
- #: includes/fs-plugin-info-dialog.php:1404
1130
  msgid "%s rating"
1131
  msgstr "% оценка "
1132
 
1133
- #: includes/fs-plugin-info-dialog.php:1406
1134
  msgid "%s ratings"
1135
  msgstr "% оценки "
1136
 
1137
- #: includes/fs-plugin-info-dialog.php:1421
1138
  msgid "%s star"
1139
  msgstr "%звездочка "
1140
 
1141
- #: includes/fs-plugin-info-dialog.php:1423
1142
  msgid "%s stars"
1143
  msgstr "% звездочки "
1144
 
1145
- #: includes/fs-plugin-info-dialog.php:1434
1146
  msgid "Click to see reviews that provided a rating of %s"
1147
  msgstr "Нажмите, чтобы посмотреть отзывы, которые сформировали рейтинг %s"
1148
 
1149
- #: includes/fs-plugin-info-dialog.php:1447
1150
  msgid "Contributors"
1151
  msgstr "Контрибьюторы "
1152
 
1153
- #: includes/fs-plugin-info-dialog.php1476,
1154
- #: includes/fs-plugin-info-dialog.php:1478
1155
  msgid "Warning"
1156
  msgstr "Предупреждение "
1157
 
1158
- #: includes/fs-plugin-info-dialog.php:1476
1159
  msgid "This plugin has not been tested with your current version of WordPress."
1160
  msgstr "Этот плагин не был тестирован с Вашей текущей версией WordPress. "
1161
 
1162
- #: includes/fs-plugin-info-dialog.php:1478
1163
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1164
  msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress "
1165
 
1166
- #: includes/fs-plugin-info-dialog.php:1497
1167
  msgid "Paid add-on must be deployed to Freemius."
1168
  msgstr "Платный функционал должен быть заявлен в Freemius"
1169
 
1170
- #: includes/fs-plugin-info-dialog.php:1498
1171
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1172
  msgstr "Функционал должен быть заявлен на WordPress.org или Freemius "
1173
 
1174
- #: includes/fs-plugin-info-dialog.php:1519
1175
  msgid "Newer Version (%s) Installed"
1176
  msgstr "Более новая версия %s установлена "
1177
 
1178
- #: includes/fs-plugin-info-dialog.php:1520
1179
  msgid "Newer Free Version (%s) Installed"
1180
  msgstr "Newer Free Version (%s) Installed"
1181
 
1182
- #: includes/fs-plugin-info-dialog.php:1527
1183
  msgid "Latest Version Installed"
1184
  msgstr "Последняя версия установлена"
1185
 
1186
- #: includes/fs-plugin-info-dialog.php:1528
1187
  msgid "Latest Free Version Installed"
1188
  msgstr "Latest Free Version Installed"
1189
 
@@ -1290,223 +1314,231 @@ msgstr "Тарифный план "
1290
  msgid "Bundle Plan"
1291
  msgstr "Bundle Plan"
1292
 
1293
- #: templates/account.php:199
1294
  msgid "Free Trial"
1295
  msgstr "Бесплатный период пользования "
1296
 
1297
- #: templates/account.php:210
1298
  msgid "Account Details"
1299
  msgstr " Детали"
1300
 
1301
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1302
  msgid "Start Debug"
1303
  msgstr "Start Debug"
1304
 
1305
- #: templates/account.php:219
1306
  msgid "Stop Debug"
1307
  msgstr "Stop Debug"
1308
 
1309
- #: templates/account.php:226
1310
  msgid "Billing & Invoices"
1311
  msgstr "Billing & Invoices"
1312
 
1313
- #: templates/account.php:237
1314
  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?"
1315
  msgstr "Удалив личный кабинет, Вы автоматически деактивируете лицензию на Ваш тарифный план %s, которую Вы можете использовать на других сайтах. Если Вы хотите также приостановить регулярные платежи, нажмите на кнопку \"Отмена\" и сначала измените свой тарифный план на бесплатный. Вы уверены, что хотите продолжить удаление?"
1316
 
1317
- #: templates/account.php:239
1318
  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?"
1319
  msgstr "Удаление личного кабинете не может быть произведено временно. Удалите только в случае если Вы больше не хотите пользоваться %s. Вы уверены, что хотите продолжить удаление? "
1320
 
1321
- #: templates/account.php:242
1322
  msgid "Delete Account"
1323
  msgstr "Удалить личный кабинет"
1324
 
1325
- #: templates/account.php254, templates/account/partials/addon.php231,
1326
  #: templates/account/partials/deactivate-license-button.php:35
1327
  msgid "Deactivate License"
1328
  msgstr "Деактивировать лицензию "
1329
 
1330
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1331
  msgid "Are you sure you want to proceed?"
1332
  msgstr "Вы уверены, что хотите продолжить?"
1333
 
1334
- #: templates/account.php277, templates/account/partials/addon.php:255
1335
  msgid "Cancel Subscription"
1336
  msgstr "Отменить подписку "
1337
 
1338
- #: templates/account.php306, templates/account/partials/addon.php:340
1339
  msgctxt "as synchronize"
1340
  msgid "Sync"
1341
  msgstr "Синхронизировать "
1342
 
1343
- #: templates/account.php321, templates/debug.php:505
1344
  msgid "Name"
1345
  msgstr "Имя"
1346
 
1347
- #: templates/account.php327, templates/debug.php:506
1348
  msgid "Email"
1349
  msgstr "Электронный адрес "
1350
 
1351
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1352
  msgid "User ID"
1353
  msgstr "User ID "
1354
 
1355
- #: templates/account.php352, templates/account.php670,
1356
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1357
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1358
  #: templates/debug.php632, templates/account/payments.php35,
1359
  #: templates/debug/logger.php:21
1360
  msgid "ID"
1361
  msgstr "ID"
1362
 
1363
- #: templates/account.php:359
1364
  msgid "Site ID"
1365
  msgstr "Site ID"
1366
 
1367
- #: templates/account.php:362
1368
  msgid "No ID"
1369
  msgstr "No ID"
1370
 
1371
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1372
  #: templates/debug.php456, templates/debug.php508,
1373
  #: templates/account/partials/site.php:227
1374
  msgid "Public Key"
1375
  msgstr "Public Key "
1376
 
1377
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1378
  #: templates/debug.php509, templates/account/partials/site.php:239
1379
  msgid "Secret Key"
1380
  msgstr "Secret Key "
1381
 
1382
- #: templates/account.php:376
1383
  msgctxt "as secret encryption key missing"
1384
  msgid "No Secret"
1385
  msgstr "Нет секрета "
1386
 
1387
- #: templates/account.php403, templates/account/partials/site.php120,
1388
  #: templates/account/partials/site.php:122
1389
  msgid "Trial"
1390
  msgstr "Тестовый период "
1391
 
1392
- #: templates/account.php430, templates/debug.php561,
1393
  #: templates/account/partials/site.php:260
1394
  msgid "License Key"
1395
  msgstr "Лицензионный ключ "
1396
 
1397
- #: templates/account.php:461
1398
  msgid "Join the Beta program"
1399
  msgstr "Join the Beta program"
1400
 
1401
- #: templates/account.php:467
1402
  msgid "not verified"
1403
  msgstr "не подтвержден "
1404
 
1405
- #: templates/account.php476, templates/account/partials/addon.php:190
1406
  msgid "Expired"
1407
  msgstr "Срок действия закончился "
1408
 
1409
- #: templates/account.php:536
1410
  msgid "Premium version"
1411
  msgstr "Премиум версия "
1412
 
1413
- #: templates/account.php:538
1414
  msgid "Free version"
1415
  msgstr "Бесплатная версия "
1416
 
1417
- #: templates/account.php:550
1418
  msgid "Verify Email"
1419
  msgstr "Подтвердите электронный адрес "
1420
 
1421
- #: templates/account.php:564
1422
  msgid "Download %s Version"
1423
  msgstr "Скачайте версию %s"
1424
 
1425
- #: templates/account.php:580
1426
  msgid "Download Paid Version"
1427
  msgstr "Download Paid Version"
1428
 
1429
- #: templates/account.php598, templates/account.php853,
1430
  #: templates/account/partials/site.php248,
1431
  #: templates/account/partials/site.php:270
1432
  msgctxt "verb"
1433
  msgid "Show"
1434
  msgstr "Показать "
1435
 
1436
- #: templates/account.php:613
1437
  msgid "What is your %s?"
1438
  msgstr "Какой Ваш %s?"
1439
 
1440
- #: templates/account.php621, templates/account/billing.php:21
1441
  msgctxt "verb"
1442
  msgid "Edit"
1443
  msgstr "Редактировать "
1444
 
1445
- #: templates/account.php625, templates/forms/user-change.php:27
1446
  msgid "Change User"
1447
  msgstr "Change User"
1448
 
1449
- #: templates/account.php:649
1450
  msgid "Sites"
1451
  msgstr "Сайтов "
1452
 
1453
- #: templates/account.php:662
1454
  msgid "Search by address"
1455
  msgstr "Search by address"
1456
 
1457
- #: templates/account.php671, templates/debug.php:366
1458
  msgid "Address"
1459
  msgstr "Address"
1460
 
1461
- #: templates/account.php:672
1462
  msgid "License"
1463
  msgstr "Лицензия "
1464
 
1465
- #: templates/account.php:673
1466
  msgid "Plan"
1467
  msgstr "Тарифный план "
1468
 
1469
- #: templates/account.php:718
1470
  msgctxt "as software license"
1471
  msgid "License"
1472
  msgstr "Лицензия "
1473
 
1474
- #: templates/account.php:847
1475
  msgctxt "verb"
1476
  msgid "Hide"
1477
  msgstr "Спрятать "
1478
 
1479
- #: templates/account.php869, templates/forms/data-debug-mode.php:31
1480
  msgid "Processing"
1481
  msgstr "Обработка данных "
1482
 
1483
- #: templates/account.php:872
1484
  msgid "Get updates for bleeding edge Beta versions of %s."
1485
  msgstr "Get updates for bleeding edge Beta versions of %s."
1486
 
1487
- #: templates/account.php:930
1488
  msgid "Cancelling %s"
1489
  msgstr "Cancelling %s"
1490
 
1491
- #: templates/account.php930, templates/account.php947,
1492
  #: templates/forms/subscription-cancellation.php27,
1493
  #: templates/forms/deactivation/form.php:133
1494
  msgid "trial"
1495
  msgstr "trial"
1496
 
1497
- #: templates/account.php945, templates/forms/deactivation/form.php:150
1498
  msgid "Cancelling %s..."
1499
  msgstr "Cancelling %s..."
1500
 
1501
- #: templates/account.php948, templates/forms/subscription-cancellation.php28,
1502
  #: templates/forms/deactivation/form.php:134
1503
  msgid "subscription"
1504
  msgstr "subscription"
1505
 
1506
- #: templates/account.php:962
1507
  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?"
1508
  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?"
1509
 
 
 
 
 
 
 
 
 
1510
  #: templates/add-ons.php:38
1511
  msgid "View details"
1512
  msgstr "Смотреть детальней "
@@ -1638,7 +1670,7 @@ msgstr "Лицензионный ключ"
1638
  msgid "Can't find your license key?"
1639
  msgstr "Не можете найти лицензионный ключ? "
1640
 
1641
- #: templates/connect.php323, templates/connect.php694,
1642
  #: templates/forms/deactivation/retry-skip.php:20
1643
  msgctxt "verb"
1644
  msgid "Skip"
@@ -1696,40 +1728,40 @@ msgstr "Plugins & Themes"
1696
  msgid "Title, slug, version, and is active"
1697
  msgstr "Title, slug, version, and is active"
1698
 
1699
- #: templates/connect.php420, templates/forms/license-activation.php:41
1700
  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."
1701
  msgstr "%1$s будет периодически присылать информацию %2$s с целью проверки безопасности, сообщения об обновлении функционала и подтверждения действия Вашей лицензии. "
1702
 
1703
- #: templates/connect.php:425
1704
  msgid "What permissions are being granted?"
1705
  msgstr "Какие предоставляются разрешения?"
1706
 
1707
- #: templates/connect.php:451
1708
  msgid "Don't have a license key?"
1709
  msgstr "У Вас нет лицензионного ключа?"
1710
 
1711
- #: templates/connect.php:454
1712
  msgid "Have a license key?"
1713
  msgstr "У Вас есть лицензионный ключ?"
1714
 
1715
- #: templates/connect.php:462
1716
  msgid "Privacy Policy"
1717
  msgstr "Политика Конфиденциальности"
1718
 
1719
- #: templates/connect.php:464
1720
  msgid "License Agreement"
1721
  msgstr "License Agreement"
1722
 
1723
- #: templates/connect.php:464
1724
  msgid "Terms of Service"
1725
  msgstr "Пользовательское соглашение"
1726
 
1727
- #: templates/connect.php:853
1728
  msgctxt "as in the process of sending an email"
1729
  msgid "Sending email"
1730
  msgstr "Электронное письмо отправляется Вам на почту "
1731
 
1732
- #: templates/connect.php:854
1733
  msgctxt "as activating plugin"
1734
  msgid "Activating"
1735
  msgstr "Активация "
@@ -2176,135 +2208,135 @@ msgstr "Бессрочный "
2176
  msgid "Apply to become an affiliate"
2177
  msgstr "Подать заявку на партнерство "
2178
 
2179
- #: templates/forms/affiliation.php:104
2180
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2181
  msgstr "Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на %s"
2182
 
2183
- #: templates/forms/affiliation.php:119
2184
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2185
  msgstr "Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на протяжении следующих 14 дней и свяжемся с Вами. "
2186
 
2187
- #: templates/forms/affiliation.php:122
2188
  msgid "Your affiliation account was temporarily suspended."
2189
  msgstr "Ваш партнерский аккаунт временно недоступен. "
2190
 
2191
- #: templates/forms/affiliation.php:125
2192
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2193
  msgstr "Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 дней. "
2194
 
2195
- #: templates/forms/affiliation.php:128
2196
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2197
  msgstr "Из-за нарушения условий партнерства мы вынуждены временно заблокировать Ваш аккаунт. Если у Вас возникли вопросы, пожалуйста, обратитесь в службу поддержки. "
2198
 
2199
- #: templates/forms/affiliation.php:141
2200
  msgid "Like the %s? Become our ambassador and earn cash ;-)"
2201
  msgstr "Вам нравится %s? Стань нашим партнером и зарабатывай ;-)"
2202
 
2203
- #: templates/forms/affiliation.php:142
2204
  msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2205
  msgstr "Порекомендуй % новым пользователям и зарабатывай %s c каждой успешной продажи. "
2206
 
2207
- #: templates/forms/affiliation.php:145
2208
  msgid "Program Summary"
2209
  msgstr "Краткое описание программы "
2210
 
2211
- #: templates/forms/affiliation.php:147
2212
  msgid "%s commission when a customer purchases a new license."
2213
  msgstr "%s вознаграждения, если клиент купит новую лицензию."
2214
 
2215
- #: templates/forms/affiliation.php:149
2216
  msgid "Get commission for automated subscription renewals."
2217
  msgstr "Получай вознаграждение за автоматические продления пользования. "
2218
 
2219
- #: templates/forms/affiliation.php:152
2220
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2221
  msgstr "%s данные cookies предоставляются после первого посещения, чтобы максимально увеличить вероятность заработка. "
2222
 
2223
- #: templates/forms/affiliation.php:155
2224
  msgid "Unlimited commissions."
2225
  msgstr "Неограниченное вознаграждение "
2226
 
2227
- #: templates/forms/affiliation.php:157
2228
  msgid "%s minimum payout amount."
2229
  msgstr "% минимальная сумма выплаты "
2230
 
2231
- #: templates/forms/affiliation.php:158
2232
  msgid "Payouts are in USD and processed monthly via PayPal."
2233
  msgstr "Выплаты производятся в долларах США через PayPal."
2234
 
2235
- #: templates/forms/affiliation.php:159
2236
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2237
  msgstr "Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения выплачиваются за покупки, которые были совершены более чем 30 дней назад."
2238
 
2239
- #: templates/forms/affiliation.php:162
2240
  msgid "Affiliate"
2241
  msgstr "Партнер"
2242
 
2243
- #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
2244
  msgid "Email address"
2245
  msgstr "Электронный адрес "
2246
 
2247
- #: templates/forms/affiliation.php:169
2248
  msgid "Full name"
2249
  msgstr "Полное имя"
2250
 
2251
- #: templates/forms/affiliation.php:173
2252
  msgid "PayPal account email address"
2253
  msgstr "Электронный адрес аккаунта PayPal"
2254
 
2255
- #: templates/forms/affiliation.php:177
2256
  msgid "Where are you going to promote the %s?"
2257
  msgstr "Где Вы намерены продвигать %s?"
2258
 
2259
- #: templates/forms/affiliation.php:179
2260
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2261
  msgstr "Введите домен Вашего сайта или других сайтов на которых Вы намерены продвигать %s."
2262
 
2263
- #: templates/forms/affiliation.php:181
2264
  msgid "Add another domain"
2265
  msgstr "Добавьте другое доменное имя "
2266
 
2267
- #: templates/forms/affiliation.php:185
2268
  msgid "Extra Domains"
2269
  msgstr "Дополнительные доменные имена "
2270
 
2271
- #: templates/forms/affiliation.php:186
2272
  msgid "Extra domains where you will be marketing the product from."
2273
  msgstr "Дополнительные доменные имена, где Вы будете продвигать продукт. "
2274
 
2275
- #: templates/forms/affiliation.php:196
2276
  msgid "Promotion methods"
2277
  msgstr "Методы продвижения "
2278
 
2279
- #: templates/forms/affiliation.php:199
2280
  msgid "Social media (Facebook, Twitter, etc.)"
2281
  msgstr "Социальные сети ( Facebook, Twitter, etc.)"
2282
 
2283
- #: templates/forms/affiliation.php:203
2284
  msgid "Mobile apps"
2285
  msgstr "Мобильные приложения "
2286
 
2287
- #: templates/forms/affiliation.php:207
2288
  msgid "Website, email, and social media statistics (optional)"
2289
  msgstr "Вебсайт, электронный адрес и статистика социальных сетей (не обязательно)"
2290
 
2291
- #: templates/forms/affiliation.php:210
2292
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2293
  msgstr "Пожалуйста, предоставьте соответственную статистику вебсайта или страницы социальных сетей, например, количество уникальных посетителей, количество подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). "
2294
 
2295
- #: templates/forms/affiliation.php:214
2296
  msgid "How will you promote us?"
2297
  msgstr "Как Вы намерены продвигать нас?"
2298
 
2299
- #: templates/forms/affiliation.php:217
2300
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2301
  msgstr "Пожалуйста, предоставьте максимально детальную информацию о том, как Вы планируете продвигать %s."
2302
 
2303
- #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
2304
  msgid "Cancel"
2305
  msgstr "Отмена "
2306
 
2307
- #: templates/forms/affiliation.php:225
2308
  msgid "Become an affiliate"
2309
  msgstr "Стать партнером"
2310
 
@@ -2378,7 +2410,7 @@ msgstr "Если Вы нажмете \"Отписаться\", Вы больше
2378
  msgid "Plugins & themes tracking"
2379
  msgstr "Plugins & themes tracking"
2380
 
2381
- #: templates/forms/optout.php:256
2382
  msgid "Saved"
2383
  msgstr "Saved"
2384
 
@@ -2467,7 +2499,7 @@ msgstr "Enter email address"
2467
  #: templates/forms/user-change.php:81
2468
  msgctxt "close window"
2469
  msgid "Dismiss"
2470
- msgstr "Dismiss"
2471
 
2472
  #: templates/js/style-premium-theme.php:39
2473
  msgid "Premium"
@@ -2596,19 +2628,19 @@ msgstr "Деактивация "
2596
  msgid "switching"
2597
  msgstr "Переключение "
2598
 
2599
- #: templates/forms/deactivation/form.php:365
2600
  msgid "Submit & %s"
2601
  msgstr "Отправить&%s"
2602
 
2603
- #: templates/forms/deactivation/form.php:386
2604
  msgid "Kindly tell us the reason so we can improve."
2605
  msgstr "Пожалуйста, укажите причину, чтобы мы могли исправиться. "
2606
 
2607
- #: templates/forms/deactivation/form.php:511
2608
  msgid "Yes - %s"
2609
  msgstr "Да - %s"
2610
 
2611
- #: templates/forms/deactivation/form.php:518
2612
  msgid "Skip & %s"
2613
  msgstr "Пропустить & %s"
2614
 
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
  "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
  "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
  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
 
897
+ #: includes/fs-plugin-info-dialog.php:541
898
  msgid "Purchase More"
899
  msgstr "Purchase More"
900
 
901
+ #: includes/fs-plugin-info-dialog.php542,
902
  #: templates/account/partials/addon.php:385
903
  msgctxt "verb"
904
  msgid "Purchase"
905
  msgstr "Купить"
906
 
907
+ #: includes/fs-plugin-info-dialog.php:546
908
  msgid "Start my free %s"
909
  msgstr "Начать мой бесплатный %s"
910
 
911
+ #: includes/fs-plugin-info-dialog.php:744
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
 
919
+ #: includes/fs-plugin-info-dialog.php:754
920
  msgid "Install Free Version Now"
921
  msgstr "Install Free Version Now"
922
 
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
  #: templates/auto-installation.php111,
925
  #: templates/account/partials/addon.php365,
926
  #: templates/account/partials/addon.php:418
927
  msgid "Install Now"
928
  msgstr "Установить сейчас "
929
 
930
+ #: includes/fs-plugin-info-dialog.php:771
931
  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"
939
  msgstr "Скачать последнюю версию"
940
 
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
  #: templates/account/partials/addon.php356,
943
  #: templates/account/partials/addon.php:412
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 "Активировать "
955
 
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
  msgctxt "Plugin installer section title"
958
  msgid "Description"
959
  msgstr "Описание "
960
 
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
  msgctxt "Plugin installer section title"
963
  msgid "Installation"
964
  msgstr "Установка "
965
 
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
  msgctxt "Plugin installer section title"
968
  msgid "FAQ"
969
  msgstr "Часто задаваемые вопросы "
970
 
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
  #: templates/plugin-info/description.php:55
973
  msgid "Screenshots"
974
  msgstr "Снимки экрана "
975
 
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
  msgctxt "Plugin installer section title"
978
  msgid "Changelog"
979
  msgstr "Журнал изменений "
980
 
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
  msgctxt "Plugin installer section title"
983
  msgid "Reviews"
984
  msgstr "Отзывы "
985
 
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
  msgctxt "Plugin installer section title"
988
  msgid "Other Notes"
989
  msgstr "Другие заметки "
990
 
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
  msgctxt "Plugin installer section title"
993
  msgid "Features & Pricing"
994
  msgstr "Функционал&тарифные планы "
995
 
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
  msgid "Plugin Install"
998
  msgstr "Установка плагина "
999
 
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
  msgctxt "e.g. Professional Plan"
1002
  msgid "%s Plan"
1003
  msgstr "%s план "
1004
 
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
  msgctxt "e.g. the best product"
1007
  msgid "Best"
1008
  msgstr "Лучший "
1009
 
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
  msgctxt "as every month"
1013
  msgid "Monthly"
1014
  msgstr "Помесячно "
1015
 
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
  msgctxt "as once a year"
1018
  msgid "Annual"
1019
  msgstr "Ежегодно "
1020
 
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
  msgid "Lifetime"
1023
  msgstr "На бессрочный период "
1024
 
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
  msgctxt "e.g. billed monthly"
1029
  msgid "Billed %s"
1030
  msgstr "Оплачивать %s"
1031
 
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
  msgctxt "as once a year"
1034
  msgid "Annually"
1035
  msgstr "Один раз в год "
1036
 
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
  msgctxt "as once a year"
1039
  msgid "Once"
1040
  msgstr "Один раз "
1041
 
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
  msgid "Single Site License"
1044
  msgstr "Лицензия на один сайт "
1045
 
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
  msgid "Unlimited Licenses"
1048
  msgstr "Неограниченная лицензия "
1049
 
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
  msgid "Up to %s Sites"
1052
  msgstr "до % сайтов "
1053
 
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
  #: templates/plugin-info/features.php:82
1056
  msgctxt "as monthly period"
1057
  msgid "mo"
1058
  msgstr "на один месяц"
1059
 
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
  #: templates/plugin-info/features.php:80
1062
  msgctxt "as annual period"
1063
  msgid "year"
1064
  msgstr "на один год "
1065
 
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
  msgctxt "noun"
1068
  msgid "Price"
1069
  msgstr "Стоимость "
1070
 
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
  msgid "Save %s"
1073
  msgstr "Экономия %s"
1074
 
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
  msgid "No commitment for %s - cancel anytime"
1077
  msgstr "Без обязательств платить %s - аннулируй пользование в любое время "
1078
 
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
  msgid "After your free %s, pay as little as %s"
1081
  msgstr "После окончания Вашего бесплатного %s, платите всего лиш %s"
1082
 
1083
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1091
  msgid "Version"
1092
  msgstr "Версия "
1093
 
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
  msgctxt "as the plugin author"
1096
  msgid "Author"
1097
  msgstr "Автор"
1098
 
1099
+ #: includes/fs-plugin-info-dialog.php:1332
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 "% тому назад "
1107
 
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
  msgid "Requires WordPress Version"
1110
  msgstr "Необходима версия WordPress "
1111
 
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
  msgid "%s or higher"
1114
  msgstr "%s или выше"
1115
 
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
  msgid "Compatible up to"
1118
  msgstr "Совместима с "
1119
 
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
  msgid "Downloaded"
1122
  msgstr "Загружен "
1123
 
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
  msgid "%s time"
1126
  msgstr "%s время "
1127
 
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
  msgid "%s times"
1130
  msgstr "%s раз "
1131
 
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
  msgid "WordPress.org Plugin Page"
1134
  msgstr "Страница плагинов WordPress.org"
1135
 
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
  msgid "Plugin Homepage"
1138
  msgstr "Главная страница плагина "
1139
 
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
  msgid "Donate to this plugin"
1143
  msgstr "Инвестировать в разработку плагина "
1144
 
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
  msgid "Average Rating"
1147
  msgstr "Средний рейтинг "
1148
 
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
  msgid "based on %s"
1151
  msgstr "Основан на %s"
1152
 
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
  msgid "%s rating"
1155
  msgstr "% оценка "
1156
 
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
  msgid "%s ratings"
1159
  msgstr "% оценки "
1160
 
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
  msgid "%s star"
1163
  msgstr "%звездочка "
1164
 
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
  msgid "%s stars"
1167
  msgstr "% звездочки "
1168
 
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
  msgid "Click to see reviews that provided a rating of %s"
1171
  msgstr "Нажмите, чтобы посмотреть отзывы, которые сформировали рейтинг %s"
1172
 
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
  msgid "Contributors"
1175
  msgstr "Контрибьюторы "
1176
 
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
  msgid "Warning"
1180
  msgstr "Предупреждение "
1181
 
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
  msgid "This plugin has not been tested with your current version of WordPress."
1184
  msgstr "Этот плагин не был тестирован с Вашей текущей версией WordPress. "
1185
 
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
  msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress "
1189
 
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
  msgid "Paid add-on must be deployed to Freemius."
1192
  msgstr "Платный функционал должен быть заявлен в Freemius"
1193
 
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
  msgstr "Функционал должен быть заявлен на WordPress.org или Freemius "
1197
 
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
  msgid "Newer Version (%s) Installed"
1200
  msgstr "Более новая версия %s установлена "
1201
 
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
  msgid "Newer Free Version (%s) Installed"
1204
  msgstr "Newer Free Version (%s) Installed"
1205
 
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
  msgid "Latest Version Installed"
1208
  msgstr "Последняя версия установлена"
1209
 
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
  msgid "Latest Free Version Installed"
1212
  msgstr "Latest Free Version Installed"
1213
 
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
+
1542
  #: templates/add-ons.php:38
1543
  msgid "View details"
1544
  msgstr "Смотреть детальней "
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"
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 "Активация "
2208
  msgid "Apply to become an affiliate"
2209
  msgstr "Подать заявку на партнерство "
2210
 
2211
+ #: templates/forms/affiliation.php:107
2212
  msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2213
  msgstr "Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на %s"
2214
 
2215
+ #: templates/forms/affiliation.php:122
2216
  msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
2217
  msgstr "Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на протяжении следующих 14 дней и свяжемся с Вами. "
2218
 
2219
+ #: templates/forms/affiliation.php:125
2220
  msgid "Your affiliation account was temporarily suspended."
2221
  msgstr "Ваш партнерский аккаунт временно недоступен. "
2222
 
2223
+ #: templates/forms/affiliation.php:128
2224
  msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
2225
  msgstr "Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 дней. "
2226
 
2227
+ #: templates/forms/affiliation.php:131
2228
  msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2229
  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!"
2237
  msgstr "Порекомендуй % новым пользователям и зарабатывай %s c каждой успешной продажи. "
2238
 
2239
+ #: templates/forms/affiliation.php:148
2240
  msgid "Program Summary"
2241
  msgstr "Краткое описание программы "
2242
 
2243
+ #: templates/forms/affiliation.php:150
2244
  msgid "%s commission when a customer purchases a new license."
2245
  msgstr "%s вознаграждения, если клиент купит новую лицензию."
2246
 
2247
+ #: templates/forms/affiliation.php:152
2248
  msgid "Get commission for automated subscription renewals."
2249
  msgstr "Получай вознаграждение за автоматические продления пользования. "
2250
 
2251
+ #: templates/forms/affiliation.php:155
2252
  msgid "%s tracking cookie after the first visit to maximize earnings potential."
2253
  msgstr "%s данные cookies предоставляются после первого посещения, чтобы максимально увеличить вероятность заработка. "
2254
 
2255
+ #: templates/forms/affiliation.php:158
2256
  msgid "Unlimited commissions."
2257
  msgstr "Неограниченное вознаграждение "
2258
 
2259
+ #: templates/forms/affiliation.php:160
2260
  msgid "%s minimum payout amount."
2261
  msgstr "% минимальная сумма выплаты "
2262
 
2263
+ #: templates/forms/affiliation.php:161
2264
  msgid "Payouts are in USD and processed monthly via PayPal."
2265
  msgstr "Выплаты производятся в долларах США через PayPal."
2266
 
2267
+ #: templates/forms/affiliation.php:162
2268
  msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2269
  msgstr "Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения выплачиваются за покупки, которые были совершены более чем 30 дней назад."
2270
 
2271
+ #: templates/forms/affiliation.php:165
2272
  msgid "Affiliate"
2273
  msgstr "Партнер"
2274
 
2275
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2276
  msgid "Email address"
2277
  msgstr "Электронный адрес "
2278
 
2279
+ #: templates/forms/affiliation.php:172
2280
  msgid "Full name"
2281
  msgstr "Полное имя"
2282
 
2283
+ #: templates/forms/affiliation.php:176
2284
  msgid "PayPal account email address"
2285
  msgstr "Электронный адрес аккаунта PayPal"
2286
 
2287
+ #: templates/forms/affiliation.php:180
2288
  msgid "Where are you going to promote the %s?"
2289
  msgstr "Где Вы намерены продвигать %s?"
2290
 
2291
+ #: templates/forms/affiliation.php:182
2292
  msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2293
  msgstr "Введите домен Вашего сайта или других сайтов на которых Вы намерены продвигать %s."
2294
 
2295
+ #: templates/forms/affiliation.php:184
2296
  msgid "Add another domain"
2297
  msgstr "Добавьте другое доменное имя "
2298
 
2299
+ #: templates/forms/affiliation.php:188
2300
  msgid "Extra Domains"
2301
  msgstr "Дополнительные доменные имена "
2302
 
2303
+ #: templates/forms/affiliation.php:189
2304
  msgid "Extra domains where you will be marketing the product from."
2305
  msgstr "Дополнительные доменные имена, где Вы будете продвигать продукт. "
2306
 
2307
+ #: templates/forms/affiliation.php:199
2308
  msgid "Promotion methods"
2309
  msgstr "Методы продвижения "
2310
 
2311
+ #: templates/forms/affiliation.php:202
2312
  msgid "Social media (Facebook, Twitter, etc.)"
2313
  msgstr "Социальные сети ( Facebook, Twitter, etc.)"
2314
 
2315
+ #: templates/forms/affiliation.php:206
2316
  msgid "Mobile apps"
2317
  msgstr "Мобильные приложения "
2318
 
2319
+ #: templates/forms/affiliation.php:210
2320
  msgid "Website, email, and social media statistics (optional)"
2321
  msgstr "Вебсайт, электронный адрес и статистика социальных сетей (не обязательно)"
2322
 
2323
+ #: templates/forms/affiliation.php:213
2324
  msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
2325
  msgstr "Пожалуйста, предоставьте соответственную статистику вебсайта или страницы социальных сетей, например, количество уникальных посетителей, количество подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). "
2326
 
2327
+ #: templates/forms/affiliation.php:217
2328
  msgid "How will you promote us?"
2329
  msgstr "Как Вы намерены продвигать нас?"
2330
 
2331
+ #: templates/forms/affiliation.php:220
2332
  msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2333
  msgstr "Пожалуйста, предоставьте максимально детальную информацию о том, как Вы планируете продвигать %s."
2334
 
2335
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2336
  msgid "Cancel"
2337
  msgstr "Отмена "
2338
 
2339
+ #: templates/forms/affiliation.php:234
2340
  msgid "Become an affiliate"
2341
  msgstr "Стать партнером"
2342
 
2410
  msgid "Plugins & themes tracking"
2411
  msgstr "Plugins & themes tracking"
2412
 
2413
+ #: templates/forms/optout.php:261
2414
  msgid "Saved"
2415
  msgstr "Saved"
2416
 
2499
  #: templates/forms/user-change.php:81
2500
  msgctxt "close window"
2501
  msgid "Dismiss"
2502
+ msgstr "Закрыть "
2503
 
2504
  #: templates/js/style-premium-theme.php:39
2505
  msgid "Premium"
2628
  msgid "switching"
2629
  msgstr "Переключение "
2630
 
2631
+ #: templates/forms/deactivation/form.php:369
2632
  msgid "Submit & %s"
2633
  msgstr "Отправить&%s"
2634
 
2635
+ #: templates/forms/deactivation/form.php:390
2636
  msgid "Kindly tell us the reason so we can improve."
2637
  msgstr "Пожалуйста, укажите причину, чтобы мы могли исправиться. "
2638
 
2639
+ #: templates/forms/deactivation/form.php:515
2640
  msgid "Yes - %s"
2641
  msgstr "Да - %s"
2642
 
2643
+ #: templates/forms/deactivation/form.php:522
2644
  msgid "Skip & %s"
2645
  msgstr "Пропустить & %s"
2646
 
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) 2019 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-07-27 11:43+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,813 +21,837 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php1881, templates/account.php:873
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:1888
29
  msgid "Would you like to proceed with the update?"
30
  msgstr "மேம்படுத்தப்பட்ட பதிப்பில் தொடர விரும்புகிறீர்களா?"
31
 
32
- #: includes/class-freemius.php:2096
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:2098
37
  msgid "Error"
38
  msgstr "தவறு"
39
 
40
- #: includes/class-freemius.php:2492
41
  msgid "I found a better %s"
42
  msgstr "எனக்கு வேறு ஒரு நல்ல %s கிடைத்துவிட்டது"
43
 
44
- #: includes/class-freemius.php:2494
45
  msgid "What's the %s's name?"
46
  msgstr "%sன் பெயர் என்ன?"
47
 
48
- #: includes/class-freemius.php:2500
49
  msgid "It's a temporary %s. I'm just debugging an issue."
50
  msgstr "இது தற்காலிக %s. தவறை சரிசெய்ய முயற்சிக்கிறேன்"
51
 
52
- #: includes/class-freemius.php:2502
53
  msgid "Deactivation"
54
  msgstr "செயல்நிறுத்து"
55
 
56
- #: includes/class-freemius.php:2503
57
  msgid "Theme Switch"
58
  msgstr "தீம் மாற்றம்"
59
 
60
- #: includes/class-freemius.php2512, templates/forms/resend-key.php24,
61
  #: templates/forms/user-change.php:29
62
  msgid "Other"
63
  msgstr "மற்றவை"
64
 
65
- #: includes/class-freemius.php:2520
66
  msgid "I no longer need the %s"
67
  msgstr "இனி எனக்கு %s தேவையில்லை"
68
 
69
- #: includes/class-freemius.php:2527
70
  msgid "I only needed the %s for a short period"
71
  msgstr "குறுகிய காலத்திற்கு மட்டும் %s போதும்"
72
 
73
- #: includes/class-freemius.php:2533
74
  msgid "The %s broke my site"
75
  msgstr "%s எனது இணையதளத்தை செயலிழக்க வைத்துவிட்டது"
76
 
77
- #: includes/class-freemius.php:2540
78
  msgid "The %s suddenly stopped working"
79
  msgstr "%s திடீரென நின்றுவிட்டது"
80
 
81
- #: includes/class-freemius.php:2550
82
  msgid "I can't pay for it anymore"
83
  msgstr "இதற்குமேல் பணம் செலுத்தமாட்டேன்"
84
 
85
- #: includes/class-freemius.php:2552
86
  msgid "What price would you feel comfortable paying?"
87
  msgstr "என்ன விலை உங்களுக்கு வசதியாக இருக்கும்?"
88
 
89
- #: includes/class-freemius.php:2558
90
  msgid "I don't like to share my information with you"
91
  msgstr "என் தனிப்பட்ட தகவலை உங்களோடு பகிர விரும்பவில்லை."
92
 
93
- #: includes/class-freemius.php:2579
94
  msgid "The %s didn't work"
95
  msgstr "%s வேலை செய்யவில்லை"
96
 
97
- #: includes/class-freemius.php:2589
98
  msgid "I couldn't understand how to make it work"
99
  msgstr "இதை எப்படி உபயோகிப்பது என்று எனக்குப் புரியவில்லை"
100
 
101
- #: includes/class-freemius.php:2597
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:2599
106
  msgid "What feature?"
107
  msgstr "என்ன வசதி?"
108
 
109
- #: includes/class-freemius.php:2603
110
  msgid "The %s is not working"
111
  msgstr "%s சரிவர வேலை செய்யவில்லை"
112
 
113
- #: includes/class-freemius.php:2605
114
  msgid "Kindly share what didn't work so we can fix it for future users..."
115
  msgstr "என்ன வேலை செய்யவில்லை என்பதை விளக்கமாக சொன்னால், அதை நாங்கள் சரி செய்வோம்."
116
 
117
- #: includes/class-freemius.php:2609
118
  msgid "It's not what I was looking for"
119
  msgstr "நான் எதிர்பார்த்தது இதுவல்ல."
120
 
121
- #: includes/class-freemius.php:2611
122
  msgid "What you've been looking for?"
123
  msgstr "நீங்கள் என்ன எதிர்பார்க்கிறீர்கள்?"
124
 
125
- #: includes/class-freemius.php:2615
126
  msgid "The %s didn't work as expected"
127
  msgstr "%s நான் எதிர்பார்த்தது போல் இல்லை"
128
 
129
- #: includes/class-freemius.php:2617
130
  msgid "What did you expect?"
131
  msgstr "நீங்கள் என்ன எதிர்பார்த்தீர்கள்?"
132
 
133
- #: includes/class-freemius.php3472, templates/debug.php:20
134
  msgid "Freemius Debug"
135
  msgstr "Freemius தவறுநீக்கி Debug"
136
 
137
- #: includes/class-freemius.php:4224
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:4226
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:4233
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:4338
150
  msgid "Yes - do your thing"
151
  msgstr "ம்... கிளப்புங்கள்"
152
 
153
- #: includes/class-freemius.php:4343
154
  msgid "No - just deactivate"
155
  msgstr "வேணாம்பா... கண்ண கட்டுது"
156
 
157
- #: includes/class-freemius.php4388, includes/class-freemius.php4882,
158
- #: includes/class-freemius.php6111, includes/class-freemius.php12933,
159
- #: includes/class-freemius.php13571, includes/class-freemius.php17006,
160
- #: includes/class-freemius.php17094, includes/class-freemius.php17260,
161
- #: includes/class-freemius.php19492, includes/class-freemius.php19833,
162
- #: includes/class-freemius.php19843, includes/class-freemius.php20507,
163
- #: includes/class-freemius.php21413, includes/class-freemius.php21546,
164
- #: includes/class-freemius.php21690, templates/add-ons.php:57
165
  msgctxt "exclamation"
166
  msgid "Oops"
167
  msgstr "அரே ஓ சம்போ!"
168
 
169
- #: includes/class-freemius.php:4457
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:4879
174
  msgctxt "addonX cannot run without pluginY"
175
  msgid "%s cannot run without %s."
176
  msgstr "%s இல்லாமல் %s இயங்காது"
177
 
178
- #: includes/class-freemius.php:4880
179
  msgctxt "addonX cannot run..."
180
  msgid "%s cannot run without the plugin."
181
  msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது"
182
 
183
- #: includes/class-freemius.php5053, includes/class-freemius.php5078,
184
- #: includes/class-freemius.php:20578
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:5777
189
  msgid "Premium %s version was successfully activated."
190
  msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது."
191
 
192
- #: includes/class-freemius.php5789, includes/class-freemius.php:7682
193
  msgctxt ""
194
  msgid "W00t"
195
  msgstr "W00t"
196
 
197
- #: includes/class-freemius.php:5804
198
  msgid "You have a %s license."
199
  msgstr "உங்களிடம் %sன் உரிமம் உள்ளது"
200
 
201
- #: includes/class-freemius.php5808, includes/class-freemius.php16405,
202
- #: includes/class-freemius.php16416, includes/class-freemius.php19744,
203
- #: includes/class-freemius.php20094, includes/class-freemius.php20163,
204
- #: includes/class-freemius.php:20328
205
  msgctxt "interjection expressing joy or exuberance"
206
  msgid "Yee-haw"
207
  msgstr "Yee-haw"
208
 
209
- #: includes/class-freemius.php:6094
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:6098
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.php6107, 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:6108
223
  msgid "Purchase License"
224
  msgstr "உரிமம் வாங்குங்கள்"
225
 
226
- #: includes/class-freemius.php7047, 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:7051
231
  msgid "start the trial"
232
  msgstr "வெள்ளோட்டம் துவங்கலாம்"
233
 
234
- #: includes/class-freemius.php7052, templates/connect.php:175
235
  msgid "complete the install"
236
  msgstr "நிறுவுதலை முடிக்கவும்"
237
 
238
- #: includes/class-freemius.php:7164
239
  msgid "You are just one step away - %s"
240
  msgstr "இன்னும் ஒருபடி அருகில் - %s"
241
 
242
- #: includes/class-freemius.php:7167
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:7245
248
  msgid "We made a few tweaks to the %s, %s"
249
  msgstr "%s, %sக்கு சில சுவாரஸ்யங்களை உருவாக்கியிருக்கிறோம்"
250
 
251
- #: includes/class-freemius.php:7249
252
  msgid "Opt in to make \"%s\" better!"
253
  msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு செய்யுங்கள்"
254
 
255
- #: includes/class-freemius.php:7681
256
  msgid "The upgrade of %s was successfully completed."
257
  msgstr "%sன் மேம்படுத்தல் முடிந்தது"
258
 
259
- #: includes/class-freemius.php9908, includes/class-fs-plugin-updater.php1044,
260
- #: includes/class-fs-plugin-updater.php1239,
261
- #: includes/class-fs-plugin-updater.php1246,
262
  #: templates/auto-installation.php:32
263
  msgid "Add-On"
264
  msgstr "ஆட் ஆன்"
265
 
266
- #: includes/class-freemius.php9910, templates/account.php343,
267
- #: templates/account.php351, templates/debug.php358, templates/debug.php:549
268
  msgid "Plugin"
269
  msgstr "ப்ளக்இன்"
270
 
271
- #: includes/class-freemius.php9911, templates/account.php344,
272
- #: templates/account.php352, templates/debug.php358, templates/debug.php549,
273
  #: templates/forms/deactivation/form.php:71
274
  msgid "Theme"
275
  msgstr "தீம்"
276
 
277
- #: includes/class-freemius.php:12843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "An unknown error has occurred while trying to set the user's beta mode."
279
  msgstr "உபயோகிப்பாளரின் பீட்டாவை செயல்படுத்துகையில், புதிய தவறு உருவாகியுள்ளது."
280
 
281
- #: includes/class-freemius.php:12904
282
  msgid "Invalid new user ID or email address."
283
  msgstr "Invalid new user ID or email address."
284
 
285
- #: includes/class-freemius.php12934, includes/class-freemius.php:21645
286
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
287
  msgstr "மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு செய்திருக்கிறார்."
288
 
289
- #: includes/class-freemius.php12935, includes/class-freemius.php:21646
290
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
291
  msgstr "உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை அழுத்தவும்."
292
 
293
- #: includes/class-freemius.php12942, includes/class-freemius.php:21653
294
  msgid "Change Ownership"
295
  msgstr "உரிமை மாற்றம்"
296
 
297
- #: includes/class-freemius.php:13438
298
  msgid "Invalid site details collection."
299
  msgstr "தவறான தள விவர சேர்ப்பு"
300
 
301
- #: includes/class-freemius.php:13558
302
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
303
  msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. "
304
 
305
- #: includes/class-freemius.php:13560
306
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
307
  msgstr "இந்த மின்னஞ்சலின் பதிவில் எந்த உரிமமும் இல்லை. தங்கள் மின்னஞ்சல் சரியானதா?"
308
 
309
- #: includes/class-freemius.php:13834
310
  msgid "Account is pending activation."
311
  msgstr "கணக்கு செயல்பாடு முடிவடையவில்லை."
312
 
313
- #: includes/class-freemius.php13946,
314
  #: templates/forms/premium-versions-upgrade-handler.php:47
315
  msgid "Buy a license now"
316
  msgstr "புது உரிமம் வாங்குங்கள்"
317
 
318
- #: includes/class-freemius.php13958,
319
  #: templates/forms/premium-versions-upgrade-handler.php:46
320
  msgid "Renew your license now"
321
  msgstr "உரிமத்தை புதுப்பியுங்கள்"
322
 
323
- #: includes/class-freemius.php:13962
324
  msgid "%s to access version %s security & feature updates, and support."
325
  msgstr "%s பாதுகாப்பு மேம்படுத்தல் மற்றும் உதவிக்கு %s"
326
 
327
- #: includes/class-freemius.php:16387
328
  msgid "%s activation was successfully completed."
329
  msgstr "%s செயல்படுத்தல் வெற்றிகரமாக முடிந்தது."
330
 
331
- #: includes/class-freemius.php:16401
332
  msgid "Your account was successfully activated with the %s plan."
333
  msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது."
334
 
335
- #: includes/class-freemius.php16412, includes/class-freemius.php:20159
336
  msgid "Your trial has been successfully started."
337
  msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது"
338
 
339
- #: includes/class-freemius.php17004, includes/class-freemius.php17092,
340
- #: includes/class-freemius.php:17258
341
  msgid "Couldn't activate %s."
342
  msgstr "%sஐ செயல்படுத்த முடியவில்லை."
343
 
344
- #: includes/class-freemius.php17005, includes/class-freemius.php17093,
345
- #: includes/class-freemius.php:17259
346
  msgid "Please contact us with the following message:"
347
  msgstr "பின்வரும் செய்தியோடு எங்களைத் தொடர்பு கொள்ளுங்கள்"
348
 
349
- #: includes/class-freemius.php17089, templates/forms/data-debug-mode.php:162
350
  msgid "An unknown error has occurred."
351
  msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது"
352
 
353
- #: includes/class-freemius.php17616, includes/class-freemius.php:22589
354
  msgid "Upgrade"
355
  msgstr "மேம்படுத்து"
356
 
357
- #: includes/class-freemius.php:17622
358
  msgid "Start Trial"
359
  msgstr "வெள்ளோட்டம் துவக்கு"
360
 
361
- #: includes/class-freemius.php:17624
362
  msgid "Pricing"
363
  msgstr "விலை விவரம்"
364
 
365
- #: includes/class-freemius.php17704, includes/class-freemius.php:17706
366
  msgid "Affiliation"
367
  msgstr "புரிந்துணர்வு"
368
 
369
- #: includes/class-freemius.php17734, includes/class-freemius.php17736,
370
- #: templates/account.php191, templates/debug.php:324
371
  msgid "Account"
372
  msgstr "கணக்கு"
373
 
374
- #: includes/class-freemius.php17750, includes/class-freemius.php17752,
375
  #: includes/customizer/class-fs-customizer-support-section.php:60
376
  msgid "Contact Us"
377
  msgstr "தொடர்பு கொள்ளுங்கள்"
378
 
379
- #: includes/class-freemius.php17763, includes/class-freemius.php17765,
380
- #: includes/class-freemius.php22603, templates/account.php119,
381
  #: templates/account/partials/addon.php:44
382
  msgid "Add-Ons"
383
  msgstr "ஆட்-ஆன்ஸ்"
384
 
385
- #: includes/class-freemius.php:17799
386
  msgctxt "ASCII arrow left icon"
387
  msgid "&#x2190;"
388
  msgstr "&#x2190;"
389
 
390
- #: includes/class-freemius.php:17799
391
  msgctxt "ASCII arrow right icon"
392
  msgid "&#x27a4;"
393
  msgstr "&#x27a4;"
394
 
395
- #: includes/class-freemius.php17801, templates/pricing.php:103
396
  msgctxt "noun"
397
  msgid "Pricing"
398
  msgstr "விலை விவரம்"
399
 
400
- #: includes/class-freemius.php18014,
401
  #: includes/customizer/class-fs-customizer-support-section.php:67
402
  msgid "Support Forum"
403
  msgstr "உதவி மையம்"
404
 
405
- #: includes/class-freemius.php:18988
406
  msgid "Your email has been successfully verified - you are AWESOME!"
407
  msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கப்பட்டது - நன்றி!"
408
 
409
- #: includes/class-freemius.php:18989
410
  msgctxt "a positive response"
411
  msgid "Right on"
412
  msgstr "Right on"
413
 
414
- #: includes/class-freemius.php:19493
415
  msgid "seems like the key you entered doesn't match our records."
416
  msgstr "seems like the key you entered doesn't match our records."
417
 
418
- #: includes/class-freemius.php:19517
419
  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."
420
  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."
421
 
422
- #: includes/class-freemius.php:19735
423
  msgid "Your %s Add-on plan was successfully upgraded."
424
  msgstr "உங்கள் %s ஆட்-ஆன் திட்டம் மேம்படுத்தப்பட்டது."
425
 
426
- #: includes/class-freemius.php:19737
427
  msgid "%s Add-on was successfully purchased."
428
  msgstr "%s ஆட்-ஆனை வாங்கிவிட்டீர்கள்."
429
 
430
- #: includes/class-freemius.php:19740
431
  msgid "Download the latest version"
432
  msgstr "புதிய பதிப்பை பதிவிறக்கலாம்"
433
 
434
- #: includes/class-freemius.php:19826
435
  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"
436
  msgstr "%1$s சரியாகச் செயல்பட அவசியமான Freemius APIயை உங்கள் செர்வர் தடை செய்கிறது. %2$sயை செயல்பட வைக்க உங்கள் hosting நிறுவனத்தை அணுகவும்."
437
 
438
- #: includes/class-freemius.php19832, includes/class-freemius.php19842,
439
- #: includes/class-freemius.php20287, includes/class-freemius.php:20376
440
  msgid "Error received from the server:"
441
  msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது."
442
 
443
- #: includes/class-freemius.php:19842
444
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
445
  msgstr "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்."
446
 
447
- #: includes/class-freemius.php20056, includes/class-freemius.php20292,
448
- #: includes/class-freemius.php20347, includes/class-freemius.php:20454
449
  msgctxt ""
450
  msgid "Hmm"
451
  msgstr "Hmm"
452
 
453
- #: includes/class-freemius.php:20069
454
  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."
455
  msgstr "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். "
456
 
457
- #: includes/class-freemius.php20070, templates/account.php121,
458
  #: templates/add-ons.php250, templates/account/partials/addon.php:46
459
  msgctxt "trial period"
460
  msgid "Trial"
461
  msgstr "வெள்ளோட்டம்"
462
 
463
- #: includes/class-freemius.php:20075
464
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
465
  msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது."
466
 
467
- #: includes/class-freemius.php20079, includes/class-freemius.php:20138
468
  msgid "Please contact us here"
469
  msgstr "எங்களை இங்கு அணுகலாம்"
470
 
471
- #: includes/class-freemius.php:20090
472
  msgid "Your plan was successfully activated."
473
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது."
474
 
475
- #: includes/class-freemius.php:20091
476
  msgid "Your plan was successfully upgraded."
477
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது."
478
 
479
- #: includes/class-freemius.php:20108
480
  msgid "Your plan was successfully changed to %s."
481
  msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது."
482
 
483
- #: includes/class-freemius.php:20124
484
  msgid "Your license has expired. You can still continue using the free %s forever."
485
  msgstr "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் தொடரலாம். "
486
 
487
- #: includes/class-freemius.php:20126
488
  msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
  msgstr "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை மேம்படுத்துங்கள்."
490
 
491
- #: includes/class-freemius.php:20134
492
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
493
  msgstr "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை அணுகவும்."
494
 
495
- #: includes/class-freemius.php:20147
496
  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."
497
  msgstr "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்."
498
 
499
- #: includes/class-freemius.php:20173
500
  msgid "Your free trial has expired. You can still continue using all our free features."
501
  msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்."
502
 
503
- #: includes/class-freemius.php:20175
504
  msgid "Your free trial 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:20283
508
  msgid "It looks like the license could not be activated."
509
  msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது."
510
 
511
- #: includes/class-freemius.php:20325
512
  msgid "Your license was successfully activated."
513
  msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது."
514
 
515
- #: includes/class-freemius.php:20351
516
  msgid "It looks like your site currently doesn't have an active license."
517
  msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது."
518
 
519
- #: includes/class-freemius.php:20375
520
  msgid "It looks like the license deactivation failed."
521
  msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது."
522
 
523
- #: includes/class-freemius.php:20404
524
  msgid "Your %s license was successfully deactivated."
525
  msgstr "Your %s license was successfully deactivated."
526
 
527
- #: includes/class-freemius.php:20405
528
  msgid "Your license was successfully deactivated, you are back to the %s plan."
529
  msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்."
530
 
531
- #: includes/class-freemius.php:20408
532
  msgid "O.K"
533
  msgstr "O.K"
534
 
535
- #: includes/class-freemius.php:20461
536
  msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
537
  msgstr "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்."
538
 
539
- #: includes/class-freemius.php:20470
540
  msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
541
  msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது."
542
 
543
- #: includes/class-freemius.php:20512
544
  msgid "You are already running the %s in a trial mode."
545
  msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்."
546
 
547
- #: includes/class-freemius.php:20523
548
  msgid "You already utilized a trial before."
549
  msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே."
550
 
551
- #: includes/class-freemius.php:20537
552
  msgid "Plan %s do not exist, therefore, can't start a trial."
553
  msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது."
554
 
555
- #: includes/class-freemius.php:20548
556
  msgid "Plan %s does not support a trial period."
557
  msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது."
558
 
559
- #: includes/class-freemius.php:20559
560
  msgid "None of the %s's plans supports a trial period."
561
  msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை."
562
 
563
- #: includes/class-freemius.php:20609
564
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
565
  msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)"
566
 
567
- #: includes/class-freemius.php:20645
568
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
569
  msgstr ""
570
  "94%match\n"
571
  "உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்"
572
 
573
- #: includes/class-freemius.php:20664
574
  msgid "Your %s free trial was successfully cancelled."
575
  msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது."
576
 
577
- #: includes/class-freemius.php:20980
578
  msgid "Version %s was released."
579
  msgstr "%s பதிப்பு வெளியாகிவிட்டது."
580
 
581
- #: includes/class-freemius.php:20980
582
  msgid "Please download %s."
583
  msgstr "%sஐ பதிவிறக்கலாம்."
584
 
585
- #: includes/class-freemius.php:20987
586
  msgid "the latest %s version here"
587
  msgstr "%sன் அண்மைய பதிப்பு இதோ"
588
 
589
- #: includes/class-freemius.php:20992
590
  msgid "New"
591
  msgstr "புதியது"
592
 
593
- #: includes/class-freemius.php:20997
594
  msgid "Seems like you got the latest release."
595
  msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது."
596
 
597
- #: includes/class-freemius.php:20998
598
  msgid "You are all good!"
599
  msgstr "நல்லது... மகிழ்ச்சி"
600
 
601
- #: includes/class-freemius.php:21301
602
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
603
  msgstr "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்."
604
 
605
- #: includes/class-freemius.php:21441
606
  msgid "Site successfully opted in."
607
  msgstr "தளம் தெரிவு செய்யப்பட்டது."
608
 
609
- #: includes/class-freemius.php21442, includes/class-freemius.php:22299
610
  msgid "Awesome"
611
  msgstr "அடி தூள்"
612
 
613
- #: includes/class-freemius.php21458, templates/forms/optout.php:41
614
  msgid "We appreciate your help in making the %s better by letting us track some usage data."
615
  msgstr "%s மேலும் தரமானதாக்க உங்கள் பயன்பாட்டுத் தரவுகளை நாங்கள் பின்தொடர உதவுங்கள்."
616
 
617
- #: includes/class-freemius.php:21459
618
  msgid "Thank you!"
619
  msgstr "நன்றி!"
620
 
621
- #: includes/class-freemius.php:21466
622
  msgid "We will no longer be sending any usage data of %s on %s to %s."
623
  msgstr "%sன் %s மீதான பயன்பாட்டுத் தரவுகளை %sக்கு நாங்கள் அனுப்ப மாட்டோம்."
624
 
625
- #: includes/class-freemius.php:21612
626
  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."
627
  msgstr "உரிமை மாற்றம் குறித்து உறுதிப்படுத்தும் மின்னஞ்சல் %s வழியாக உங்களுக்கு வந்திருக்கும். பாதுகாப்பு காரங்களுக்காக அடுத்த 15 நிமிடங்களுக்குள் மின்னஞ்சலைத் திறந்து உறுதி செய்யவும். ஒருவேளை உள்பெட்டியில் மின்னஞ்சல் இல்லையென்றால் Spamல் பார்க்கவும்."
628
 
629
- #: includes/class-freemius.php:21618
630
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
631
  msgstr "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது."
632
 
633
- #: includes/class-freemius.php:21623
634
  msgid "%s is the new owner of the account."
635
  msgstr "கணக்கின் புதிய உரிமையாளர் %s."
636
 
637
- #: includes/class-freemius.php:21625
638
  msgctxt "as congratulations"
639
  msgid "Congrats"
640
  msgstr "வாழ்த்துக்கள்"
641
 
642
- #: includes/class-freemius.php:21661
643
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
644
  msgstr "உங்கள் மின்னஞ்சல் விவரம் மேம்படுத்தப்பட்டது. அதை உறுதிப்படுத்தும் மின்னஞ்சல் இன்னும் சில கணங்களில் தங்களுக்கு வந்துசேரும்."
645
 
646
- #: includes/class-freemius.php:21673
647
  msgid "Please provide your full name."
648
  msgstr "உங்கள் முழுப் பெயரைத் தரவும்."
649
 
650
- #: includes/class-freemius.php:21678
651
  msgid "Your name was successfully updated."
652
  msgstr "உங்கள் பெயர் ஏற்றப்பட்டது."
653
 
654
- #: includes/class-freemius.php:21739
655
  msgid "You have successfully updated your %s."
656
  msgstr "உங்கள் %s மேம்படுத்தப்பட்டது."
657
 
658
- #: includes/class-freemius.php:21879
 
 
 
 
 
 
 
 
659
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
660
  msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்."
661
 
662
- #: includes/class-freemius.php:21880
663
  msgctxt "advance notice of something that will need attention."
664
  msgid "Heads up"
665
  msgstr "Heads up"
666
 
667
- #: includes/class-freemius.php:22339
668
  msgctxt "exclamation"
669
  msgid "Hey"
670
  msgstr "Hey"
671
 
672
- #: includes/class-freemius.php:22339
673
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
674
  msgstr "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்."
675
 
676
- #: includes/class-freemius.php:22347
677
  msgid "No commitment for %s days - cancel anytime!"
678
  msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!"
679
 
680
- #: includes/class-freemius.php:22348
681
  msgid "No credit card required"
682
  msgstr "கடன் அட்டை தேவையில்லை"
683
 
684
- #: includes/class-freemius.php22355, templates/forms/trial-start.php:53
685
  msgctxt "call to action"
686
  msgid "Start free trial"
687
  msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்"
688
 
689
- #: includes/class-freemius.php:22432
690
  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!"
691
  msgstr "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!"
692
 
693
- #: includes/class-freemius.php:22441
694
  msgid "Learn more"
695
  msgstr "மேலும் அறிய"
696
 
697
- #: includes/class-freemius.php22627, templates/account.php507,
698
- #: templates/account.php657, templates/connect.php179,
699
- #: templates/connect.php455, templates/forms/license-activation.php27,
700
  #: templates/account/partials/addon.php:321
701
  msgid "Activate License"
702
  msgstr "உரிமம் செயல்படுத்த"
703
 
704
- #: includes/class-freemius.php22628, templates/account.php601,
705
- #: templates/account.php656, templates/account/partials/addon.php322,
706
  #: templates/account/partials/site.php:271
707
  msgid "Change License"
708
  msgstr "உரிமம் மாற்ற"
709
 
710
- #: includes/class-freemius.php22737, templates/account/partials/site.php:169
711
  msgid "Opt Out"
712
  msgstr "தெரிவை அகற்று"
713
 
714
- #: includes/class-freemius.php22739, includes/class-freemius.php22745,
715
  #: templates/account/partials/site.php49,
716
  #: templates/account/partials/site.php:169
717
  msgid "Opt In"
718
  msgstr "தெரிவு செய்"
719
 
720
- #: includes/class-freemius.php:22973
721
  msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
722
  msgstr "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த அதை செயல்படுத்தவும். %3$s"
723
 
724
- #: includes/class-freemius.php:22981
725
  msgid "Activate %s features"
726
  msgstr "%s வசதிகளை செயல்படுத்த"
727
 
728
- #: includes/class-freemius.php:22994
729
  msgid "Please follow these steps to complete the upgrade"
730
  msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்"
731
 
732
- #: includes/class-freemius.php:22998
733
  msgid "Download the latest %s version"
734
  msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்"
735
 
736
- #: includes/class-freemius.php:23002
737
  msgid "Upload and activate the downloaded version"
738
  msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்"
739
 
740
- #: includes/class-freemius.php:23004
741
  msgid "How to upload and activate?"
742
  msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?"
743
 
744
- #: includes/class-freemius.php:23138
745
  msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
746
  msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s"
747
 
748
- #: includes/class-freemius.php:23299
749
  msgid "Auto installation only works for opted-in users."
750
  msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்."
751
 
752
- #: includes/class-freemius.php23309, includes/class-freemius.php23342,
753
- #: includes/class-fs-plugin-updater.php1218,
754
- #: includes/class-fs-plugin-updater.php:1232
755
  msgid "Invalid module ID."
756
  msgstr "module ID தவறானது."
757
 
758
- #: includes/class-freemius.php23318, includes/class-fs-plugin-updater.php:1254
759
  msgid "Premium version already active."
760
  msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது."
761
 
762
- #: includes/class-freemius.php:23325
763
  msgid "You do not have a valid license to access the premium version."
764
  msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை."
765
 
766
- #: includes/class-freemius.php:23332
767
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
768
  msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்."
769
 
770
- #: includes/class-freemius.php23350, includes/class-fs-plugin-updater.php:1253
771
  msgid "Premium add-on version already installed."
772
  msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது."
773
 
774
- #: includes/class-freemius.php:23700
775
  msgid "View paid features"
776
  msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்"
777
 
778
- #: includes/class-freemius.php:24022
779
  msgid "Thank you so much for using %s and its add-ons!"
780
  msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!"
781
 
782
- #: includes/class-freemius.php:24023
783
  msgid "Thank you so much for using %s!"
784
  msgstr "%s பயன்படுத்துவதற்கு நன்றி!"
785
 
786
- #: includes/class-freemius.php:24029
787
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
788
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ மேம்படுத்த உதவும்."
789
 
790
- #: includes/class-freemius.php:24033
791
  msgid "Thank you so much for using our products!"
792
  msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!"
793
 
794
- #: includes/class-freemius.php:24034
795
  msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
796
  msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் உருவாக்கத்தை மேம்படுத்த உதவும்."
797
 
798
- #: includes/class-freemius.php:24053
799
  msgid "%s and its add-ons"
800
  msgstr "%sம் அதன் ஆட்-ஆன்களும்"
801
 
802
- #: includes/class-freemius.php:24062
803
  msgid "Products"
804
  msgstr "தயாரிப்புகள்"
805
 
806
- #: includes/class-freemius.php24069, templates/connect.php:280
807
  msgid "Yes"
808
  msgstr "ஆம்"
809
 
810
- #: includes/class-freemius.php24070, templates/connect.php:281
811
  msgid "send me security & feature updates, educational content and offers."
812
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும்."
813
 
814
- #: includes/class-freemius.php24071, templates/connect.php:286
815
  msgid "No"
816
  msgstr "இல்லை"
817
 
818
- #: includes/class-freemius.php24073, templates/connect.php:288
819
  msgid "do %sNOT%s send me security & feature updates, educational content and offers."
820
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும். %s செய்க, %s தேவையில்லை"
821
 
822
- #: includes/class-freemius.php:24083
823
  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 :-)"
824
  msgstr "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)"
825
 
826
- #: includes/class-freemius.php24085, templates/connect.php:295
827
  msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
828
  msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்."
829
 
830
- #: includes/class-freemius.php:24367
831
  msgid "License key is empty."
832
  msgstr "License key காலியாக உள்ளது."
833
 
@@ -860,332 +884,332 @@ msgstr "புதிய பதிப்பு"
860
  msgid "Important Upgrade Notice:"
861
  msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு"
862
 
863
- #: includes/class-fs-plugin-updater.php:1283
864
  msgid "Installing plugin: %s"
865
  msgstr "%s: பிளக்இன் நிறுவப்படுகிறது"
866
 
867
- #: includes/class-fs-plugin-updater.php:1324
868
  msgid "Unable to connect to the filesystem. Please confirm your credentials."
869
  msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்."
870
 
871
- #: includes/class-fs-plugin-updater.php:1506
872
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
873
  msgstr "பெயர் மாற்றமுடியாது. Slug உடனான folder, பிளக்இன் பேக்கில் இல்லை."
874
 
875
- #: includes/fs-plugin-info-dialog.php:535
876
  msgid "Purchase More"
877
  msgstr "மேலும் வாங்குக"
878
 
879
- #: includes/fs-plugin-info-dialog.php536,
880
  #: templates/account/partials/addon.php:385
881
  msgctxt "verb"
882
  msgid "Purchase"
883
  msgstr "வாங்குக"
884
 
885
- #: includes/fs-plugin-info-dialog.php:540
886
  msgid "Start my free %s"
887
  msgstr "என் விலையில்லா %sஐ துவக்கவும்"
888
 
889
- #: includes/fs-plugin-info-dialog.php:738
890
  msgid "Install Free Version Update Now"
891
  msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்"
892
 
893
- #: includes/fs-plugin-info-dialog.php739, templates/account.php:590
894
  msgid "Install Update Now"
895
  msgstr "மேம்படுத்தலை நிறுவலாம்"
896
 
897
- #: includes/fs-plugin-info-dialog.php:748
898
  msgid "Install Free Version Now"
899
  msgstr "விலையில்லா பதிப்பை நிறுவலாம்"
900
 
901
- #: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323,
902
  #: templates/auto-installation.php111,
903
  #: templates/account/partials/addon.php365,
904
  #: templates/account/partials/addon.php:418
905
  msgid "Install Now"
906
  msgstr "நிறுவலாம்"
907
 
908
- #: includes/fs-plugin-info-dialog.php:765
909
  msgctxt "as download latest version"
910
  msgid "Download Latest Free Version"
911
  msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க"
912
 
913
- #: includes/fs-plugin-info-dialog.php766, templates/account.php99,
914
  #: templates/add-ons.php37, templates/account/partials/addon.php:25
915
  msgctxt "as download latest version"
916
  msgid "Download Latest"
917
  msgstr "அண்மைய பதிப்பை பதிவிறக்க"
918
 
919
- #: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329,
920
  #: templates/account/partials/addon.php356,
921
  #: templates/account/partials/addon.php:412
922
  msgid "Activate this add-on"
923
  msgstr "ஆட்-ஆன் செயல்படுத்த"
924
 
925
- #: includes/fs-plugin-info-dialog.php783, templates/connect.php:452
926
  msgid "Activate Free Version"
927
  msgstr "விலையில்லா பதிப்பை செயல்படுத்த"
928
 
929
- #: includes/fs-plugin-info-dialog.php784, templates/account.php123,
930
  #: templates/add-ons.php330, templates/account/partials/addon.php:48
931
  msgid "Activate"
932
  msgstr "செயல்படுத்து"
933
 
934
- #: includes/fs-plugin-info-dialog.php:994
935
  msgctxt "Plugin installer section title"
936
  msgid "Description"
937
  msgstr "விளக்கம்"
938
 
939
- #: includes/fs-plugin-info-dialog.php:995
940
  msgctxt "Plugin installer section title"
941
  msgid "Installation"
942
  msgstr "நிறுவுதல்"
943
 
944
- #: includes/fs-plugin-info-dialog.php:996
945
  msgctxt "Plugin installer section title"
946
  msgid "FAQ"
947
  msgstr "FAQ"
948
 
949
- #: includes/fs-plugin-info-dialog.php997,
950
  #: templates/plugin-info/description.php:55
951
  msgid "Screenshots"
952
  msgstr "திரை நகல்கள்"
953
 
954
- #: includes/fs-plugin-info-dialog.php:998
955
  msgctxt "Plugin installer section title"
956
  msgid "Changelog"
957
  msgstr "Changelog"
958
 
959
- #: includes/fs-plugin-info-dialog.php:999
960
  msgctxt "Plugin installer section title"
961
  msgid "Reviews"
962
  msgstr "கருத்துரைகள்"
963
 
964
- #: includes/fs-plugin-info-dialog.php:1000
965
  msgctxt "Plugin installer section title"
966
  msgid "Other Notes"
967
  msgstr "பிற குறிப்புகள்"
968
 
969
- #: includes/fs-plugin-info-dialog.php:1015
970
  msgctxt "Plugin installer section title"
971
  msgid "Features & Pricing"
972
  msgstr "வசதிகள் & விலை"
973
 
974
- #: includes/fs-plugin-info-dialog.php:1025
975
  msgid "Plugin Install"
976
  msgstr "பிளக்இன் நிறுவுதல்"
977
 
978
- #: includes/fs-plugin-info-dialog.php:1097
979
  msgctxt "e.g. Professional Plan"
980
  msgid "%s Plan"
981
  msgstr "%s திட்டம்"
982
 
983
- #: includes/fs-plugin-info-dialog.php:1123
984
  msgctxt "e.g. the best product"
985
  msgid "Best"
986
  msgstr "சிறப்பு"
987
 
988
- #: includes/fs-plugin-info-dialog.php1129,
989
- #: includes/fs-plugin-info-dialog.php:1149
990
  msgctxt "as every month"
991
  msgid "Monthly"
992
  msgstr "மாதாமாதம்"
993
 
994
- #: includes/fs-plugin-info-dialog.php:1132
995
  msgctxt "as once a year"
996
  msgid "Annual"
997
  msgstr "ஆண்டு"
998
 
999
- #: includes/fs-plugin-info-dialog.php:1135
1000
  msgid "Lifetime"
1001
  msgstr "வாழ்நாள்"
1002
 
1003
- #: includes/fs-plugin-info-dialog.php1149,
1004
- #: includes/fs-plugin-info-dialog.php1151,
1005
- #: includes/fs-plugin-info-dialog.php:1153
1006
  msgctxt "e.g. billed monthly"
1007
  msgid "Billed %s"
1008
  msgstr "%s பில் எழுதப்பட்டது"
1009
 
1010
- #: includes/fs-plugin-info-dialog.php:1151
1011
  msgctxt "as once a year"
1012
  msgid "Annually"
1013
  msgstr "ஆண்டுக்காண்டு"
1014
 
1015
- #: includes/fs-plugin-info-dialog.php:1153
1016
  msgctxt "as once a year"
1017
  msgid "Once"
1018
  msgstr "ஒருமுறை"
1019
 
1020
- #: includes/fs-plugin-info-dialog.php:1159
1021
  msgid "Single Site License"
1022
  msgstr "ஒரு தள உரிமம்"
1023
 
1024
- #: includes/fs-plugin-info-dialog.php:1161
1025
  msgid "Unlimited Licenses"
1026
  msgstr "பல்தள உரிமம்"
1027
 
1028
- #: includes/fs-plugin-info-dialog.php:1163
1029
  msgid "Up to %s Sites"
1030
  msgstr "%s தளங்கள் வரை"
1031
 
1032
- #: includes/fs-plugin-info-dialog.php1173,
1033
  #: templates/plugin-info/features.php:82
1034
  msgctxt "as monthly period"
1035
  msgid "mo"
1036
  msgstr "மாதம்"
1037
 
1038
- #: includes/fs-plugin-info-dialog.php1180,
1039
  #: templates/plugin-info/features.php:80
1040
  msgctxt "as annual period"
1041
  msgid "year"
1042
  msgstr "வருடம்"
1043
 
1044
- #: includes/fs-plugin-info-dialog.php:1234
1045
  msgctxt "noun"
1046
  msgid "Price"
1047
  msgstr "விலை"
1048
 
1049
- #: includes/fs-plugin-info-dialog.php:1282
1050
  msgid "Save %s"
1051
  msgstr "%s சேமிக்கலாம்"
1052
 
1053
- #: includes/fs-plugin-info-dialog.php:1292
1054
  msgid "No commitment for %s - cancel anytime"
1055
  msgstr "%sக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!"
1056
 
1057
- #: includes/fs-plugin-info-dialog.php:1295
1058
  msgid "After your free %s, pay as little as %s"
1059
  msgstr "விலையில்லா %sக்குப் பிறகு, குறைந்தளவு %s செலுத்துங்கள்"
1060
 
1061
- #: includes/fs-plugin-info-dialog.php:1306
1062
  msgid "Details"
1063
  msgstr "விபரங்கள்"
1064
 
1065
- #: includes/fs-plugin-info-dialog.php1310, templates/account.php110,
1066
  #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1067
  #: templates/account/partials/addon.php:36
1068
  msgctxt "product version"
1069
  msgid "Version"
1070
  msgstr "பதிப்பு"
1071
 
1072
- #: includes/fs-plugin-info-dialog.php:1317
1073
  msgctxt "as the plugin author"
1074
  msgid "Author"
1075
  msgstr "உருவாக்கியவர்"
1076
 
1077
- #: includes/fs-plugin-info-dialog.php:1324
1078
  msgid "Last Updated"
1079
  msgstr "கடைசி மேம்படுத்தல்"
1080
 
1081
- #: includes/fs-plugin-info-dialog.php1329, templates/account.php:476
1082
  msgctxt "x-ago"
1083
  msgid "%s ago"
1084
  msgstr "%s முன்பு"
1085
 
1086
- #: includes/fs-plugin-info-dialog.php:1338
1087
  msgid "Requires WordPress Version"
1088
  msgstr "WordPress பதிப்பை வேண்டுகிறது"
1089
 
1090
- #: includes/fs-plugin-info-dialog.php:1339
1091
  msgid "%s or higher"
1092
  msgstr "%s அல்லது அதிகமாக"
1093
 
1094
- #: includes/fs-plugin-info-dialog.php:1346
1095
  msgid "Compatible up to"
1096
  msgstr "ஒத்திசைவு உயர்நிலை"
1097
 
1098
- #: includes/fs-plugin-info-dialog.php:1354
1099
  msgid "Downloaded"
1100
  msgstr "பதிவிறக்கப்பட்டது"
1101
 
1102
- #: includes/fs-plugin-info-dialog.php:1358
1103
  msgid "%s time"
1104
  msgstr "%s முறை"
1105
 
1106
- #: includes/fs-plugin-info-dialog.php:1360
1107
  msgid "%s times"
1108
  msgstr "%s முறைகள்"
1109
 
1110
- #: includes/fs-plugin-info-dialog.php:1370
1111
  msgid "WordPress.org Plugin Page"
1112
  msgstr "WordPress.org பிளக்இன் பக்கம்"
1113
 
1114
- #: includes/fs-plugin-info-dialog.php:1378
1115
  msgid "Plugin Homepage"
1116
  msgstr "பிளக்இன் முகப்புப்பக்கம்"
1117
 
1118
- #: includes/fs-plugin-info-dialog.php1386,
1119
- #: includes/fs-plugin-info-dialog.php:1468
1120
  msgid "Donate to this plugin"
1121
  msgstr "இந்த பிளக்இன்னுக்கு நன்கொடை தாருங்கள்"
1122
 
1123
- #: includes/fs-plugin-info-dialog.php:1393
1124
  msgid "Average Rating"
1125
  msgstr "உத்தேச மதிப்பீட்டெண்"
1126
 
1127
- #: includes/fs-plugin-info-dialog.php:1400
1128
  msgid "based on %s"
1129
  msgstr "%s அடிப்படையிலானது"
1130
 
1131
- #: includes/fs-plugin-info-dialog.php:1404
1132
  msgid "%s rating"
1133
  msgstr "%s மதிப்பீட்டெண்"
1134
 
1135
- #: includes/fs-plugin-info-dialog.php:1406
1136
  msgid "%s ratings"
1137
  msgstr "%s மதிப்பீட்டெண்கள்"
1138
 
1139
- #: includes/fs-plugin-info-dialog.php:1421
1140
  msgid "%s star"
1141
  msgstr "%s நட்சத்திரம்"
1142
 
1143
- #: includes/fs-plugin-info-dialog.php:1423
1144
  msgid "%s stars"
1145
  msgstr "%s நட்சத்திரங்கள்"
1146
 
1147
- #: includes/fs-plugin-info-dialog.php:1434
1148
  msgid "Click to see reviews that provided a rating of %s"
1149
  msgstr "%s குறித்த மதிப்பீடு & விமர்சனங்களை கிளிக் செய்து காண்க"
1150
 
1151
- #: includes/fs-plugin-info-dialog.php:1447
1152
  msgid "Contributors"
1153
  msgstr "பங்கெடுத்தோர்"
1154
 
1155
- #: includes/fs-plugin-info-dialog.php1476,
1156
- #: includes/fs-plugin-info-dialog.php:1478
1157
  msgid "Warning"
1158
  msgstr "எச்சரிக்கை"
1159
 
1160
- #: includes/fs-plugin-info-dialog.php:1476
1161
  msgid "This plugin has not been tested with your current version of WordPress."
1162
  msgstr "இந்த பிளக்இன் உங்கள் தற்போதைய WordPress பதிப்புடன் சோதிக்கப்படவில்லை."
1163
 
1164
- #: includes/fs-plugin-info-dialog.php:1478
1165
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1166
  msgstr "இந்த பிளக்இன் உங்கள் WordPress பதிப்புடன் ஒத்திசைவானது என்று குறிக்கப்படவில்லை."
1167
 
1168
- #: includes/fs-plugin-info-dialog.php:1497
1169
  msgid "Paid add-on must be deployed to Freemius."
1170
  msgstr "விலையுள்ள ஆட்ஆன் Freemiusல் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்."
1171
 
1172
- #: includes/fs-plugin-info-dialog.php:1498
1173
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1174
  msgstr "ஆட்ஆன் WordPress.org அல்லது Freemius ஏதாவது ஒன்றில் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்."
1175
 
1176
- #: includes/fs-plugin-info-dialog.php:1519
1177
  msgid "Newer Version (%s) Installed"
1178
  msgstr "புதிய பதிப்பு (%s) நிறுவப்பட்டது"
1179
 
1180
- #: includes/fs-plugin-info-dialog.php:1520
1181
  msgid "Newer Free Version (%s) Installed"
1182
  msgstr "புதிய விலையில்லா பதிப்பு (%s) நிறுவப்பட்டது"
1183
 
1184
- #: includes/fs-plugin-info-dialog.php:1527
1185
  msgid "Latest Version Installed"
1186
  msgstr "சமீபத்திய பதிப்பு நிறுவப்பட்டது"
1187
 
1188
- #: includes/fs-plugin-info-dialog.php:1528
1189
  msgid "Latest Free Version Installed"
1190
  msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது"
1191
 
@@ -1292,223 +1316,231 @@ msgstr "திட்டம்"
1292
  msgid "Bundle Plan"
1293
  msgstr "கூட்டுத்திட்டம்"
1294
 
1295
- #: templates/account.php:199
1296
  msgid "Free Trial"
1297
  msgstr "விலையில்லா வெள்ளோட்டம்"
1298
 
1299
- #: templates/account.php:210
1300
  msgid "Account Details"
1301
  msgstr "கணக்கு விபரங்கள்"
1302
 
1303
- #: templates/account.php217, templates/forms/data-debug-mode.php:33
1304
  msgid "Start Debug"
1305
  msgstr "Start Debug"
1306
 
1307
- #: templates/account.php:219
1308
  msgid "Stop Debug"
1309
  msgstr "Stop Debug"
1310
 
1311
- #: templates/account.php:226
1312
  msgid "Billing & Invoices"
1313
  msgstr "பில் & இன்வாய்ஸ்"
1314
 
1315
- #: templates/account.php:237
1316
  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?"
1317
  msgstr "கணக்கை அழிப்பதானது உங்கள் %s உரிமத்தை உடனே செயல்நிறுத்தும் ஆனாலும் பிற தளங்களில் பயன்படுத்தலாம். இனிவரும் பணம் செலுத்துதல்களை நிறுத்த வேண்டுமானால் முதலில் கணக்கை தரமிறக்கி \"ரத்து செய்\" பட்டனை கிளிக் செய்யவும். கணக்கை அழிக்க விருப்பமா?"
1318
 
1319
- #: templates/account.php:239
1320
  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?"
1321
  msgstr "கணக்கை அழிப்பது தற்காலிகமானல்ல. இந்த %s இனி உங்களுக்குத் தேவையில்லை என்றால் மட்டும் அழிக்கவும். கணக்கை அழிக்க விருப்பமா?"
1322
 
1323
- #: templates/account.php:242
1324
  msgid "Delete Account"
1325
  msgstr "கணக்கை அழிக்க"
1326
 
1327
- #: templates/account.php254, templates/account/partials/addon.php231,
1328
  #: templates/account/partials/deactivate-license-button.php:35
1329
  msgid "Deactivate License"
1330
  msgstr "உரிமத்தை செயல்நிறுத்த"
1331
 
1332
- #: templates/account.php277, templates/forms/subscription-cancellation.php:125
1333
  msgid "Are you sure you want to proceed?"
1334
  msgstr "மேலே தொடர விருப்பமா?"
1335
 
1336
- #: templates/account.php277, templates/account/partials/addon.php:255
1337
  msgid "Cancel Subscription"
1338
  msgstr "சந்தாவை ரத்து செய்"
1339
 
1340
- #: templates/account.php306, templates/account/partials/addon.php:340
1341
  msgctxt "as synchronize"
1342
  msgid "Sync"
1343
  msgstr "Sync"
1344
 
1345
- #: templates/account.php321, templates/debug.php:505
1346
  msgid "Name"
1347
  msgstr "பெயர்"
1348
 
1349
- #: templates/account.php327, templates/debug.php:506
1350
  msgid "Email"
1351
  msgstr "மின்னஞ்சல்"
1352
 
1353
- #: templates/account.php334, templates/debug.php369, templates/debug.php:555
1354
  msgid "User ID"
1355
  msgstr "உபயோகிப்பாளர் ஐடி"
1356
 
1357
- #: templates/account.php352, templates/account.php670,
1358
- #: templates/account.php715, templates/debug.php236, templates/debug.php363,
1359
  #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1360
  #: templates/debug.php632, templates/account/payments.php35,
1361
  #: templates/debug/logger.php:21
1362
  msgid "ID"
1363
  msgstr "ஐடி"
1364
 
1365
- #: templates/account.php:359
1366
  msgid "Site ID"
1367
  msgstr "இணையதள ஐடி"
1368
 
1369
- #: templates/account.php:362
1370
  msgid "No ID"
1371
  msgstr "ஐடி இல்லை"
1372
 
1373
- #: templates/account.php367, templates/debug.php243, templates/debug.php372,
1374
  #: templates/debug.php456, templates/debug.php508,
1375
  #: templates/account/partials/site.php:227
1376
  msgid "Public Key"
1377
  msgstr "Public Key"
1378
 
1379
- #: templates/account.php373, templates/debug.php373, templates/debug.php457,
1380
  #: templates/debug.php509, templates/account/partials/site.php:239
1381
  msgid "Secret Key"
1382
  msgstr "Secret Key"
1383
 
1384
- #: templates/account.php:376
1385
  msgctxt "as secret encryption key missing"
1386
  msgid "No Secret"
1387
  msgstr "No Secret"
1388
 
1389
- #: templates/account.php403, templates/account/partials/site.php120,
1390
  #: templates/account/partials/site.php:122
1391
  msgid "Trial"
1392
  msgstr "வெள்ளோட்டம்"
1393
 
1394
- #: templates/account.php430, templates/debug.php561,
1395
  #: templates/account/partials/site.php:260
1396
  msgid "License Key"
1397
  msgstr "License Key"
1398
 
1399
- #: templates/account.php:461
1400
  msgid "Join the Beta program"
1401
  msgstr "பீட்டா பதிப்பு சோதனையில் சேரவும்"
1402
 
1403
- #: templates/account.php:467
1404
  msgid "not verified"
1405
  msgstr "உறுதிப்படுத்தப்படவில்லை"
1406
 
1407
- #: templates/account.php476, templates/account/partials/addon.php:190
1408
  msgid "Expired"
1409
  msgstr "காலாவதியானது"
1410
 
1411
- #: templates/account.php:536
1412
  msgid "Premium version"
1413
  msgstr "விலையுள்ள பதிப்பு"
1414
 
1415
- #: templates/account.php:538
1416
  msgid "Free version"
1417
  msgstr "விலையில்லா பதிப்பு"
1418
 
1419
- #: templates/account.php:550
1420
  msgid "Verify Email"
1421
  msgstr "மின்னஞ்சல் சரிபார்த்திடுங்கள்"
1422
 
1423
- #: templates/account.php:564
1424
  msgid "Download %s Version"
1425
  msgstr "%s பதிப்பை பதிவிறக்கலாம்"
1426
 
1427
- #: templates/account.php:580
1428
  msgid "Download Paid Version"
1429
  msgstr "Download Paid Version"
1430
 
1431
- #: templates/account.php598, templates/account.php853,
1432
  #: templates/account/partials/site.php248,
1433
  #: templates/account/partials/site.php:270
1434
  msgctxt "verb"
1435
  msgid "Show"
1436
  msgstr "காட்டு"
1437
 
1438
- #: templates/account.php:613
1439
  msgid "What is your %s?"
1440
  msgstr "உங்கள் %s என்ன?"
1441
 
1442
- #: templates/account.php621, templates/account/billing.php:21
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
  "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
  "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
  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
 
899
+ #: includes/fs-plugin-info-dialog.php:541
900
  msgid "Purchase More"
901
  msgstr "மேலும் வாங்குக"
902
 
903
+ #: includes/fs-plugin-info-dialog.php542,
904
  #: templates/account/partials/addon.php:385
905
  msgctxt "verb"
906
  msgid "Purchase"
907
  msgstr "வாங்குக"
908
 
909
+ #: includes/fs-plugin-info-dialog.php:546
910
  msgid "Start my free %s"
911
  msgstr "என் விலையில்லா %sஐ துவக்கவும்"
912
 
913
+ #: includes/fs-plugin-info-dialog.php:744
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
 
921
+ #: includes/fs-plugin-info-dialog.php:754
922
  msgid "Install Free Version Now"
923
  msgstr "விலையில்லா பதிப்பை நிறுவலாம்"
924
 
925
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
926
  #: templates/auto-installation.php111,
927
  #: templates/account/partials/addon.php365,
928
  #: templates/account/partials/addon.php:418
929
  msgid "Install Now"
930
  msgstr "நிறுவலாம்"
931
 
932
+ #: includes/fs-plugin-info-dialog.php:771
933
  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"
941
  msgstr "அண்மைய பதிப்பை பதிவிறக்க"
942
 
943
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
944
  #: templates/account/partials/addon.php356,
945
  #: templates/account/partials/addon.php:412
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 "செயல்படுத்து"
957
 
958
+ #: includes/fs-plugin-info-dialog.php:1002
959
  msgctxt "Plugin installer section title"
960
  msgid "Description"
961
  msgstr "விளக்கம்"
962
 
963
+ #: includes/fs-plugin-info-dialog.php:1003
964
  msgctxt "Plugin installer section title"
965
  msgid "Installation"
966
  msgstr "நிறுவுதல்"
967
 
968
+ #: includes/fs-plugin-info-dialog.php:1004
969
  msgctxt "Plugin installer section title"
970
  msgid "FAQ"
971
  msgstr "FAQ"
972
 
973
+ #: includes/fs-plugin-info-dialog.php1005,
974
  #: templates/plugin-info/description.php:55
975
  msgid "Screenshots"
976
  msgstr "திரை நகல்கள்"
977
 
978
+ #: includes/fs-plugin-info-dialog.php:1006
979
  msgctxt "Plugin installer section title"
980
  msgid "Changelog"
981
  msgstr "Changelog"
982
 
983
+ #: includes/fs-plugin-info-dialog.php:1007
984
  msgctxt "Plugin installer section title"
985
  msgid "Reviews"
986
  msgstr "கருத்துரைகள்"
987
 
988
+ #: includes/fs-plugin-info-dialog.php:1008
989
  msgctxt "Plugin installer section title"
990
  msgid "Other Notes"
991
  msgstr "பிற குறிப்புகள்"
992
 
993
+ #: includes/fs-plugin-info-dialog.php:1023
994
  msgctxt "Plugin installer section title"
995
  msgid "Features & Pricing"
996
  msgstr "வசதிகள் & விலை"
997
 
998
+ #: includes/fs-plugin-info-dialog.php:1033
999
  msgid "Plugin Install"
1000
  msgstr "பிளக்இன் நிறுவுதல்"
1001
 
1002
+ #: includes/fs-plugin-info-dialog.php:1105
1003
  msgctxt "e.g. Professional Plan"
1004
  msgid "%s Plan"
1005
  msgstr "%s திட்டம்"
1006
 
1007
+ #: includes/fs-plugin-info-dialog.php:1131
1008
  msgctxt "e.g. the best product"
1009
  msgid "Best"
1010
  msgstr "சிறப்பு"
1011
 
1012
+ #: includes/fs-plugin-info-dialog.php1137,
1013
+ #: includes/fs-plugin-info-dialog.php:1157
1014
  msgctxt "as every month"
1015
  msgid "Monthly"
1016
  msgstr "மாதாமாதம்"
1017
 
1018
+ #: includes/fs-plugin-info-dialog.php:1140
1019
  msgctxt "as once a year"
1020
  msgid "Annual"
1021
  msgstr "ஆண்டு"
1022
 
1023
+ #: includes/fs-plugin-info-dialog.php:1143
1024
  msgid "Lifetime"
1025
  msgstr "வாழ்நாள்"
1026
 
1027
+ #: includes/fs-plugin-info-dialog.php1157,
1028
+ #: includes/fs-plugin-info-dialog.php1159,
1029
+ #: includes/fs-plugin-info-dialog.php:1161
1030
  msgctxt "e.g. billed monthly"
1031
  msgid "Billed %s"
1032
  msgstr "%s பில் எழுதப்பட்டது"
1033
 
1034
+ #: includes/fs-plugin-info-dialog.php:1159
1035
  msgctxt "as once a year"
1036
  msgid "Annually"
1037
  msgstr "ஆண்டுக்காண்டு"
1038
 
1039
+ #: includes/fs-plugin-info-dialog.php:1161
1040
  msgctxt "as once a year"
1041
  msgid "Once"
1042
  msgstr "ஒருமுறை"
1043
 
1044
+ #: includes/fs-plugin-info-dialog.php:1167
1045
  msgid "Single Site License"
1046
  msgstr "ஒரு தள உரிமம்"
1047
 
1048
+ #: includes/fs-plugin-info-dialog.php:1169
1049
  msgid "Unlimited Licenses"
1050
  msgstr "பல்தள உரிமம்"
1051
 
1052
+ #: includes/fs-plugin-info-dialog.php:1171
1053
  msgid "Up to %s Sites"
1054
  msgstr "%s தளங்கள் வரை"
1055
 
1056
+ #: includes/fs-plugin-info-dialog.php1181,
1057
  #: templates/plugin-info/features.php:82
1058
  msgctxt "as monthly period"
1059
  msgid "mo"
1060
  msgstr "மாதம்"
1061
 
1062
+ #: includes/fs-plugin-info-dialog.php1188,
1063
  #: templates/plugin-info/features.php:80
1064
  msgctxt "as annual period"
1065
  msgid "year"
1066
  msgstr "வருடம்"
1067
 
1068
+ #: includes/fs-plugin-info-dialog.php:1242
1069
  msgctxt "noun"
1070
  msgid "Price"
1071
  msgstr "விலை"
1072
 
1073
+ #: includes/fs-plugin-info-dialog.php:1290
1074
  msgid "Save %s"
1075
  msgstr "%s சேமிக்கலாம்"
1076
 
1077
+ #: includes/fs-plugin-info-dialog.php:1300
1078
  msgid "No commitment for %s - cancel anytime"
1079
  msgstr "%sக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!"
1080
 
1081
+ #: includes/fs-plugin-info-dialog.php:1303
1082
  msgid "After your free %s, pay as little as %s"
1083
  msgstr "விலையில்லா %sக்குப் பிறகு, குறைந்தளவு %s செலுத்துங்கள்"
1084
 
1085
+ #: includes/fs-plugin-info-dialog.php:1314
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"
1093
  msgid "Version"
1094
  msgstr "பதிப்பு"
1095
 
1096
+ #: includes/fs-plugin-info-dialog.php:1325
1097
  msgctxt "as the plugin author"
1098
  msgid "Author"
1099
  msgstr "உருவாக்கியவர்"
1100
 
1101
+ #: includes/fs-plugin-info-dialog.php:1332
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 முன்பு"
1109
 
1110
+ #: includes/fs-plugin-info-dialog.php:1346
1111
  msgid "Requires WordPress Version"
1112
  msgstr "WordPress பதிப்பை வேண்டுகிறது"
1113
 
1114
+ #: includes/fs-plugin-info-dialog.php:1347
1115
  msgid "%s or higher"
1116
  msgstr "%s அல்லது அதிகமாக"
1117
 
1118
+ #: includes/fs-plugin-info-dialog.php:1354
1119
  msgid "Compatible up to"
1120
  msgstr "ஒத்திசைவு உயர்நிலை"
1121
 
1122
+ #: includes/fs-plugin-info-dialog.php:1362
1123
  msgid "Downloaded"
1124
  msgstr "பதிவிறக்கப்பட்டது"
1125
 
1126
+ #: includes/fs-plugin-info-dialog.php:1366
1127
  msgid "%s time"
1128
  msgstr "%s முறை"
1129
 
1130
+ #: includes/fs-plugin-info-dialog.php:1368
1131
  msgid "%s times"
1132
  msgstr "%s முறைகள்"
1133
 
1134
+ #: includes/fs-plugin-info-dialog.php:1379
1135
  msgid "WordPress.org Plugin Page"
1136
  msgstr "WordPress.org பிளக்இன் பக்கம்"
1137
 
1138
+ #: includes/fs-plugin-info-dialog.php:1388
1139
  msgid "Plugin Homepage"
1140
  msgstr "பிளக்இன் முகப்புப்பக்கம்"
1141
 
1142
+ #: includes/fs-plugin-info-dialog.php1397,
1143
+ #: includes/fs-plugin-info-dialog.php:1481
1144
  msgid "Donate to this plugin"
1145
  msgstr "இந்த பிளக்இன்னுக்கு நன்கொடை தாருங்கள்"
1146
 
1147
+ #: includes/fs-plugin-info-dialog.php:1404
1148
  msgid "Average Rating"
1149
  msgstr "உத்தேச மதிப்பீட்டெண்"
1150
 
1151
+ #: includes/fs-plugin-info-dialog.php:1411
1152
  msgid "based on %s"
1153
  msgstr "%s அடிப்படையிலானது"
1154
 
1155
+ #: includes/fs-plugin-info-dialog.php:1415
1156
  msgid "%s rating"
1157
  msgstr "%s மதிப்பீட்டெண்"
1158
 
1159
+ #: includes/fs-plugin-info-dialog.php:1417
1160
  msgid "%s ratings"
1161
  msgstr "%s மதிப்பீட்டெண்கள்"
1162
 
1163
+ #: includes/fs-plugin-info-dialog.php:1432
1164
  msgid "%s star"
1165
  msgstr "%s நட்சத்திரம்"
1166
 
1167
+ #: includes/fs-plugin-info-dialog.php:1434
1168
  msgid "%s stars"
1169
  msgstr "%s நட்சத்திரங்கள்"
1170
 
1171
+ #: includes/fs-plugin-info-dialog.php:1446
1172
  msgid "Click to see reviews that provided a rating of %s"
1173
  msgstr "%s குறித்த மதிப்பீடு & விமர்சனங்களை கிளிக் செய்து காண்க"
1174
 
1175
+ #: includes/fs-plugin-info-dialog.php:1459
1176
  msgid "Contributors"
1177
  msgstr "பங்கெடுத்தோர்"
1178
 
1179
+ #: includes/fs-plugin-info-dialog.php1489,
1180
+ #: includes/fs-plugin-info-dialog.php:1491
1181
  msgid "Warning"
1182
  msgstr "எச்சரிக்கை"
1183
 
1184
+ #: includes/fs-plugin-info-dialog.php:1489
1185
  msgid "This plugin has not been tested with your current version of WordPress."
1186
  msgstr "இந்த பிளக்இன் உங்கள் தற்போதைய WordPress பதிப்புடன் சோதிக்கப்படவில்லை."
1187
 
1188
+ #: includes/fs-plugin-info-dialog.php:1491
1189
  msgid "This plugin has not been marked as compatible with your version of WordPress."
1190
  msgstr "இந்த பிளக்இன் உங்கள் WordPress பதிப்புடன் ஒத்திசைவானது என்று குறிக்கப்படவில்லை."
1191
 
1192
+ #: includes/fs-plugin-info-dialog.php:1510
1193
  msgid "Paid add-on must be deployed to Freemius."
1194
  msgstr "விலையுள்ள ஆட்ஆன் Freemiusல் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்."
1195
 
1196
+ #: includes/fs-plugin-info-dialog.php:1511
1197
  msgid "Add-on must be deployed to WordPress.org or Freemius."
1198
  msgstr "ஆட்ஆன் WordPress.org அல்லது Freemius ஏதாவது ஒன்றில் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்."
1199
 
1200
+ #: includes/fs-plugin-info-dialog.php:1532
1201
  msgid "Newer Version (%s) Installed"
1202
  msgstr "புதிய பதிப்பு (%s) நிறுவப்பட்டது"
1203
 
1204
+ #: includes/fs-plugin-info-dialog.php:1533
1205
  msgid "Newer Free Version (%s) Installed"
1206
  msgstr "புதிய விலையில்லா பதிப்பு (%s) நிறுவப்பட்டது"
1207
 
1208
+ #: includes/fs-plugin-info-dialog.php:1540
1209
  msgid "Latest Version Installed"
1210
  msgstr "சமீபத்திய பதிப்பு நிறுவப்பட்டது"
1211
 
1212
+ #: includes/fs-plugin-info-dialog.php:1541
1213
  msgid "Latest Free Version Installed"
1214
  msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது"
1215
 
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/